:root {
  --bg: #0b0c10;
  --bg-alt: #101218;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-alt: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --hairline: rgba(255, 255, 255, 0.06);
  --text: #f2f3f4;
  --text-muted: #9aa0a8;
  --text-faint: #6b7078;
  --primary: #8b8bff;
  --primary-deep: #5b5bd6;
  --primary-soft: rgba(139, 139, 255, 0.16);
  --primary-glow: rgba(139, 139, 255, 0.18);
  --positive: #3dcb84;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --gutter: 20px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

h1 {
  font-weight: 800;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h2 {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
}

h3 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
}

p {
  color: var(--text-muted);
  margin: 0 0 16px;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

header.site {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--hairline);
}

.nav {
  max-width: 880px;
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: block;
}

.brand:hover {
  text-decoration: none;
}

nav.links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

nav.links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

nav.links a:hover {
  color: var(--text);
  text-decoration: none;
}

main {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.hero {
  padding: 72px 0 48px;
  text-align: center;
}

.hero p.lead {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.badge strong {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hint {
  font-size: 13px;
  color: var(--text-faint);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.card p {
  margin: 0;
  font-size: 15px;
}

.cta {
  text-align: center;
  padding: 48px 0 64px;
  border-top: 1px solid var(--hairline);
  margin-top: 24px;
}

.button {
  display: inline-block;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(139, 139, 255, 0.25);
}

.button:hover {
  text-decoration: none;
  opacity: 0.92;
}

footer.site {
  border-top: 1px solid var(--hairline);
  padding: 32px 0 48px;
  position: relative;
  z-index: 1;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--text);
}

.fine {
  color: var(--text-faint);
  font-size: 13px;
}

.legal {
  padding: 56px 0 80px;
}

.legal .updated {
  color: var(--text-faint);
  font-size: 13px;
  margin-bottom: 40px;
}

.legal section {
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.legal p,
.legal li {
  font-size: 15px;
}

.legal ul {
  padding-left: 20px;
  color: var(--text-muted);
}

.legal li {
  margin-bottom: 8px;
}

.principles {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 12px;
}

.principles li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  color: var(--text);
  font-size: 15px;
}

.principles strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px;
  }

  .hero {
    padding: 48px 0 32px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
