:root {
  color-scheme: light;
  --paper: #faf9f6;
  --ink: #252621;
  --muted: #6a6c63;
  --line: #dedfd5;
  --accent: #e9edbd;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
abbr {
  text-decoration: none;
}
p,
h1,
h2,
h3 {
  margin-top: 0;
}
h1,
h2,
h3,
p,
a,
li,
code {
  overflow-wrap: anywhere;
}
.shell {
  max-width: 1280px;
  margin: auto;
  padding: 0 max(28px, env(safe-area-inset-right)) 0
    max(28px, env(safe-area-inset-left));
}
header {
  min-height: 104px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.brand {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -1.3px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-size: 13px;
  text-decoration: none;
  padding: 10px 0;
  color: var(--muted);
}
nav a[aria-current] {
  color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}
.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  padding: 8px;
  background: var(--ink);
  color: white;
  z-index: 2;
}
.skip:focus {
  top: 10px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(285px, 1fr);
  gap: 72px;
  padding: 65px 0 62px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1.04;
  letter-spacing: -2.6px;
  font-weight: 400;
  margin-bottom: 30px;
}
h1 em {
  font-weight: 400;
  color: #73775c;
}
.description {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 20px;
}
.compatibility {
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--muted);
  margin: 0;
}
.compatibility span {
  padding: 0 7px;
}
.release {
  border-left: 1px solid var(--line);
  padding-left: 48px;
  min-width: 0;
}
.release .eyebrow {
  margin-bottom: 14px;
}
.price {
  line-height: 1;
  margin-bottom: 20px;
  font-size: 11px;
  color: var(--muted);
}
.price span {
  font-family: Georgia, serif;
  font-size: 61px;
  color: var(--ink);
  letter-spacing: -3px;
  margin-right: 7px;
}
.terms {
  list-style: none;
  padding: 0;
  margin: 0 0 27px;
  font-size: 13px;
  line-height: 1.9;
}
.terms li:before {
  content: "✓";
  display: inline-block;
  width: 22px;
  color: #767b55;
}
.release-status {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.release-status h2 {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0;
}
.dot {
  height: 7px;
  width: 7px;
  flex: 0 0 7px;
  background: #8a8e67;
  border-radius: 50%;
}
.status-copy {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 18px;
}
.button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 17px;
  text-decoration: none;
  font-size: 13px;
  border-radius: 3px;
  min-height: 46px;
  transition: background 0.15s;
}
.button:hover {
  background: #44483a;
}
.button span {
  font-size: 20px;
  line-height: 1;
}
.fine-print {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.6;
  margin: 13px 0 0;
}
.notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
  padding: 30px 0 50px;
  border-top: 1px solid var(--line);
}
.note-number {
  font-size: 10px;
  letter-spacing: 1px;
  color: #7f826b;
  display: block;
  margin-bottom: 13px;
}
.notes h2 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.notes p {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
  margin: 0;
}
footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 10px;
}
.article {
  max-width: 760px;
  margin: 58px auto 70px;
}
.article h1 {
  font-size: 43px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.article h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  margin: 45px 0 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.article h3 {
  font-size: 18px;
  margin: 30px 0 12px;
}
.article p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
}
.article code {
  font-size: 13px;
}
.article > p:first-of-type {
  background: #f0f0e7;
  border-left: 2px solid #979c74;
  padding: 15px 20px;
  font-size: 13px;
}
.not-found {
  max-width: 640px;
  min-height: 65vh;
  padding: 70px 0;
}
.not-found .button {
  max-width: 250px;
}
@media (max-width: 1000px) {
  .hero {
    gap: 36px;
    padding: 44px 0;
  }
  .release {
    padding-left: 32px;
  }
  .notes {
    gap: 30px;
  }
  h1 {
    letter-spacing: -1.8px;
  }
}
@media (max-width: 640px) {
  .shell {
    padding: 0 max(20px, env(safe-area-inset-right)) 0
      max(20px, env(safe-area-inset-left));
  }
  header {
    min-height: 75px;
    gap: 14px;
  }
  .brand {
    font-size: 23px;
    gap: 4px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  nav {
    gap: 15px;
  }
  nav a {
    font-size: 11px;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 30px 0 36px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.35px;
    margin-bottom: 18px;
  }
  h1 {
    font-size: 46px;
    letter-spacing: -1.7px;
    margin-bottom: 20px;
  }
  .description {
    font-size: 13px;
    max-width: 360px;
    margin-bottom: 14px;
  }
  .desktop-break {
    display: none;
  }
  .compatibility {
    font-size: 10px;
  }
  .release {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 23px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }
  .release > .eyebrow {
    grid-column: 1/-1;
    margin-bottom: 12px;
  }
  .price {
    grid-column: 1;
    margin-bottom: 9px;
  }
  .price span {
    font-size: 47px;
  }
  .terms {
    grid-column: 2;
    grid-row: 2/4;
    font-size: 11px;
    line-height: 1.85;
    margin: 0;
  }
  .release-status {
    grid-column: 1/-1;
    margin-top: 16px;
  }
  .status-copy {
    grid-column: 1/-1;
    margin-bottom: 13px;
  }
  .button {
    grid-column: 1/-1;
  }
  .fine-print {
    grid-column: 1/-1;
  }
  .notes {
    grid-template-columns: 1fr;
    padding: 25px 0 32px;
    gap: 25px;
  }
  .note-number {
    margin-bottom: 6px;
  }
  .notes p {
    max-width: 100%;
  }
  footer {
    font-size: 9px;
    flex-wrap: wrap;
  }
  .article {
    margin: 30px auto 45px;
  }
  .article h1 {
    font-size: 31px;
    letter-spacing: -0.8px;
  }
  .article p {
    font-size: 14px;
    line-height: 1.85;
  }
  .article > p:first-of-type {
    padding: 12px 14px;
    font-size: 12px;
  }
  .article h2 {
    font-size: 25px;
  }
  .not-found {
    padding-top: 45px;
  }
  .not-found h1 {
    font-size: 39px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
