@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --navy-950: #02060d;
  --navy-900: #040b16;
  --navy-800: #08162a;
  --navy-850: #0a1c33;
  --navy-700: #0c2340;
  --navy-600: #17345f;
  --slate-400: #91a3c9;
  --slate-300: #aebfdd;
  --slate-200: #cbd7ef;
  --slate-100: #e7ecfb;
  --slate-50: #f4f7ff;
  --gold-500: #f5c453;
  --emerald-400: #4ff3b5;
  --sky-400: #89bbff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 32px 65px -40px rgba(12, 20, 45, 0.8);
  --shadow-strong: 0 38px 90px -45px rgba(5, 9, 25, 0.92);
  --font-body: 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  --font-display: 'Fraunces', 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --surface-1: rgba(8, 18, 40, 0.75);
  --surface-2: rgba(10, 24, 54, 0.86);
  --border-subtle: rgba(151, 176, 230, 0.16);
  --border-strong: rgba(151, 176, 230, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(130% 120% at 16% 8%, rgba(247, 211, 114, 0.2), transparent 58%),
    radial-gradient(120% 120% at 88% 12%, rgba(79, 150, 255, 0.18), transparent 60%),
    radial-gradient(140% 120% at 50% 95%, rgba(12, 28, 60, 0.65), transparent 68%),
    linear-gradient(150deg, var(--navy-950), var(--navy-700));
  color: var(--slate-200);
  line-height: 1.6;
  min-height: 100vh;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(45% 35% at 12% 18%, rgba(79, 243, 181, 0.08), transparent 65%),
    radial-gradient(40% 30% at 88% 0%, rgba(247, 211, 114, 0.15), transparent 65%),
    radial-gradient(40% 35% at 85% 85%, rgba(137, 187, 255, 0.12), transparent 65%),
    repeating-linear-gradient(120deg, rgba(148, 178, 255, 0.08) 0, rgba(148, 178, 255, 0.08) 1px, transparent 1px, transparent 26px);
  opacity: 0.35;
}

body::after {
  inset: -15%;
  background: radial-gradient(60% 50% at 50% 50%, rgba(137, 187, 255, 0.12), transparent 70%);
  filter: blur(18px);
  opacity: 0.4;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
.site-header__title {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: min(1100px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-header {
  padding: 2.5rem 0 1.5rem;
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-header__brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-header__brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.site-header__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--slate-400);
  display: block;
}

.site-header__title {
  font-size: 1.6rem;
  margin-top: 0.2rem;
  display: block;
}

.site-header__note {
  margin-top: 1rem;
  color: var(--slate-300);
  max-width: 580px;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.site-header__nav a {
  color: var(--slate-200);
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(151, 176, 230, 0.2);
  background: rgba(8, 16, 32, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--slate-50);
  border-color: rgba(247, 211, 114, 0.6);
  transform: translateY(-1px);
}

.hero {
  padding: 1rem 0 2rem;
}

.hero__content {
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.verify-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  padding: 2rem;
  box-shadow: var(--shadow-strong);
}

.verify-form {
  display: grid;
  gap: 1rem;
}

.verify-form label {
  font-weight: 600;
}

.verify-form input {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(6, 14, 32, 0.7);
  color: var(--slate-100);
  font-size: 1rem;
}

.verify-form input:focus {
  outline: 2px solid rgba(245, 196, 83, 0.6);
  outline-offset: 2px;
}

.verify-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:active {
  transform: translateY(1px);
}

.button--solid {
  background: linear-gradient(120deg, #f7d372, #f5c453 45%, #f1b63a);
  color: #1b1b1b;
  box-shadow: 0 18px 36px -28px rgba(247, 211, 114, 0.8);
}

.button--outline {
  background: transparent;
  border-color: rgba(247, 211, 114, 0.5);
  color: var(--slate-50);
}

.button--ghost {
  background: rgba(9, 18, 36, 0.6);
  border-color: rgba(151, 176, 230, 0.2);
  color: var(--slate-100);
}

.status {
  margin-top: 1.5rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
}

.status--hidden {
  display: none;
}

.status--success {
  background: rgba(79, 243, 181, 0.15);
  border-color: rgba(79, 243, 181, 0.4);
  color: #c8ffe8;
}

.status--error {
  background: rgba(255, 94, 94, 0.15);
  border-color: rgba(255, 94, 94, 0.45);
  color: #ffd7d7;
}

.status--info {
  background: rgba(137, 187, 255, 0.15);
  border-color: rgba(137, 187, 255, 0.45);
  color: #d7e8ff;
}

.result-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(8, 18, 40, 0.7);
}

.result-card--hidden {
  display: none;
}

.result-card__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.result-card__badge {
  background: rgba(79, 243, 181, 0.18);
  color: #b9ffe2;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.result-card__label {
  display: block;
  color: var(--slate-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.result-card__value {
  display: block;
  font-weight: 600;
  margin-top: 0.3rem;
}

.support-card {
  margin-top: 2rem;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(8, 18, 40, 0.5);
}

.support-card__links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.support-card__links a {
  color: var(--gold-400);
  text-decoration: none;
  font-weight: 600;
}

.support-card__links a:hover,
.support-card__links a:focus-visible {
  color: #fff;
}

.site-footer {
  padding: 2.5rem 0 2.8rem;
  color: var(--slate-400);
  font-size: 0.9rem;
}

.site-footer .shell {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

@media (max-width: 720px) {
  .shell {
    width: min(1100px, calc(100% - 1.6rem));
  }

  .verify-card {
    padding: 1.6rem;
  }

  .site-header__brand {
    align-items: flex-start;
  }
}
