:root {
  --font-brand: "Outfit", sans-serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  color-scheme: light;

  --background: rgba(255, 255, 255, 1);
  --primary: #181C20;
  --secondary: #74777C;
  --tertiary: #8D9196;
  --quaternary: #C3C7CC;
  --quinary: #EEF1F6;
  --separator: rgba(0, 0, 0, 0.15);
  --radius-small: 12px;
  --button: #181C20;
  --on-accent: #ffffff;
}

.dark-image {
  display: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;

    --background: #141414;
    --primary: #E2E2E2;
    --secondary: #C7C7C7;
    --tertiary: #969CA2;
    --quaternary: #43474C;
    --quinary: #3C3C3C;
    --on-accent: #181C20;
    --separator: rgba(255, 255, 255, 0.15);
  }

  .light-image {
    display: none;
  }

  .dark-image {
    display: block;
  }
}

* {
  font-family: var(--font-sans);
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 13px;
  line-height: 1.5;
  overscroll-behavior: none;
  background: var(--background);
  color: var(--primary);
}

img {
  width: 100%;
  height: auto;
}

.container {
  max-width: 1380px;
  padding: 80px 20px;
  margin: auto;
}

.content {
  max-width: 800px;
  margin: auto;
}

.content-small {
  max-width: 600px;
  margin: auto;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 32px;
}

.icon {
  max-width: 40px;
}

.logo-type {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 500;
}

.intro {
  text-align: center;
}

h1 {
  color: var(--primary);
  font-family: var(--font-brand);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

h2 {
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.65em;
}

h3 {
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

p.subtitle {
  font-family: var(--font-sans);
  color: var(--secondary);
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 1.5em;
  font-weight: 400;
}

p {
  font-family: var(--font-sans);
  color: var(--secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1.7em;
  font-weight: 400;
}

p+h2 {
  margin-top: 40px;
}

p:last-child {
  margin-bottom: 0;
}

p.footnote {
  font-size: 13px;
}

.screenshot-container {
  position: relative;
  -webkit-mask: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 0) 95%);
  mask: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 70%,
      rgba(0, 0, 0, 0) 95%);
  padding: 1px 1px 0 1px;
  margin-bottom: -5%;
}

.screenshot {
  max-width: 1160px;
  box-shadow: 0 0 0 1px var(--separator);
  border-radius: 0.862% / 1.397%;
  overflow: hidden;
  position: relative;
  margin: auto;
}

.section {
  margin-bottom: 64px;
}

.section:last-child {
  margin-bottom: 0;
}

.btn {
  height: 40px;
  appearance: none;
  border: none;
  outline: none;
  border-radius: var(--radius-small);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-badge {
  color: var(--on-accent);
  background: var(--primary);
  height: 48px;
}

.btn-badge>svg {
  fill: var(--on-accent);
}

.footer {
  text-align: center;
}

@media (max-width: 600px) {
  h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  p.subtitle {
    font-size: 17px;
  }

  p {
    font-size: 15px;
  }

  .container {
    padding: 32px 20px;
  }

  .section {
    margin-bottom: 32px;
  }

  .logo-type {
    font-size: 22px;
  }

  .btn {
    height: 40px;
    padding: 0 20px;
  }

  .logo {
    margin-bottom: 20px;
  }
}
