:root {
  color-scheme: dark;
  --bg: #070a10;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.12);
  --text: #eef3ff;
  --muted: rgba(238, 243, 255, 0.72);
  --muted-2: rgba(238, 243, 255, 0.56);
  --accent: #6d5bff;
  --accent-2: #19d3c5;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--text);
  background:
    radial-gradient(900px 540px at 16% 0%, rgba(109, 91, 255, 0.18), transparent 58%),
    radial-gradient(800px 480px at 90% 10%, rgba(25, 211, 197, 0.10), transparent 55%),
    linear-gradient(180deg, #05070e 0%, #070a10 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 26px 18px 40px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav,
.footer-links,
.actions,
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav a,
.footer-links a,
.back {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 700;
}

.hero {
  min-height: 70vh;
  display: grid;
  align-items: center;
  padding: 42px 0 34px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  padding: clamp(22px, 4vw, 40px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(25, 211, 197, 0.12);
}

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

h1 {
  max-width: 760px;
  font-size: clamp(34px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h2 {
  margin: 30px 0 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 8px;
  font-size: 15px;
}

p,
li {
  max-width: 740px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

ul {
  margin: 10px 0 0 22px;
  padding: 0;
}

li {
  margin: 6px 0;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.04);
}

.button.primary {
  border-color: rgba(109, 91, 255, 0.56);
  background: linear-gradient(135deg, rgba(109, 91, 255, 0.90), rgba(25, 211, 197, 0.38));
}

.meta span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.content {
  margin-top: 22px;
}

.callout {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.16);
}

.footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 13px;
}

code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
  color: #f4f6ff;
}

@media (max-width: 720px) {
  .wrap {
    padding: 18px 14px 30px;
  }

  .hero {
    min-height: 68vh;
  }

  .panel {
    padding: 20px;
  }
}
