:root {
  --bg: #0d171b;
  --bg2: #14242a;
  --card: rgba(255, 255, 255, 0.055);
  --gold: #d7b36a;
  --gold2: #f2d89a;
  --text: #f3efe6;
  --muted: #b8c0bd;
  --line: rgba(215, 179, 106, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 15%, rgba(215, 179, 106, 0.13), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg2));
  color: var(--text);
}

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

.card {
  width: min(560px, 100%);
  padding: 54px 36px 42px;
  text-align: center;
  border: 1px solid rgba(215, 179, 106, 0.22);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.mark {
  width: 88px;
  height: 58px;
  margin: 0 auto 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  position: relative;
  box-shadow: 0 12px 38px rgba(215, 179, 106, 0.22);
}

.mark::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 58px;
  width: 24px;
  height: 10px;
  border-radius: 8px 8px 0 0;
  background: #71999a;
}

.lens {
  position: absolute;
  inset: 13px 28px;
  border-radius: 50%;
  background: #0d171b;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.03em;
}

.subtitle {
  margin: 14px 0 0;
  font-size: 1.25rem;
  color: var(--muted);
}

.line {
  width: 130px;
  height: 1px;
  margin: 30px auto;
  background: var(--line);
}

.text {
  margin: 0;
  color: #d9dfdc;
  font-size: 1.08rem;
  line-height: 1.9;
}

.status {
  margin: 34px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(215, 179, 106, 0.22);
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.92rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #70e08a;
  box-shadow: 0 0 18px #70e08a;
}

.version {
  margin: 22px 0 0;
  color: rgba(243, 239, 230, 0.42);
  font-size: 0.82rem;
}
