:root {
  color-scheme: dark;
  --bg: #11110f;
  --panel: #1d1c18;
  --panel-highlight: #26241e;
  --text: #f3f0e7;
  --dim: #aaa69b;
  --accent: #f5c518;
  --accent-soft: rgba(245, 197, 24, 0.12);
  --border: rgba(245, 197, 24, 0.24);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 197, 24, 0.09), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  padding: 32px 18px;
}

main {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
}

.notice {
  width: min(100%, 680px);
  background: linear-gradient(145deg, var(--panel-highlight), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  padding: clamp(28px, 7vw, 56px);
}

.status-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 6px 11px;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.12);
}

.eyebrow {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

h1 {
  max-width: 600px;
  font-size: clamp(34px, 7vw, 54px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.lede {
  max-width: 580px;
  color: var(--dim);
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.55;
  margin-top: 24px;
}

.next-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 36px 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.16);
  padding: 18px;
}

.next-step-icon {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1.3;
}

.next-step h2 {
  font-size: 15px;
  margin-bottom: 3px;
}

.next-step p {
  color: var(--dim);
  font-size: 14px;
}

code {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.9em;
  padding: 2px 5px;
}

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #17160f;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 18px;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.primary:hover {
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.16);
  transform: translateY(-1px);
}

.primary:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 4px;
}

.thanks {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dim);
  font-size: 13px;
  margin-top: 40px;
  padding-top: 20px;
}

@media (max-width: 520px) {
  body {
    padding: 14px;
  }

  main {
    min-height: calc(100vh - 28px);
  }

  .notice {
    padding: 28px 22px;
  }

  .status-badge {
    margin-bottom: 34px;
  }

  .next-step {
    gap: 12px;
    padding: 15px;
  }

  .primary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary {
    transition: none;
  }
}
