:root {
  --bg: #0b0f1a;
  --surface: rgba(20, 28, 46, 0.72);
  --surface-border: rgba(77, 163, 255, 0.18);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --accent: #4da3ff;
  --accent-soft: rgba(77, 163, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --max-width: 900px;
  --radius: 24px;
}

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

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(77, 163, 255, 0.18), transparent 32%),
    radial-gradient(circle at 78% 12%, rgba(125, 181, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #0b0f1a 0%, #090d16 100%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    radial-gradient(circle at 22% 20%, rgba(77, 163, 255, 0.14) 0 88px, transparent 89px),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.06) 0 54px, transparent 55px),
    linear-gradient(rgba(77, 163, 255, 0.09), rgba(77, 163, 255, 0.09)),
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    linear-gradient(rgba(77, 163, 255, 0.08), rgba(77, 163, 255, 0.08));
  background-size:
    auto,
    auto,
    220px 140px,
    170px 110px,
    260px 1px;
  background-position:
    22% 20%,
    76% 18%,
    16% 16%,
    68% 60%,
    18% 23%;
  background-repeat: no-repeat;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #82beff;
}

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

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 88px 0 40px;
}

.hero,
.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  padding: 56px;
}

.card {
  margin-top: 32px;
  padding: 36px 40px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

h1,
h2,
p,
ul {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 18px;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.subtitle {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.25rem;
}

.lead,
.status-note,
.card p,
.card li,
.footer {
  color: var(--muted);
  font-size: 1.02rem;
}

.status-note {
  margin-bottom: 0;
}

.use-cases,
.related-links {
  margin: 0;
  padding-left: 18px;
}

.owner-name,
.owner-role {
  color: var(--text);
}

.owner-name {
  margin-bottom: 4px;
  font-size: 1.25rem;
  font-weight: 600;
}

.owner-role {
  margin-bottom: 18px;
}

.offer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(77, 163, 255, 0.24);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
}

.offer-link:hover {
  background: rgba(77, 163, 255, 0.18);
  color: var(--text);
}

.footer {
  width: min(100% - 40px, var(--max-width));
  margin: auto auto 32px;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max-width));
    padding-top: 56px;
  }

  .hero {
    padding: 32px 24px;
  }

  .card {
    padding: 28px 24px;
  }

  .footer {
    width: min(100% - 24px, var(--max-width));
    margin-bottom: 24px;
    flex-direction: column;
  }
}
