:root {
  color: #f7f8f8;
  background: #08090a;
  font-family:
    Inter, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv01", "ss03";
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(113, 112, 255, 0.16), transparent 28rem),
    #08090a;
}

a {
  color: inherit;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
  color: #8a8f98;
  font-size: 14px;
  font-weight: 510;
}

.nav a {
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.eyebrow {
  margin: 0 0 12px;
  color: #7170ff;
  font-size: 13px;
  font-weight: 590;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #f7f8f8;
  font-size: 52px;
  font-weight: 510;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: keep-all;
}

.lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: #a8afb9;
  font-size: 17px;
  line-height: 1.75;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cta-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.cta-panel strong {
  color: #f7f8f8;
  font-size: 20px;
  font-weight: 510;
}

.cta-panel p {
  margin: 0;
  color: #a8afb9;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid #7170ff;
  border-radius: 6px;
  padding: 10px 14px;
  background: #5e6ad2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 510;
  text-decoration: none;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  color: #f7f8f8;
  font-size: 14px;
  font-weight: 510;
  text-decoration-color: rgba(113, 112, 255, 0.54);
  text-underline-offset: 4px;
}

.ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #e2e4e7;
}

.trust {
  color: #8a8f98;
  font-size: 13px;
}

.trust a {
  color: #d0d6e0;
  text-decoration-color: rgba(113, 112, 255, 0.48);
  text-underline-offset: 4px;
}

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

.card {
  padding: 18px;
}

.card h2 {
  margin: 0 0 10px;
  color: #f7f8f8;
  font-size: 18px;
  font-weight: 590;
}

.card p,
.card li {
  color: #a8afb9;
  font-size: 14px;
  line-height: 1.65;
}

.card .share-copy {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: #d0d6e0;
}

.card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.footer {
  margin-top: 28px;
  color: #62666d;
  font-size: 13px;
}

@media (max-width: 820px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 36px;
  }

  .page {
    padding: 28px 20px 44px;
  }
}
