:root {
  color-scheme: dark;
  --bg: #070811;
  --panel: rgba(18, 21, 38, 0.82);
  --panel-2: rgba(21, 29, 47, 0.72);
  --text: #eef2ff;
  --muted: #a9b2d0;
  --faint: #70799b;
  --line: rgba(142, 123, 255, 0.2);
  --accent: #8d64ff;
  --accent-2: #54f0d0;
  --danger: #ff6b9a;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 18% 24%, rgba(141, 100, 255, 0.23), transparent 26rem),
    radial-gradient(circle at 82% 22%, rgba(84, 240, 208, 0.13), transparent 28rem),
    linear-gradient(135deg, #06070e 0%, #09111b 46%, #080814 100%);
  color: var(--text);
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(32px, 7vw, 88px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
    var(--panel);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.38);
}

.brand-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 240, 208, 0.35);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(84, 240, 208, 0.18), rgba(141, 100, 255, 0.16));
  color: #fff;
  font-weight: 900;
  font-size: 34px;
  margin-bottom: 28px;
  text-shadow: 0 0 24px rgba(141, 100, 255, 0.78);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

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

.primary,
.secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 22px;
  font-weight: 800;
}

.primary {
  background: linear-gradient(135deg, var(--accent), #5b8dff);
  box-shadow: 0 18px 40px rgba(141, 100, 255, 0.27);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.note {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 14px;
}

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

article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel-2);
  padding: 24px;
}

.icon {
  display: inline-flex;
  color: var(--accent-2);
  font-weight: 900;
  margin-bottom: 22px;
}

h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

code {
  display: block;
  overflow-wrap: anywhere;
  color: #dfe8ff;
  margin-top: 8px;
  font-size: 12px;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 24px, 1120px);
    padding: 24px 0;
  }

  .hero {
    min-height: auto;
    border-radius: 22px;
  }

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