:root {
  color-scheme: dark;
  --space: #02060b;
  --paper: #071022;
  --surface: #101d36;
  --surface-strong: #13223e;
  --deep-orbit: #0e3a82;
  --blue: #1566d0;
  --accent: #54d6e9;
  --accent-bright: #2fc1f9;
  --muted: #a7b7d3;
  --line: #34516f;
  --silver: #d7e5eb;
  --white: #f6fafd;
  --success: #50d890;
  --shell: min(70rem, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--silver);
  background:
    radial-gradient(circle at 82% 7%, rgba(47, 193, 249, .14), transparent 29rem),
    radial-gradient(circle at 10% 66%, rgba(21, 102, 208, .10), transparent 34rem),
    linear-gradient(180deg, var(--space), var(--paper) 43%, var(--space));
  font: 400 1rem/1.7 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .11;
  background-image:
    linear-gradient(rgba(84, 214, 233, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 214, 233, .22) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 76%);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: .2rem solid var(--accent-bright);
  outline-offset: .25rem;
}

code,
pre,
.wordmark,
.primary-nav,
.hero-meta,
.section-title,
.feature-number,
.provider-lines strong,
.install-row > div span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(84, 214, 233, .14);
  background: rgba(2, 6, 11, .78);
  backdrop-filter: blur(.9rem);
}

.header-inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  color: var(--white);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-decoration: none;
}

.wordmark span {
  color: var(--accent);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}

.primary-nav a {
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.primary-nav a:not(.nav-cta):hover {
  color: var(--accent);
}

.nav-cta {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  padding: .55rem .9rem;
  color: var(--white);
  border: 1px solid rgba(84, 214, 233, .28);
  border-radius: .5rem;
  background: rgba(16, 29, 54, .78);
}

.nav-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--surface-strong);
}

.hero {
  min-height: calc(100svh - 4.75rem);
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(22rem, .88fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "{ }";
  position: absolute;
  z-index: -1;
  right: -2.5rem;
  top: -5.5rem;
  color: rgba(84, 214, 233, .105);
  font: 500 clamp(8rem, 18vw, 15rem)/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: -.12em;
  text-shadow: 0 0 3rem rgba(47, 193, 249, .17);
  transform: rotate(-3deg);
  pointer-events: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.6rem;
  color: var(--white);
  font-size: clamp(3.3rem, 7.8vw, 7.15rem);
  line-height: .91;
  letter-spacing: -.07em;
}

h1 span {
  color: var(--accent);
}

.lede {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.27rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.1rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.15rem;
  border: 1px solid var(--blue);
  border-radius: .55rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--deep-orbit));
  box-shadow: 0 .6rem 1.5rem rgba(21, 102, 208, .25);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-.12rem);
  border-color: var(--accent-bright);
  box-shadow: 0 .9rem 2rem rgba(21, 102, 208, .36);
}

.button--quiet {
  color: var(--accent);
  border-color: rgba(84, 214, 233, .46);
  background: rgba(16, 29, 54, .72);
  box-shadow: none;
}

.button--quiet:hover {
  background: var(--surface-strong);
  box-shadow: 0 .7rem 1.7rem rgba(0, 0, 0, .24);
}

.hero-meta {
  margin: 1.35rem 0 0;
  color: #8794a6;
  font-size: .76rem;
  letter-spacing: .03em;
}

.terminal {
  overflow: hidden;
  border: 1px solid rgba(84, 214, 233, .22);
  border-radius: .85rem;
  background: rgba(2, 6, 11, .84);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, .26);
}

.terminal--hero {
  transform: translateY(.6rem) rotate(.45deg);
  border-color: rgba(84, 214, 233, .34);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, .42), 0 0 3rem rgba(47, 193, 249, .06);
}

.terminal-bar {
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  gap: .42rem;
  padding-inline: 1rem;
  border-bottom: 1px solid rgba(167, 183, 211, .14);
  background: rgba(16, 29, 54, .74);
}

.terminal-bar span {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: #46617f;
}

.terminal-bar span:last-of-type {
  background: var(--accent);
}

.terminal-bar strong {
  margin-left: auto;
  color: var(--muted);
  font: 500 .68rem/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .04em;
}

pre {
  margin: 0;
  padding: 1.35rem 1.45rem 1.55rem;
  overflow-x: auto;
  color: var(--white);
  font-size: .86rem;
  font-weight: 500;
  line-height: 1.85;
}

pre i {
  color: var(--accent);
  font-style: normal;
}

code {
  color: var(--silver);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 6.75rem);
  border-top: 1px solid rgba(84, 214, 233, .14);
  scroll-margin-top: 4.75rem;
}

