:root {
  --bg: #03040f;
  --panel: rgba(24, 17, 46, 0.74);
  --line: rgba(213, 192, 255, 0.16);
  --text: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.72);
  --brand: #8c52ff;
  --brand-soft: #d5c0ff;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(700px 420px at 16% 0%, rgba(140, 82, 255, 0.16), transparent 62%),
    linear-gradient(180deg, #02030d 0%, #070412 62%, #02030d 100%);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 15, 0.84);
  backdrop-filter: blur(18px);
}

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

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 142px;
  height: auto;
}

.links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.links a:hover,
.links a[aria-current="page"] {
  color: #fff;
}

.hero {
  padding: 112px 0 70px;
}

.eyebrow {
  display: inline-flex;
  color: var(--brand-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin: 18px 0 20px;
  font-size: 5.4rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.55;
}

.button-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #54378b);
  font-weight: 800;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.content {
  padding: 24px 0 92px;
}

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

.panel {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 26px;
}

.panel h2,
.panel h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.65;
}

.panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.wide {
  grid-column: 1 / -1;
}

.breadcrumb {
  padding-top: 28px;
  color: rgba(245, 245, 247, 0.58);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--brand-soft);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: rgba(245, 245, 247, 0.62);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 760px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    padding-top: 76px;
  }

  h1 {
    font-size: 2.72rem;
    line-height: 1;
  }

  .lead {
    font-size: 1.08rem;
  }

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