:root {
  --coal: #101619;
  --coal-soft: #182126;
  --slate: #202b31;
  --bone: #eee8dc;
  --bone-soft: #ded5c7;
  --paper: #f8f4eb;
  --ink: #171d20;
  --ink-soft: #3d474c;
  --muted: #5f696e;
  --muted-dark: #adb7ba;
  --gold: #c68a38;
  --gold-dark: #8a5921;
  --gold-panel: #c9a169;
  --line: #beb6a9;
  --line-dark: rgba(238, 232, 220, 0.18);
  --shell: min(1220px, calc(100vw - 56px));
  --display:
    "DIN Alternate", "Avenir Next Condensed", "Avenir Next", Helvetica,
    sans-serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, sans-serif;
  --mono: "SFMono-Regular", "Roboto Mono", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
summary {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--coal);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border: 1px solid var(--bone);
  background: var(--coal);
  color: var(--bone);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--coal);
  border-bottom: 1px solid var(--line-dark);
  color: var(--bone);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 30px;
  height: 30px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  color: var(--muted-dark);
  font-size: 13px;
}

.site-nav a:hover {
  color: var(--bone);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.header-download {
  padding: 10px 15px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--coal);
  font-size: 13px;
  font-weight: 700;
}

.header-download:hover {
  border-color: var(--bone);
  background: var(--bone);
}

.hero {
  padding: 88px 0 80px;
  background: var(--coal);
  color: var(--bone);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.5fr);
  gap: clamp(72px, 10vw, 148px);
  align-items: end;
}

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

.kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7.5vw, 88px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lede {
  max-width: 760px;
  margin: 30px 0 0;
  color: #c7ced0;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 52px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--coal);
}

.button-primary:hover {
  border-color: var(--bone);
  background: var(--bone);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--paper);
}

.hero .button-secondary {
  border-color: #667278;
  color: var(--bone);
}

.hero .button-secondary:hover {
  border-color: var(--bone);
  background: transparent;
}

.release-line {
  margin: 20px 0 0;
  color: #8f9a9f;
  font-family: var(--mono);
  font-size: 10px;
}

.hero-summary {
  padding-bottom: 4px;
}

.hero-summary > p {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
  color: #89959a;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-summary dl {
  margin: 0;
}

.hero-summary dl div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.hero-summary dt {
  color: var(--bone);
  font-size: 13px;
  font-weight: 700;
}

.hero-summary dd {
  margin: 0;
  color: #929da2;
  font-size: 12px;
}

.hero-screenshot {
  margin: 64px 0 0;
  border: 1px solid #4e595e;
  background: var(--coal-soft);
}

.product-label,
.hero-screenshot figcaption {
  min-height: 42px;
  padding: 11px 14px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: #9aa5a9;
  font-family: var(--mono);
  font-size: 9px;
}

.product-label {
  border-bottom: 1px solid var(--line-dark);
}

.product-label span:last-child,
.hero-screenshot figcaption span:last-child {
  color: var(--gold);
  text-align: right;
}

.hero-screenshot img {
  width: 100%;
  height: auto;
}

.hero-screenshot figcaption {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.58fr);
  gap: clamp(64px, 10vw, 144px);
  align-items: end;
}

