:root {
  --paper: #f7f7f2;
  --ink: #252720;
  --muted: #65695f;
  --line: #d5d6cc;
  --accent: #9e4d32;
  --field: #eaece2;
  --mono: "IBM Plex Mono", monospace;
  --sans: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a,
button,
input {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
p,
h1,
h2,
h3,
figure,
blockquote {
  margin: 0;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
button {
  border-radius: 0;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1488px;
  margin-inline: auto;
}
.header {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.wordmark {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.32em;
  white-space: nowrap;
}
.wordmark span {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  margin-top: 8px;
}
.header > nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}
.header nav a:hover,
.text-link:hover,
.study-foot a:hover {
  color: var(--accent);
}
.nav-cta {
  border-bottom: 1px solid var(--ink);
  padding: 12px 0;
  font-size: 13px;
  display: flex;
  gap: 25px;
}
.nav-cta span {
  font-size: 20px;
  line-height: 16px;
}
.menu-toggle {
  display: none;
}
.header #mobile-nav[hidden] {
  display: none;
}
.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 12px;
  background: var(--ink);
  color: white;
  z-index: 20;
}
.skip:focus {
  top: 12px;
}
.hero {
  padding-top: 28px;
}
.hero-top,
.closing-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.eyebrow,
.edition,
.plate-label,
.study-foot,
.example-caption small,
.small-note,
.material-strip figcaption,
.closing-top > span,
.access-note {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  display: inline-block;
  border-radius: 50%;
}
.edition {
  color: var(--muted);
}
.hero-copy {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: end;
  gap: 32px;
  padding: 32px 0 40px;
}
h1 {
  font-size: clamp(64px, 6.6vw, 104px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.98;
}
h1 > span {
  color: var(--accent);
}
.hero-aside {
  padding: 0 0 3px 24px;
}
.hero-aside > p:first-child {
  font-size: 17px;
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 25px;
}
.button {
  background: var(--ink);
  color: var(--paper);
  min-height: 48px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  font-size: 13px;
  transition: background 0.2s;
}
.button:hover {
  background: var(--accent);
}
.button > span {
  font-size: 21px;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  margin-left: 25px;
  gap: 16px;
  font-size: 12px;
  min-height: 44px;
  align-items: center;
}
.access-note {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 13px;
}
.hero-study {
  display: grid;
  grid-template-columns: 1fr 2.03fr;
  gap: 24px;
}
.plate-label {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 10px 0;
  line-height: 1.4;
  font-size: 9px;
}
.source-column {
  display: flex;
  flex-direction: column;
}
.source-image {
  height: 230px;
  background: var(--field);
}
.source-image img {
  object-fit: contain;
}
.intent {
  padding: 22px 0 12px;
  flex: 1;
  position: relative;
}
.intent > .eyebrow {
  color: var(--accent);
  font-size: 9px;
}
.intent blockquote {
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.42;
  margin-top: 14px;
  max-width: 340px;
  padding-right: 10px;
}
.intent-arrow {
  display: block;
  font-size: 35px;
  line-height: 1;
  margin-top: 15px;
  color: var(--accent);
}
.hero-result {
  height: 520px;
  position: relative;
  background: var(--field);
}
.hero-result img {
  object-position: center;
}
.hero-result figcaption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  background: var(--paper);
  padding: 9px 13px;
  font-size: 11px;
}
.study-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  font-size: 9px;
  color: var(--muted);
}
.study-foot a {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
}
.study-foot a span {
  margin-left: 20px;
}
.section {
  padding-block: 100px;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.1fr 1fr;
  gap: 35px;
  align-items: start;
  margin-bottom: 55px;
}
.section-heading > .eyebrow {
  padding-top: 8px;
}
.section-heading > p:last-child {
  font-size: 15px;
  line-height: 1.8;
  max-width: 320px;
  padding-top: 7px;
  color: var(--muted);
}
h2 {
  font-weight: 400;
  font-size: clamp(32px, 3.2vw, 49px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  position: relative;
  padding-left: 46px;
}
.step-number {
  position: absolute;
  left: 0;
  top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
}
h3 {
  font-weight: 400;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.steps p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 12px;
  max-width: 285px;
}
.examples {
  border-top: 1px solid var(--line);
  padding-top: 65px;
}
.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}
.example.offset {
  padding-top: 85px;
}
.example-image {
  position: relative;
  height: 380px;
  background: var(--field);
}
.example-image > .inset {
  position: absolute;
  width: 30%;
  height: 31%;
  bottom: 15px;
  left: 15px;
  background: var(--paper);
  border: 5px solid var(--paper);
}
.inset img {
  object-fit: contain;
}
.inset > span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4px 5px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 7px;
}
.example-caption {
  margin-top: 19px;
}
.example-caption > .eyebrow {
  color: var(--muted);
  font-size: 9px;
  margin-bottom: 12px;
}
.example-caption h3 {
  font-size: 24px;
  max-width: 470px;
}
.example-caption p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 13px;
}
.example-caption small {
  display: block;
  letter-spacing: 0;
  font-size: 9px;
  color: var(--muted);
  margin-top: 8px;
}
.thinking {
  background: var(--field);
  padding: 78px 0;
}
.thinking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.thinking h2 {
  font-size: clamp(44px, 4.6vw, 68px);
  margin: 30px 0 20px;
}
.thinking p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.8;
}
.language .machine-words {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: #a3a698;
}
.language-rule {
  border-top: 1px solid #c4c8bc;
  margin-top: 22px;
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
}
.language blockquote {
  font-size: clamp(24px, 2.5vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.35;
  margin-top: 25px;
  max-width: 510px;
}
.language > p:last-child {
  margin-top: 25px;
  color: var(--muted);
}
.iteration-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr;
  gap: 54px;
}
.iteration-controls > .eyebrow {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 9px;
}
.iteration-button {
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  text-align: left;
  display: block;
  width: 100%;
  padding: 20px 34px 20px 0;
  position: relative;
  transition:
    padding 0.2s,
    background 0.2s;
}
.iteration-button > span:first-child {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 9px;
}
.iteration-button strong {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  display: block;
}
.iteration-button.active {
  padding-left: 17px;
  background: var(--field);
  border-top-color: var(--ink);
}
.iteration-button.active > span:first-child {
  color: var(--accent);
}
.step-arrow {
  position: absolute;
  right: 14px;
  top: 19px;
  font-size: 20px;
  opacity: 0;
}
.active .step-arrow {
  opacity: 1;
}
.iteration-button:hover {
  background: var(--field);
}
.small-note {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0;
  line-height: 1.8;
}
.iteration-controls > .small-note {
  margin-top: 18px;
}
.iteration-figure {
  min-width: 0;
}
.iteration-figure > img {
  height: 480px;
  background: var(--field);
  object-fit: contain;
}
.iteration-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.6;
  color: var(--muted);
}
.materials {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 70px;
}
.material-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  align-items: center;
}
.material-strip figure {
  height: 210px;
}
.material-strip figure:nth-child(2) {
  transform: translateY(28px);
}
.material-strip img {
  object-fit: cover;
  background: var(--field);
}
.material-strip figure:first-child img {
  object-fit: contain;
}
.material-strip figcaption {
  font-size: 8px;
  padding-top: 12px;
}
.materials-copy h2 {
  margin: 20px 0 24px;
}
.materials-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 345px;
  margin-bottom: 15px;
}
.materials-copy > .small-note {
  display: block;
  margin-top: 22px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  border-top: 1px solid var(--line);
  gap: 40px;
}
.about > .eyebrow {
  align-self: start;
  margin-top: 8px;
}
.about h2 {
  margin-bottom: 28px;
}
.about > div > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 555px;
  margin-top: 16px;
}
.audience {
  display: flex;
  gap: 26px;
  font-size: 12px;
  margin-top: 32px;
}
.closing {
  background: var(--field);
  padding: 38px 44px 42px;
  border-top: 1px solid var(--ink);
}
.closing-top > span {
  font-size: 9px;
  color: var(--muted);
}
.closing h2 {
  font-size: clamp(48px, 6.5vw, 96px);
  letter-spacing: -0.055em;
  margin-block: 50px;
  line-height: 1.04;
}
.closing h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--accent);
}
.closing-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.closing-bottom > p {
  font-size: 16px;
  line-height: 1.7;
}
.closing-bottom .button {
  min-width: 225px;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-block: 43px;
}
.footer .wordmark {
  font-size: 17px;
}
.footer > span,
.footer > a:last-child {
  font-size: 10px;
  color: var(--muted);
}
@media (min-width: 1700px) {
  .hero-result {
    height: 620px;
  }
  .source-image {
    height: 300px;
  }
  .example-image {
    height: 440px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header > nav {
    gap: 20px;
  }
  .header {
    gap: 20px;
  }
  .hero-aside {
    padding-left: 0;
  }
  .hero-aside > p:first-child {
    font-size: 15px;
  }
  .text-link {
    margin-left: 15px;
    gap: 8px;
  }
  .button {
    gap: 25px;
  }
  .hero-study {
    gap: 20px;
    grid-template-columns: 1fr 1.75fr;
  }
  .hero-result {
    height: 450px;
  }
  .source-image {
    height: 180px;
  }
  .intent blockquote {
    font-size: 17px;
  }
  .section-heading {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 22px;
  }
  .section-heading > .eyebrow {
    grid-column: 1/-1;
  }
  .section-heading > p:last-child {
    justify-self: end;
  }
  .section {
    padding-block: 75px;
  }
  .example-image {
    height: 300px;
  }
  .example-grid {
    gap: 25px;
  }
  .thinking-inner {
    gap: 45px;
  }
  .iteration-layout {
    gap: 30px;
    grid-template-columns: 1fr 1.35fr;
  }
  .iteration-figure > img {
    height: 430px;
  }
  .materials {
    gap: 40px;
  }
  .material-strip figure {
    height: 180px;
  }
  .study-foot > span:last-child {
    display: none;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 85px;
  }
  .header > .wordmark {
    font-size: 19px;
    letter-spacing: 0.27em;
  }
  .header > nav:not(#mobile-nav) {
    display: none;
  }
  .header > .nav-cta {
    margin-left: auto;
    font-size: 12px;
    gap: 14px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: none;
    min-height: 44px;
    padding: 0;
    font-size: 12px;
  }
  .menu-toggle span {
    font-size: 20px;
  }
  .header #mobile-nav {
    position: absolute;
    z-index: 10;
    left: -20px;
    right: -20px;
    top: 84px;
    background: var(--paper);
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--ink);
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .header #mobile-nav a {
    padding: 14px 0;
  }
  .edition {
    display: none;
  }
  .hero {
    padding-top: 21px;
  }
  .hero-copy {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 27px 0 30px;
  }
  h1 {
    font-size: 60px;
  }
  .hero-aside > p:first-child {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .hero-aside .text-link {
    display: none;
  }
  .hero-aside .access-note {
    font-size: 8px;
  }
  .hero-study {
    grid-template-columns: 1fr 1.65fr;
    gap: 15px;
  }
  .hero-result {
    height: 375px;
  }
  .source-image {
    height: 145px;
  }
  .intent {
    padding-top: 15px;
  }
  .intent blockquote {
    font-size: 15px;
    margin-top: 10px;
  }
  .intent-arrow {
    font-size: 28px;
    margin-top: 10px;
  }
  .plate-label {
    font-size: 8px;
  }
  .live-label {
    display: none;
  }
  .hero-result figcaption {
    font-size: 9px;
    bottom: 12px;
    left: 12px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
  }
  .steps {
    gap: 22px;
  }
  .steps article {
    padding-left: 0;
    padding-top: 45px;
  }
  .step-number {
    top: 16px;
  }
  .steps h3 {
    font-size: 19px;
  }
  .steps p {
    font-size: 13px;
  }
  .example-image {
    height: 270px;
  }
  .example-caption h3 {
    font-size: 20px;
  }
  .example.offset {
    padding-top: 55px;
  }
  .thinking {
    padding: 55px 0;
  }
  .thinking-inner {
    gap: 35px;
  }
  .thinking h2 {
    font-size: 41px;
  }
  .language blockquote {
    font-size: 26px;
  }
  .iteration-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .iteration-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .iteration-button {
    padding: 16px 10px !important;
    border-bottom: 1px solid var(--line);
  }
  .iteration-button strong {
    font-size: 14px;
  }
  .iteration-button > span:first-child {
    font-size: 8px;
  }
  .step-arrow {
    display: none;
  }
  .iteration-controls > .small-note {
    margin-top: 10px;
  }
  .iteration-figure > img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .materials {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .material-strip {
    max-width: 520px;
  }
  .material-strip figure {
    height: 220px;
  }
  .materials-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 35px;
  }
  .materials-copy > .eyebrow {
    grid-column: 1/-1;
  }
  .materials-copy h2 {
    grid-row: 2/5;
    margin: 0;
  }
  .materials-copy > p:not(.eyebrow) {
    margin: 0;
  }
  .materials-copy > .small-note {
    margin: 0;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .closing {
    padding: 28px;
  }
  .closing h2 {
    margin-block: 38px;
  }
  .closing-bottom .button {
    min-width: 180px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer > span {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .header > .nav-cta {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .hero-copy {
    display: block;
  }
  h1 {
    font-size: clamp(48px, 13vw, 65px);
    letter-spacing: -0.06em;
  }
  .hero-aside {
    margin-top: 22px;
  }
  .hero-aside > p:first-child {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 17px;
    max-width: 330px;
  }
  .hero-aside .text-link {
    display: inline-flex;
    margin-left: 21px;
    font-size: 11px;
  }
  .hero-aside .access-note {
    font-size: 9px;
  }
  .hero-study {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .source-column {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    column-gap: 17px;
  }
  .source-column > .plate-label {
    grid-column: 1/-1;
  }
  .source-image {
    height: 170px;
  }
  .intent {
    padding: 0 0 6px;
  }
  .intent blockquote {
    font-size: 14px;
    line-height: 1.4;
    padding: 0;
    margin-top: 8px;
  }
  .intent .eyebrow {
    font-size: 8px;
  }
  .intent-arrow {
    font-size: 24px;
    margin-top: 8px;
  }
  .hero-result {
    height: auto;
    aspect-ratio: 1.25;
  }
  .hero-result figcaption {
    font-size: 10px;
  }
  .study-foot {
    align-items: start;
    font-size: 8px;
    gap: 20px;
  }
  .study-foot > a {
    font-size: 10px;
    max-width: 125px;
  }
  .study-foot a span {
    margin-left: 4px;
  }
  .section {
    padding-block: 54px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > .eyebrow {
    padding: 0;
    margin-bottom: 23px;
    font-size: 9px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .section-heading > p:last-child {
    margin-top: 20px;
    padding: 0;
    line-height: 1.7;
    max-width: 100%;
  }
  .steps {
    display: block;
  }
  .steps article {
    padding: 20px 0 24px 40px;
  }
  .step-number {
    top: 25px;
  }
  .steps p {
    margin-top: 7px;
  }
  .example-grid {
    display: block;
  }
  .example.offset {
    padding-top: 40px;
  }
  .example-image {
    height: auto;
    aspect-ratio: 1.3;
  }
  .example-caption h3 {
    font-size: 22px;
  }
  .example-caption p {
    font-size: 13px;
  }
  .thinking-inner {
    display: block;
  }
  .thinking h2 {
    font-size: 45px;
    margin: 25px 0 16px;
  }
  .language {
    margin-top: 38px;
  }
  .language blockquote {
    font-size: 29px;
  }
  .thinking p:not(.eyebrow) {
    font-size: 14px;
  }
  .iteration-buttons {
    gap: 7px;
  }
  .iteration-button {
    padding: 14px 8px !important;
  }
  .iteration-button strong {
    font-size: 12px;
    line-height: 1.5;
  }
  .iteration-button > span:first-child {
    font-size: 7px;
    letter-spacing: 0;
  }
  .iteration-figure figcaption {
    font-size: 8px;
  }
  .material-strip {
    gap: 10px;
  }
  .material-strip figure {
    height: 155px;
  }
  .material-strip figcaption {
    font-size: 7px;
    letter-spacing: 0;
  }
  .materials {
    gap: 60px;
  }
  .materials-copy {
    display: block;
  }
  .materials-copy > .eyebrow {
    margin-bottom: 20px;
  }
  .materials-copy h2 {
    margin-bottom: 22px;
  }
  .materials-copy > p:not(.eyebrow) {
    margin-bottom: 15px;
  }
  .materials-copy > .small-note {
    margin-top: 23px;
  }
  .about > div > p {
    font-size: 14px;
  }
  .audience {
    gap: 20px;
    font-size: 11px;
  }
  .closing {
    padding: 24px 20px;
  }
  .closing-top > span {
    display: none;
  }
  .closing-top .eyebrow {
    font-size: 9px;
  }
  .closing h2 {
    font-size: clamp(38px, 10.8vw, 55px);
    margin-block: 35px;
  }
  .closing-bottom {
    display: block;
  }
  .closing-bottom > p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .closing-bottom .button {
    min-width: 200px;
  }
  .closing .access-note {
    font-size: 8px;
  }
  .footer .wordmark {
    font-size: 15px;
  }
  .footer {
    padding-block: 30px;
  }
  .footer > a:last-child {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
/* Keep the tablet introduction balanced, and the narrow-phone result close at hand. */
@media (min-width: 521px) and (max-width: 1100px) {
  .hero-copy {
    align-items: center;
  }
  .hero-aside .text-link {
    margin: 7px 0 0;
    display: flex;
    min-height: 32px;
  }
  .hero-aside .access-note {
    margin-top: 7px;
  }
}
@media (max-width: 360px) {
  .hero-aside .button {
    padding-inline: 13px;
    gap: 15px;
    font-size: 12px;
  }
  .hero-aside .text-link {
    margin-left: 9px;
    font-size: 10px;
    gap: 7px;
  }
  .hero-copy {
    padding-top: 20px;
    padding-bottom: 24px;
  }
  .hero-aside {
    margin-top: 17px;
  }
  .hero-aside > p:first-child {
    font-size: 13px;
  }
  .hero-aside > p:first-child br {
    display: none;
  }
  .source-column {
    grid-template-columns: 0.7fr 1.3fr;
    column-gap: 13px;
  }
  .source-image {
    height: 165px;
  }
  .intent blockquote {
    font-size: 13px;
  }
  .intent-arrow {
    margin-top: 3px;
  }
}
.header > nav:not(#mobile-nav) a {
  padding-block: 14px;
}
.footer > a {
  padding-block: 12px;
}
