:root {
  color-scheme: dark;
  --background: #08090c;
  --surface: #11141a;
  --surface-soft: #171b23;
  --border: #2a303b;
  --text: #f4f4ef;
  --muted: #aeb5c0;
  --quiet: #7f8793;
  --accent: #e1f06f;
  --accent-soft: rgba(225, 240, 111, 0.11);
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    linear-gradient(135deg, rgba(225, 240, 111, 0.07), transparent 34%),
    linear-gradient(180deg, #08090c 0%, #10131a 100%);
}

a {
  color: inherit;
  text-decoration-color: rgba(225, 240, 111, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

.site-shell {
  width: min(100% - 2rem, 860px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.verification {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(1.35rem, 4vw, 3rem);
  background: rgba(17, 20, 26, 0.92);
  box-shadow: 0 24px 80px var(--shadow);
}

.kicker,
.label,
h1,
h2,
p {
  margin-top: 0;
}

.kicker {
  margin-bottom: 2.2rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-block {
  padding-bottom: clamp(1.8rem, 5vw, 3rem);
  border-bottom: 1px solid var(--border);
}

.label,
h2 {
  margin-bottom: 0.45rem;
  color: var(--quiet);
  font-size: 0.84rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 10vw, 6.4rem);
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: 0;
}

.info-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: clamp(1.8rem, 5vw, 3rem);
}

.info-item {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
}

.primary-link {
  display: inline-block;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(1rem, 2.3vw, 1.18rem);
  font-weight: 680;
  overflow-wrap: anywhere;
}

.statement {
  margin-top: 1.6rem;
  padding: 1.1rem;
  border: 1px solid rgba(225, 240, 111, 0.28);
  border-radius: 8px;
  background: var(--accent-soft);
}

.statement p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.12rem);
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 1rem, 860px);
    align-items: start;
    padding-top: 1rem;
  }

  .verification {
    padding: 1.15rem;
  }

  .kicker {
    margin-bottom: 1.5rem;
  }
}
