:root {
  --bg-1: #0e1b2e;
  --bg-2: #132844;
  --bg-3: #1b3b5f;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.22);
  --text-main: #f4f7fb;
  --text-muted: #d2dceb;
  --accent: #69d2d5;
  --accent-2: #94f0d2;
  --shadow: 0 24px 60px rgba(4, 10, 20, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Segoe UI", "Arial", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(900px 600px at -10% -10%, rgba(148, 240, 210, 0.12), transparent 60%),
    radial-gradient(700px 520px at 110% 10%, rgba(105, 210, 213, 0.18), transparent 62%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3));
  overflow-x: hidden;
}

.container {
  width: min(940px, 92vw);
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 2;
}

.container-narrow {
  width: min(860px, 92vw);
}

.hero {
  margin-bottom: 1.8rem;
}

.hero-small {
  margin-bottom: 1.3rem;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  opacity: 0.95;
  margin-bottom: 0.55rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.brand {
  margin: 0;
  font-size: clamp(2.8rem, 11vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-wrap: balance;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

.lead {
  margin-top: 1.1rem;
  max-width: 62ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.status {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 240, 210, 0.45);
  background: rgba(148, 240, 210, 0.12);
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.card {
  backdrop-filter: blur(8px);
  border: 1px solid var(--surface-border);
  background: var(--surface);
  border-radius: 18px;
  padding: 1.3rem 1.3rem;
  box-shadow: var(--shadow);
  max-width: 780px;
}

.card h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.card p {
  margin: 0.75rem 0 0;
  line-height: 1.62;
  color: var(--text-muted);
}

.card a {
  color: var(--accent-2);
  text-decoration-color: rgba(148, 240, 210, 0.55);
  text-underline-offset: 0.16rem;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.card a:hover,
.card a:focus-visible {
  color: #d8fff0;
  text-decoration-color: #d8fff0;
  outline: none;
}

.legal h2 {
  margin-top: 1.3rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal-note {
  margin-top: 1.2rem;
  color: var(--accent-2);
  font-weight: 600;
}

.footer {
  margin-top: 1.6rem;
}

.footer a {
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.18rem;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
  outline: none;
}

.bg-shape {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.6;
  border-radius: 999px;
  transform: translate3d(0, 0, 0);
}

.bg-shape-1 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 30% 30%, rgba(105, 210, 213, 0.42), rgba(105, 210, 213, 0));
  top: -70px;
  right: -80px;
}

.bg-shape-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 65% 55%, rgba(148, 240, 210, 0.3), rgba(148, 240, 210, 0));
  bottom: -160px;
  left: -120px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
}

body.loaded [data-reveal] {
  animation: rise-in 620ms ease forwards;
  animation-delay: calc(var(--delay, 0) * 90ms);
}

body.loaded .bg-shape-1 {
  animation: drift-1 12s ease-in-out infinite;
}

body.loaded .bg-shape-2 {
  animation: drift-2 14s ease-in-out infinite;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift-1 {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-14px, 10px, 0);
  }
}

@keyframes drift-2 {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -14px, 0);
  }
}

@media (max-width: 760px) {
  .container {
    padding-top: 2.2rem;
    justify-content: flex-start;
  }

  .brand {
    font-size: clamp(2.6rem, 16vw, 4.8rem);
  }

  .lead {
    max-width: none;
  }

  .card {
    padding: 1.05rem 1rem;
  }
}