.section-heading h2,
.download-copy h2,
.feedback-layout h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.section-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.features-section {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.feature-list {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  counter-reset: features;
}

.feature-list article {
  min-height: 262px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  counter-increment: features;
}

.feature-list article::before {
  content: counter(features, decimal-leading-zero);
  color: #747b7e;
  font-family: var(--mono);
  font-size: 10px;
}

.feature-list article:first-child {
  background: var(--gold-panel);
}

.feature-list article:first-child::before,
.feature-list article:first-child p {
  color: #4a3b29;
}

.feature-list h3 {
  margin: auto 0 12px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.feature-list p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.demo-section {
  background: var(--slate);
  color: var(--bone);
}

.section-heading-dark > p,
.section-dark .section-heading > p {
  color: var(--muted-dark);
}

.demo-layout {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.45fr);
  gap: 32px;
  align-items: stretch;
}

.demo-video {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 1px solid #566168;
  background: #090d0f;
  object-fit: contain;
}

.demo-notes {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.demo-notes li {
  min-height: 33.333%;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-content: center;
  border-bottom: 1px solid var(--line-dark);
}

.demo-notes li > span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
}

.demo-notes strong {
  display: block;
  font-size: 15px;
}

.demo-notes p {
  margin: 7px 0 0;
  color: var(--muted-dark);
  font-size: 13px;
}

.screenshots-section {
  background: var(--coal);
  color: var(--bone);
  border-top: 1px solid var(--line-dark);
}

.gallery {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 28px;
}

.gallery figure {
  margin: 0;
  border: 1px solid #4e595e;
  background: var(--coal-soft);
}

.gallery-wide {
  grid-column: 1 / -1;
}

.gallery img {
  width: 100%;
  height: auto;
  background: #090d0f;
}

.gallery figure:not(.gallery-wide) img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery figure:nth-child(2) img {
  object-fit: contain;
}

.gallery figcaption {
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid var(--line-dark);
  color: #a6b0b4;
  font-size: 12px;
}

.download-section {
  background: var(--gold-panel);
  color: var(--ink);
}

.download-section .kicker {
  color: #5f421f;
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.65fr);
  gap: clamp(72px, 10vw, 144px);
  align-items: start;
}

.download-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 28px 0 0;
  color: #3d342a;
  font-size: 18px;
  line-height: 1.65;
}

.download-copy .button {
  margin-top: 34px;
}

.download-section .button-primary {
  border-color: var(--coal);
  background: var(--coal);
  color: var(--bone);
}

.download-section .button-primary:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.download-copy small {
  margin-top: 16px;
  display: block;
  color: #5f4e3a;
  font-size: 12px;
}

.release-details {
  border: 1px solid #5a4935;
  background: var(--coal);
  color: var(--bone);
}

.release-details dl {
  margin: 0;
  padding: 22px 28px;
}

.release-details dl div {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.release-details dl div:last-child {
  border-bottom: 0;
}

.release-details dt,
.release-details dd {
  font-size: 12px;
}

.release-details dt {
  color: #909b9f;
}

.release-details dd {
  margin: 0;
  text-align: right;
}

.install {
  padding: 24px 28px;
  border-top: 1px solid var(--line-dark);
  background: var(--slate);
}

.install h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
}

.install ol {
  margin: 0;
  padding-left: 20px;
  color: #c3cbce;
  font-size: 12px;
}

.install li + li {
  margin-top: 7px;
}

.release-details details {
  padding: 19px 28px 22px;
  border-top: 1px solid var(--line-dark);
}

.release-details summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.release-details details p {
  margin: 18px 0 5px;
  color: #8d989c;
  font-size: 10px;
}

.release-details code {
  display: block;
  color: #bdc5c8;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.feedback-section {
  background: var(--bone);
}

.feedback-layout {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 72px;
  align-items: end;
}

.feedback-layout p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  padding: 34px 0;
  background: var(--coal);
  color: #929da1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 11px;
}

.footer-inner span:last-child {
  max-width: 650px;
  text-align: right;
}

@media (max-width: 1040px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-video {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 700px);
  }

  .header-inner {
    gap: 18px;
  }

  .site-nav {
    display: none;
  }

  .header-download {
    grid-column: 3;
  }

  .hero {
    padding: 68px 0 60px;
  }

  .hero-layout,
  .section-heading,
  .download-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 48px;
  }

  .hero-summary {
    max-width: 460px;
  }

  .hero-screenshot {
    margin-top: 48px;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading,
  .download-layout {
    gap: 26px;
  }

  .feature-list,
  .gallery {
    margin-top: 56px;
  }

  .demo-layout {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .demo-video {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .demo-notes li {
    min-height: 0;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .download-layout {
    gap: 56px;
  }

  .feedback-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .feedback-layout .button {
    justify-self: start;
  }

  .footer-inner {
    flex-direction: column;
    gap: 14px;
  }

  .footer-inner span:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 27px;
    height: 27px;
  }

  .header-download {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 66px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .product-label span:last-child,
  .hero-screenshot figcaption span:last-child {
    display: none;
  }

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

  .feature-list article {
    min-height: 220px;
  }

  .section-heading h2,
  .download-copy h2,
  .feedback-layout h2 {
    font-size: 42px;
  }

  .release-details dl,
  .install,
  .release-details details {
    padding-right: 20px;
    padding-left: 20px;
  }
}

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