*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #050608;
  --bg-elevated: #0c0f14;
  --navy: #2a3b4c;
  --text: #e8eef5;
  --muted: #8fa3b8;
  --accent: #64b5f6;
  --accent-soft: rgba(100, 181, 246, 0.12);
  --bar-1: #4a90e2;
  --bar-2: #64b5f6;
  --bar-3: #90caf9;
  --bar-4: #bbdefb;
  --radius: 14px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(74, 144, 226, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(100, 181, 246, 0.06), transparent 45%),
    radial-gradient(ellipse 50% 35% at 0% 80%, rgba(144, 202, 249, 0.05), transparent 50%),
    var(--bg);
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.25rem, 5vw, 2rem) 2.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 2rem;
}

.brand {
  display: flex;
  justify-content: center;
}

.logo {
  width: min(280px, 85vw);
  height: auto;
  display: block;
}

.hero {
  text-align: center;
}

.h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tagline {
  margin: 0 0 1.25rem;
  font-size: clamp(1.125rem, 3vw, 1.35rem);
  font-weight: 500;
  color: var(--accent);
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.trust {
  padding: 1.35rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(144, 202, 249, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
}

.trust p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.trust p + p {
  margin-top: 0.85rem;
}

.disclaimer {
  font-size: 0.875rem !important;
  color: var(--muted) !important;
  opacity: 0.92;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(144, 202, 249, 0.1);
}

.footer {
  margin-top: auto;
  padding-top: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-name {
  margin: 0 0 0.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

.copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
