:root {
  color-scheme: dark;
  --bg: #05020d;
  --ink: #ffffff;
  --muted: #ffffff;
  --soft: rgba(255, 255, 255, 0.11);
  --purple: #6119f2;
  --purple-soft: #ffffff;
  --font-ui: "Inter Variable", Inter, "Inter Placeholder", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: ".SFNSDisplay-Semibold", "SFProDisplay-Semibold", "SFUIDisplay-Semibold", ".SFUIDisplay-Semibold", "SF Pro Display", -apple-system, BlinkMacSystemFont, var(--font-ui);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 12px;
  background: transparent;
  pointer-events: none;
}

.orbit-nav {
  width: 100%;
  max-width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 22px 16px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  background: rgba(0, 0, 0, 0);
  box-shadow: none;
  pointer-events: auto;
  transition:
    width 380ms cubic-bezier(0.16, 1, 0.3, 1),
    max-width 380ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 380ms cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 380ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 380ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.local-orbit-nav-scrolled .orbit-nav {
  width: min(760px, calc(100vw - 24px));
  border-color: rgba(255, 255, 255, 0.04);
  border-radius: 160px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.22), inset 0 -4px 18px rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(36px);
  backdrop-filter: blur(36px);
}

.brand,
.nav-links,
.nav-cta,
.footer-bottom {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  flex: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.nav-links {
  gap: 26px;
  margin-left: auto;
}

.nav-links a,
.nav-cta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  min-height: 46px;
  justify-content: center;
  padding: 0 34px;
  border-radius: 130px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 22.4px;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.18), 0 10px 28px rgba(255, 255, 255, 0.08);
}

main {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: block;
  padding: 92px 0 54px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: ".SFNSDisplay", "SFProDisplay-Regular", "SFUIDisplay-Regular", ".SFUIDisplay", "SF Pro Display", -apple-system, BlinkMacSystemFont, var(--font-ui);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 40px;
  line-height: 44px;
}

.lede,
.article-dek {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.section-heading h2 {
  font-size: 32px;
  line-height: 1.2;
}

.content-band {
  padding: 34px 0 104px;
}

.section-heading {
  padding-top: 34px;
  border-top: 1px solid var(--soft);
}

.resource-grid {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--soft);
}

.resource-link {
  display: grid;
  gap: 7px;
  padding: 22px 0;
  border-bottom: 1px solid var(--soft);
  text-decoration: none;
}

.resource-link span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.resource-link small,
.body-note {
  color: var(--muted);
}

.resource-link:hover span,
.resource-link:focus-visible span,
.body-note a,
.article-body a {
  color: #fff;
}

.body-note {
  margin: 28px 0 0;
  font-size: 17px;
}

.article-main {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 112px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.article-back:hover,
.article-back:focus-visible {
  color: var(--ink);
}

.article-meta {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.article-body {
  max-width: 760px;
  margin-top: 58px;
}

.article-body h2 {
  margin-top: 48px;
  font-size: 32px;
  line-height: 1.2;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 34px 0 0;
  font-size: 22px;
  line-height: 1.3;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

.article-body p {
  margin: 18px 0 0;
}

.article-body ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-body strong {
  color: var(--ink);
}

.orbit-footer {
  width: min(1200px, calc(100% - 60px));
  min-height: 315px;
  margin: 0 auto 30px;
  padding: 40px 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  color: #ffffff;
}

.orbit-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  pointer-events: none;
}

.footer-links {
  display: grid;
  grid-template-columns: 80px repeat(4, minmax(120px, max-content));
  justify-content: space-between;
  gap: 56px;
  width: 100%;
  max-width: 100%;
}

.footer-brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  text-decoration: none;
}

.footer-brand-mark img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 11px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 19px;
  width: max-content;
}

.footer-column p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
}

.footer-column a,
.footer-column span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
}

.footer-column a,
.footer-signature {
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-signature:hover,
.footer-signature:focus-visible {
  color: #fff;
}

.footer-bottom {
  justify-content: space-between;
  gap: 20px;
  color: rgba(187, 176, 209, 0.5);
}

.footer-bottom p {
  margin: 0;
  color: rgba(187, 176, 209, 0.5);
  font-family: ".SFNSDisplay-Medium", "SFProDisplay-Medium", "SFUIDisplay-Medium", ".SFUIDisplay-Medium", "SF Pro Display", -apple-system, BlinkMacSystemFont, var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.footer-signature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(196, 173, 240);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}

.footer-made-icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: none;
  object-fit: contain;
  vertical-align: middle;
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .orbit-nav {
    min-height: 64px;
    padding: 12px 12px 12px 20px;
  }

  .local-orbit-nav-scrolled .orbit-nav {
    width: calc(100vw - 32px);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  main,
  .article-main {
    width: min(100% - 32px, 860px);
  }

  .hero,
  .article-main {
    padding-top: 54px;
  }

  h1,
  .article h1 {
    font-size: 44px;
  }

  .lede,
  .article-dek {
    font-size: 19px;
  }

  .article-body {
    margin-top: 42px;
  }

  .article-body h2 {
    font-size: 28px;
  }

  .article-body p,
  .article-body li {
    font-size: 17px;
  }

  .orbit-footer {
    width: calc(100% - 32px);
    min-height: 0;
    margin-bottom: 16px;
    padding: 32px 24px 24px;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
