:root {
  --bg: #0b0f18;
  --panel: #0f172a;
  --panel2: #0b1224;
  --text: #e7eaf3;
  --muted: #aab2c5;
  --brand: #8b5cf6;
  --brand2: #22d3ee;
  --ring: rgba(139, 92, 246, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  background:
    radial-gradient(
      1200px 600px at 15% 10%,
      rgba(139, 92, 246, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 85% 20%,
      rgba(34, 211, 238, 0.14),
      transparent 55%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
}
a:hover {
  opacity: 0.9;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 24, 0.72),
    rgba(11, 15, 24, 0.35)
  );
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(139, 92, 246, 0.25));
}
.brand span {
  font-weight: 700;
  letter-spacing: 0.4px;
}
.navlinks {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.navlinks a {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
}
.navlinks a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  padding: 46px 0 10px;
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}
@media (max-width: 900px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cardPad {
  padding: 26px;
}

.kicker {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 10px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}
p {
  margin: 0 0 14px;
  color: rgba(231, 234, 243, 0.92);
}
.small {
  color: var(--muted);
  font-size: 14px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 10px;
}
.badge {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.5);
  color: rgba(231, 234, 243, 0.9);
  font-size: 13px;
}

.ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.14);
}
.btnPrimary {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.95),
    rgba(34, 211, 238, 0.72)
  );
  border-color: rgba(255, 255, 255, 0.12);
}
.btnGhost {
  color: var(--muted);
}
.btnGhost:hover {
  color: var(--text);
}

.sidePanel {
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.glow {
  position: absolute;
  inset: -120px -120px auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 60%);
  filter: blur(0px);
  pointer-events: none;
}
.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(231, 234, 243, 0.88);
}
.list li:last-child {
  border-bottom: none;
}

.section {
  margin-top: 22px;
  padding: 22px;
}
.section h2 {
  margin: 0 0 10px;
  font-size: 22px;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}

.footer {
  margin-top: 26px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}
.footerInner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}
.footer a {
  color: var(--muted);
  text-decoration: none;
}
.footer a:hover {
  color: var(--text);
}
hr.sep {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 18px 0;
}

.legal h1 {
  font-size: 34px;
}
.legal h2 {
  margin-top: 22px;
}
.legal p,
.legal li {
  color: rgba(231, 234, 243, 0.9);
}
.legal ul {
  padding-left: 18px;
}
.code {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 13px;
  color: rgba(231, 234, 243, 0.92);
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  border-radius: 14px;
  overflow: auto;
}