.section--intro,
.section--providers {
  background: linear-gradient(180deg, rgba(16, 29, 54, .18), rgba(16, 29, 54, .05));
}

.section--repository {
  background: rgba(2, 6, 11, .32);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(10rem, .55fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 8vw, 7rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, .55fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 8vw, 7rem);
  margin-bottom: 1.75rem;
}

.section-title {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.section-copy h2,
.section-heading h2 {
  max-width: 17ch;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.9rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.section-copy > p,
.section-heading p {
  max-width: 49rem;
  color: var(--muted);
}

.principles {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(167, 183, 211, .18);
}

.principles > div {
  display: grid;
  grid-template-columns: minmax(10rem, .55fr) minmax(0, 1.45fr);
  gap: 1.4rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(167, 183, 211, .18);
}

.principles strong {
  color: var(--white);
}

.principles span {
  color: var(--muted);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, .95fr);
  gap: clamp(2.2rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(2.7rem, 5vw, 4rem);
  border-top: 1px solid rgba(167, 183, 211, .18);
}

.feature-row:last-child {
  border-bottom: 1px solid rgba(167, 183, 211, .18);
}

.feature-number {
  margin-bottom: .75rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .08em;
}

.feature-copy h3 {
  max-width: 18ch;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.feature-copy p:not(.feature-number) {
  max-width: 43rem;
  color: var(--muted);
}

.feature-copy a,
.text-link,
.security-note a,
.install-row a,
.file-list a,
footer a {
  color: var(--accent);
  text-decoration-color: rgba(84, 214, 233, .42);
  text-underline-offset: .22rem;
}

.feature-copy a:hover,
.text-link:hover,
.security-note a:hover,
.install-row a:hover,
.file-list a:hover,
footer a:hover {
  text-decoration-color: currentColor;
}

.provider-lines {
  margin-block: 2rem 1.5rem;
  border-top: 1px solid rgba(167, 183, 211, .18);
}

.provider-lines > div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(167, 183, 211, .18);
}

.provider-lines strong {
  color: var(--accent);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.provider-lines code {
  overflow-wrap: anywhere;
}

.install-list {
  margin-top: 2.1rem;
  border-top: 1px solid rgba(167, 183, 211, .18);
}

.install-row {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr) max-content;
  gap: 1.25rem;
  align-items: center;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(167, 183, 211, .18);
}

.install-row > div {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.install-row strong {
  color: var(--white);
}

.install-row > div span {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .04em;
}

.install-row code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--silver);
}

.install-row a {
  font-size: .85rem;
}

.security-note {
  max-width: 49rem;
  margin-top: 1.65rem;
  padding-left: 1rem;
  border-left: .18rem solid var(--accent);
  color: var(--muted);
}

.security-note strong {
  color: var(--white);
}

.safety-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(167, 183, 211, .18);
}

.safety-list li {
  display: grid;
  grid-template-columns: minmax(11rem, .62fr) minmax(0, 1.38fr);
  gap: 1.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(167, 183, 211, .18);
}

.safety-list strong {
  color: var(--white);
}

.safety-list span {
  color: var(--muted);
}

.file-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(167, 183, 211, .18);
}

.file-list li {
  display: grid;
  grid-template-columns: minmax(11rem, .75fr) minmax(0, 1.25fr);
  gap: 1.5rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(167, 183, 211, .18);
}

.file-list a {
  width: fit-content;
  font: 600 .86rem/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.file-list span {
  color: var(--muted);
}

footer {
  padding-block: 2.4rem 3.2rem;
  border-top: 1px solid rgba(84, 214, 233, .14);
  color: var(--muted);
  font-size: .86rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-inner > div:first-child {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.footer-inner strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

@media (max-width: 56rem) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 5rem;
  }

  .terminal--hero {
    transform: none;
  }

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

@media (max-width: 48rem) {
  :root {
    --shell: min(100% - 1.5rem, 70rem);
  }

  .header-inner {
    min-height: 4.25rem;
    align-items: flex-start;
    flex-direction: column;
    padding-block: .9rem;
    gap: .75rem;
  }

  .primary-nav {
    width: 100%;
    gap: .9rem;
    flex-wrap: wrap;
  }

  .nav-cta {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero {
    padding-block: 4rem;
    gap: 3rem;
  }

  .hero-copy::after {
    right: -2rem;
    top: -2.7rem;
    font-size: 8rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .section-grid,
  .section-heading,
  .principles > div,
  .provider-lines > div,
  .install-row,
  .safety-list li,
  .file-list li {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .section-heading {
    gap: 1.3rem;
  }

  .principles > div,
  .provider-lines > div,
  .install-row,
  .safety-list li,
  .file-list li {
    gap: .45rem;
  }

  .install-row a {
    width: fit-content;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
  }
}
