:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #000000;
  --muted: #666666;
  --soft: #fafafa;
  --line: #eaeaea;
  --line-strong: #d9d9d9;
  --radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  gap: 10px;
  font-size: 15px;
  font-weight: 650;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.site-nav nav {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a:hover,
footer a:hover,
.legal-page a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 560;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 14px;
  color: #ffffff;
  background: #000000;
}

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

.hero {
  max-width: 760px;
  padding: 96px 0 42px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 560;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.15;
}

.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.cta-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button {
  padding: 0 16px;
  border: 1px solid var(--line-strong);
}

.button.primary {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}

.button.secondary {
  color: var(--text);
  background: #ffffff;
}

.screenshot {
  overflow: hidden;
  margin: 8px 0 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #050705;
}

.screenshot img {
  width: 100%;
}

.quick-links small,
.legal-page p,
.legal-updated {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 84px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.quick-links a {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-links span {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 650;
}

.legal-page {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0 96px;
}

.legal-page h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

.legal-page section {
  padding: 30px 0 0;
}

.legal-page h2 {
  font-size: 22px;
}

.legal-page a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer {
  justify-content: flex-start;
  gap: 22px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

footer span {
  margin-right: auto;
  color: var(--text);
  font-weight: 650;
}

@media (max-width: 880px) {
  .site-nav nav {
    display: none;
  }

  main,
  footer,
  .legal-page {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    padding-top: 82px;
  }

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

@media (max-width: 540px) {
  .brand span {
    display: none;
  }

  .nav-cta {
    height: 34px;
    padding: 0 12px;
  }

  h1 {
    font-size: 46px;
  }

  .lede {
    font-size: 18px;
  }

  .screenshot {
    margin-right: -16px;
    margin-left: -16px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}
