:root {
  color-scheme: light;
  --page: #f7f5ef;
  --ink: #15191b;
  --muted: #4e5a5f;
  --line: #d5cbbd;
  --paper: #fffdf8;
  --accent: #b43d2f;
  --accent-strong: #8f2e24;
  --green: #476c5f;
  --control-height: 44px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(238, 242, 237, 0.84)),
    var(--page);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(213, 203, 189, 0.72);
  background: rgba(247, 245, 239, 0.88);
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav,
.hero__actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.site-header nav {
  gap: 18px;
  color: #364348;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-header nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px) 56px;
}

.hero__content {
  min-width: 0;
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #47616c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: #111416;
  font-size: 6.8rem;
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: #14191b;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: #15191b;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.hero__lead {
  max-width: min(600px, 100%);
  margin-bottom: 28px;
  color: #3d474b;
  font-size: 1.35rem;
  line-height: 1.45;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--control-height);
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-decoration: none;
}

.button--primary {
  color: #fffdf8;
  background: var(--accent);
}

.button--primary:hover {
  background: var(--accent-strong);
}

.button--secondary {
  border-color: #c8beb0;
  color: #243034;
  background: #fffdf8;
}

.release-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.release-strip div {
  min-width: 0;
  padding: 14px;
}

.release-strip div + div {
  border-left: 1px solid var(--line);
}

dt {
  color: #647076;
  font-size: 0.78rem;
  font-weight: 800;
}

dd {
  margin: 5px 0 0;
  color: #15191b;
  font-weight: 900;
}

.hero__preview {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.hero__preview img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #d2c8ba;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(47, 41, 32, 0.18);
}

.section {
  padding: 76px clamp(20px, 5vw, 72px);
}

.section__header {
  max-width: 780px;
  margin-bottom: 34px;
}

.section__header p,
.feature-grid p,
.limit-list,
.download-note,
.site-footer {
  color: var(--muted);
  line-height: 1.65;
}

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

.feature-grid article,
.download-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid p {
  margin-bottom: 0;
}

.section--download {
  background: rgba(255, 253, 248, 0.48);
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.download-card[data-preferred="true"] {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

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

.download-card__head span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  color: #47616c;
  background: #e8eee9;
  font-size: 0.76rem;
  font-weight: 900;
}

.download-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.download-card div:not(.download-card__head) {
  min-width: 0;
}

.download-card dd {
  overflow-wrap: anywhere;
}

.download-card .button {
  margin-top: auto;
}

.download-note {
  margin: 22px 0 0;
}

.download-note a {
  color: #263f49;
  font-weight: 900;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: 34px;
  align-items: start;
}

.limit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer div {
  gap: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .section--split {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-grid,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-header nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero__lead {
    font-size: 1.1rem;
  }

  .release-strip,
  .feature-grid,
  .download-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .release-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
