:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #17191e;
  background: #f4f5f2;
  font-synthesis: none;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  background: #f4f5f2;
}

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

a:focus-visible {
  outline: 3px solid #d9b44a;
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: min(76svh, 720px);
  overflow: hidden;
  color: #ffffff;
  background-color: #111318;
  background-image: url("/screenshots/landing.jpg");
  background-position: center top;
  background-size: cover;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  background: rgba(10, 12, 18, 0.42);
}

.hero::after {
  left: auto;
  width: 52%;
  background: rgba(10, 12, 18, 0.88);
}

.nav,
.hero__content,
.hero__next {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 17px;
  font-weight: 750;
}

.brand__mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #15171b;
  font-weight: 850;
  background: #ef8992;
  border-radius: 6px;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  color: #e7e8eb;
}

.nav__links a:hover,
.footer a:hover,
.release-band a:hover,
.verification__links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero__content {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 0 72px 58%;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f0b2b7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #9a3f48;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1;
}

.hero__lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: #e7e8eb;
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 750;
  border: 1px solid transparent;
  border-radius: 6px;
}

.button--primary {
  color: #15171b;
  background: #ef8992;
}

.button--primary:hover {
  background: #f3a0a7;
}

.button--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.signing-notice {
  max-width: 560px;
  margin: 22px 0 0;
  color: #c9cbd1;
  font-size: 13px;
  line-height: 1.55;
}

.hero__next {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #d7d9de;
  font-size: 13px;
}

.release-band {
  color: #f5f6f3;
  background: #2f6f68;
}

.release-band__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
}

.release-band p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.release-band a {
  font-size: 13px;
  font-weight: 750;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #f0c55e;
  border-radius: 50%;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.section__header {
  max-width: 720px;
  margin-bottom: 38px;
}

.section__header h2,
.verification h2,
.preview h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.18;
}

.section__header > p:last-child {
  margin: 16px 0 0;
  color: #5c6068;
  font-size: 16px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.download-item {
  display: flex;
  min-width: 0;
  min-height: 286px;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #dfe1dc;
  border-radius: 8px;
}

.download-item.is-recommended {
  border-color: #2f6f68;
  box-shadow: inset 0 4px 0 #2f6f68;
}

.download-item__topline {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.download-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.download-item__status {
  flex: 0 0 auto;
  color: #9a3f48;
  font-size: 12px;
  font-weight: 750;
}

.download-item__meta {
  margin: 22px 0 0;
  color: #2f6f68;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
}

.download-item > p:not(.download-item__meta) {
  margin: 14px 0 24px;
  color: #62666d;
  font-size: 14px;
  line-height: 1.55;
}

.button--download {
  width: 100%;
  margin-top: auto;
  color: #ffffff;
  background: #17191e;
}

.button--download:hover {
  background: #2f6f68;
}

.verification {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 72px;
  align-items: start;
  border-top: 1px solid #d3d6d0;
}

.verification__links {
  display: grid;
  border-top: 1px solid #bfc2bc;
}

.verification__links a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #bfc2bc;
}

.preview {
  position: relative;
  padding: 76px 0 0;
  overflow: hidden;
  color: #ffffff;
  background: #111318;
}

.preview__copy {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 42px;
}

.preview__copy h2 {
  max-width: 760px;
}

.preview img {
  display: block;
  width: min(1180px, 100%);
  height: auto;
  margin: 0 auto;
}

.footer {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  color: #555960;
  font-size: 13px;
}

.footer div {
  display: flex;
  gap: 24px;
}

@media (max-width: 960px) {
  .hero::after {
    width: 66%;
  }

  .hero__content {
    padding: 42px 0 54px 40%;
  }

  .nav {
    min-height: 64px;
  }

  h1 {
    font-size: 56px;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .signing-notice {
    margin-top: 16px;
  }

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

  .download-item {
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 72svh;
    background-position: 30% top;
  }

  .hero::after {
    width: 100%;
    background: rgba(10, 12, 18, 0.82);
  }

  .nav,
  .hero__content,
  .release-band__inner,
  .section,
  .preview__copy,
  .footer {
    width: min(calc(100% - 32px), 1180px);
  }

  .nav {
    min-height: 64px;
  }

  .nav__links a:not(:first-child) {
    display: none;
  }

  .nav__links {
    gap: 0;
  }

  .hero__content {
    padding: 34px 0 42px;
  }

  h1 {
    font-size: 40px;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero__actions {
    margin-top: 20px;
  }

  .signing-notice {
    margin-top: 14px;
    line-height: 1.4;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__next {
    right: 16px;
    bottom: 14px;
  }

  .release-band__inner {
    grid-template-columns: auto 1fr;
    padding: 16px 0;
  }

  .release-band a {
    grid-column: 2;
  }

  .section {
    padding: 62px 0;
  }

  .section__header h2,
  .verification h2,
  .preview h2 {
    font-size: 30px;
  }

  .download-item__topline {
    flex-direction: column;
    gap: 6px;
  }

  .verification {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .preview {
    padding-top: 58px;
  }

  .footer {
    min-height: 110px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
  }
}
