@charset "UTF-8";
:root {
  color-scheme: light;
  --paper: #f8f6f0;
  --ink: #1f3830;
  --muted: #5f6a61;
  --accent: #38644c;
  --line: #dedfd5;
  --accent-soft: #dce9cf;
  --surface: #fffdf8;
  --surface-tint: #edf1e6;
  --line-strong: #b3c1a7;
  --focus: #997daf;
  --violet: #765090;
  --violet-soft: #eee7f4;
  --clay: #98573b;
  --clay-soft: #f6e8de;
  --white: #fff;
  --radius: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
::selection {
  background: var(--accent-soft);
  color: var(--ink);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.13;
  font-weight: 600;
}
img,
svg {
  display: block;
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1184px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  padding: 10px 18px;
  background: var(--ink);
  color: white;
  z-index: 50;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 730;
  letter-spacing: -1.1px;
  line-height: 1;
}
.brand-light {
  font-weight: 420;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 520;
}
.nav-secondary:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface-tint);
}
.nav-status:hover {
  background: var(--accent-soft);
}
.status-dot,
.small-dot {
  display: inline-block;
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 90px;
  padding-bottom: 84px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tiny-bookmark {
  width: 8px;
  height: 12px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 76%, 0 100%);
}
h1 {
  font-size: clamp(46px, 5.1vw, 68px);
  font-weight: 530;
  line-height: 1.065;
  letter-spacing: -3.4px;
  margin-top: 24px;
}
h1 > span {
  color: #72875e;
}
.hero-description {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 550;
  transition:
    background 0.15s,
    transform 0.15s;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #34604b;
  transform: translateY(-1px);
}
.platform-note {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
}
.release-note {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 10px;
  line-height: 1.7;
  max-width: 340px;
  color: var(--muted);
  margin-top: 23px;
}
.hero-figure {
  position: relative;
  isolation: isolate;
  margin-top: 5px;
  min-width: 0;
}
.orbit {
  position: absolute;
  border: 1px solid var(--line);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  inset: -34px -24px 28px -24px;
}
.orbit-two {
  inset: -7px -2px 4px 0;
}
.browser-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
}
.browser-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px 13px;
  font-size: 11px;
  box-shadow: 0 2px 2px #243a2710;
}
.browser-mark {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 750;
}
.chrome-mark {
  background: #f2e8cb;
  color: #725719;
}
.safari-mark {
  background: #dfedf0;
  color: #315e70;
}
.firefox-mark {
  background: #f5e5d4;
  color: #865024;
}
.connection {
  height: 52px;
  display: flex;
  justify-content: center;
  gap: 82px;
  overflow: hidden;
}
.connection span {
  height: 32px;
  width: 1px;
  background: var(--line-strong);
  position: relative;
}
.connection span:first-child {
  transform: rotate(-27deg);
  transform-origin: top;
}
.connection span:last-child {
  transform: rotate(27deg);
  transform-origin: top;
}
.connection span:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background: #94ac7c;
}
.preview-window {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow:
    0 20px 55px -25px #24432340,
    0 3px 10px #24432308;
  overflow: hidden;
}
.window-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 17px;
  background: var(--surface);
  border-bottom: 1px solid var(--surface-tint);
  font-size: 9px;
  color: var(--muted);
}
.window-dots {
  display: flex;
  gap: 4px;
}
.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
}
.window-dots i:first-child {
  background: #dfc7b3;
}
.window-dots i:nth-child(2) {
  background: #e5dba5;
}
.window-dots i:nth-child(3) {
  background: #c4d5b0;
}
.sample-label {
  font-size: 8px;
  letter-spacing: 1.3px;
}
.preview-body {
  padding: 24px 24px 14px;
}
.preview-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 23px;
}
.preview-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--violet-soft);
  color: var(--violet);
  font-size: 24px;
}
.preview-heading h2 {
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.preview-heading p {
  font-size: 10px;
  margin-top: 3px;
  color: var(--muted);
}
.preview-tabs {
  display: flex;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.preview-tabs button {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 10px;
  padding: 0 3px 9px;
  cursor: pointer;
  position: relative;
  min-height: 32px;
}
.preview-tabs button[aria-selected="true"] {
  color: var(--violet);
  font-weight: 650;
}
.preview-tabs button[aria-selected="true"]:after {
  position: absolute;
  content: "";
  height: 2px;
  background: var(--violet);
  bottom: -1px;
  left: 0;
  right: 0;
}
.preview-tabs button:focus-visible {
  outline-offset: 0;
}
.demo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 63px;
  border-bottom: 1px solid #f2f4ed;
}
.item-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 29px;
  flex: none;
  background: #f2f4ed;
  border: 1px solid var(--surface-tint);
  border-radius: 6px;
  color: #698551;
  font-size: 18px;
}
.item-icon.icon-violet {
  background: var(--violet-soft);
  border-color: #e1d5eb;
  color: var(--violet);
}
.item-icon.icon-clay {
  background: var(--clay-soft);
  border-color: #ecd8cb;
  color: var(--clay);
}
.demo-row > div {
  min-width: 0;
  flex: 1;
}
.demo-row strong {
  display: block;
  font-size: 10px;
  font-weight: 570;
  line-height: 1.5;
}
.demo-row div > span {
  display: block;
  font-size: 8px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.5;
}
.row-badge {
  font-size: 8px;
  color: #476735;
  background: var(--surface-tint);
  border-radius: 4px;
  padding: 3px 6px;
  line-height: 1.4;
  white-space: nowrap;
}
.badge-amber {
  background: #f8f0db;
  color: #725719;
}
.badge-neutral {
  background: #f0f1ef;
  color: var(--muted);
}
.preview-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  padding: 15px 0 2px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}
.preview-summary > span:first-child {
  display: flex;
  gap: 6px;
  align-items: center;
}
.small-dot {
  width: 4px;
  height: 4px;
}
.sample-check {
  width: 16px;
  height: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface-tint);
  color: var(--accent);
  flex: none;
  display: grid;
  place-items: center;
  font-size: 10px;
  margin: 0 5px;
}
.sample-check.unchecked {
  background: var(--surface);
  border-color: var(--line);
}
.hero-figure figcaption {
  font-size: 9px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.caption-line {
  width: 16px;
  height: 1px;
  background: var(--line-strong);
}
.browser-band {
  background: var(--surface-tint);
  border-block: 1px solid var(--line);
}
.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 21px;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
}
.band-inner > div {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #435b3c;
  font-size: 16px;
  font-weight: 550;
  letter-spacing: -0.3px;
}
.band-divider {
  color: var(--line-strong);
  font-size: 14px;
  font-weight: 300;
}
.band-note {
  font-size: 10px;
}
.section-space {
  padding-block: 90px;
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
}
.section-intro > .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 20px;
}
.section-intro h2,
.faq-intro h2 {
  font-size: 42px;
  letter-spacing: -1.7px;
  line-height: 1.15;
  font-weight: 520;
}
.section-intro > p:last-child {
  max-width: 340px;
  font-size: 14px;
  color: var(--muted);
  align-self: center;
  justify-self: end;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 46px;
}
.principle {
  --principle-accent: var(--accent);
  --principle-soft: var(--accent-soft);
  border-top: 1px solid #bdcbb0;
  padding-top: 18px;
}
.principle-choose {
  --principle-accent: var(--violet);
  --principle-soft: var(--violet-soft);
  border-color: #cfc0dc;
}
.principle-review {
  --principle-accent: var(--clay);
  --principle-soft: var(--clay-soft);
  border-color: #ddbea9;
}
.principle-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.principle-number {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 600;
}
.principle svg {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 13px;
  background: var(--principle-soft);
  stroke: var(--principle-accent);
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.principle h3 {
  font-size: 22px;
  letter-spacing: -0.65px;
  font-weight: 530;
  line-height: 1.25;
  margin-bottom: 14px;
}
.principle p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  max-width: 310px;
}
.development-section {
  background: #223e32;
  color: #f8f6ef;
  padding-block: 76px;
}
.development-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 96px;
  align-items: start;
}
.development-copy .eyebrow {
  color: #c6d5b7;
}
.development-copy .status-dot {
  background: #b6d58e;
}
.development-copy h2 {
  font-size: 42px;
  line-height: 1.17;
  font-weight: 470;
  letter-spacing: -1.7px;
  margin-top: 24px;
}
.development-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: #c4cfc1;
  max-width: 350px;
  margin-top: 22px;
}
.development-copy p.availability-note {
  color: #f1eddb;
  font-size: 11px;
  line-height: 1.7;
  border-left: 2px solid #d5b880;
  padding-left: 13px;
}
.development-copy .text-link {
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  color: #dce9c9;
}
.milestone-list {
  border-top: 1px solid #52694f;
}
.milestone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 0 13px;
  font-size: 10px;
  letter-spacing: 0.4px;
  color: #d6dfcc;
}
.version-badge {
  font-size: 8px;
  letter-spacing: 1px;
  border: 1px solid #839975;
  border-radius: 4px;
  padding: 3px 7px;
  color: #d7e4bd;
}
.milestone {
  display: flex;
  gap: 13px;
  padding: 21px 0;
  border-bottom: 1px solid #405a43;
  align-items: start;
}
.milestone-icon {
  background: #3a593e;
  color: #dce9c9;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: none;
  font-size: 11px;
  margin-top: 1px;
}
.milestone > div {
  flex: 1;
}
.milestone h3 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.1px;
}
.milestone p {
  font-size: 12px;
  color: #c6d2bf;
  line-height: 1.8;
  margin-top: 5px;
  max-width: 350px;
}
.milestone-state {
  font-size: 9px;
  color: #c6d9ad;
  margin-top: 3px;
}
.milestone-next .milestone-icon {
  background: transparent;
  border: 1px solid #b9a27e;
}
.milestone-next .milestone-state {
  color: #e5d2a2;
}
.testing-note {
  font-size: 9px;
  color: #bdcdb1;
  line-height: 1.8;
  margin-top: 17px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 100px;
}
.faq-intro h2 {
  margin-top: 20px;
}
.faq-intro > p:last-child {
  color: var(--muted);
  font-size: 12px;
  margin-top: 20px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  font-size: 15px;
  font-weight: 530;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.15s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  padding: 0 30px 24px 0;
}
.closing {
  border-top: 1px solid var(--line);
  padding-block: 50px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.closing > p {
  font-size: 27px;
  line-height: 1.3;
  letter-spacing: -0.9px;
}
.closing .text-link {
  margin-left: auto;
  font-size: 11px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 25px 32px;
  color: var(--muted);
  font-size: 9px;
}
.footer-brand {
  font-size: 19px;
  color: var(--ink);
}
.site-footer > p {
  margin-right: auto;
}
@media (min-width: 1440px) {
  .hero {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .hero-figure {
    margin-left: 15px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 28px;
    padding-block: 70px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
  }
  h1 {
    font-size: 54px;
    letter-spacing: -2.6px;
  }
  .hero-description {
    font-size: 14px;
  }
  .preview-body {
    padding: 20px 16px 12px;
  }
  .preview-heading h2 {
    font-size: 14px;
  }
  .browser-chip {
    padding: 8px 11px;
    gap: 6px;
  }
  .band-note {
    display: none;
  }
  .band-inner {
    justify-content: center;
    gap: 50px;
  }
  .development-grid {
    gap: 55px;
  }
  .faq-section {
    gap: 60px;
  }
  .section-intro h2,
  .development-copy h2,
  .faq-intro h2 {
    font-size: 37px;
  }
  .orbit-one {
    inset: -25px -12px 28px;
  }
  .principles {
    gap: 28px;
  }
  .hero-figure figcaption {
    font-size: 8px;
    gap: 5px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    padding-block: 22px;
  }
  .brand {
    font-size: 23px;
  }
  .site-header nav {
    gap: 12px;
  }
  .nav-secondary {
    display: none;
  }
  .nav-status {
    font-size: 10px;
    padding: 8px 11px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-block: 53px 50px;
  }
  .hero-copy {
    max-width: 560px;
  }
  h1 {
    font-size: clamp(46px, 8.9vw, 62px);
    letter-spacing: -2.5px;
    line-height: 1.07;
    margin-top: 20px;
  }
  .hero-description {
    max-width: 440px;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 22px;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .release-note {
    max-width: 390px;
    font-size: 10px;
  }
  .hero-figure {
    width: min(100%, 500px);
    justify-self: center;
    margin-top: 5px;
  }
  .preview-body {
    padding: 24px 23px 15px;
  }
  .preview-heading h2 {
    font-size: 17px;
  }
  .preview-heading p {
    font-size: 11px;
  }
  .preview-tabs button {
    font-size: 11px;
    min-height: 40px;
  }
  .demo-row {
    min-height: 68px;
  }
  .demo-row strong {
    font-size: 11px;
  }
  .demo-row div > span {
    font-size: 9px;
  }
  .row-badge {
    font-size: 9px;
  }
  .preview-summary {
    font-size: 9px;
  }
  .hero-figure figcaption {
    font-size: 9px;
  }
  .browser-chip {
    padding: 9px 14px;
    font-size: 12px;
  }
  .browser-strip {
    gap: 12px;
  }
  .orbit-one {
    inset: -23px 0 23px;
  }
  .orbit-two {
    inset: 0 0 20px;
  }
  .band-inner {
    flex-direction: column;
    gap: 9px;
    padding-block: 20px;
    font-size: 10px;
  }
  .band-inner > div {
    font-size: 16px;
    gap: 26px;
  }
  .section-space {
    padding-block: 60px;
  }
  .section-intro {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .section-intro h2,
  .development-copy h2,
  .faq-intro h2 {
    font-size: 36px;
    letter-spacing: -1.4px;
  }
  .section-intro > p:last-child {
    justify-self: start;
    margin-top: 20px;
    font-size: 13px;
    max-width: 360px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 35px;
  }
  .principle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 24px;
    padding-top: 16px;
  }
  .principle-top {
    grid-column: 1/-1;
    margin-bottom: 15px;
  }
  .principle h3 {
    font-size: 21px;
    line-height: 1.3;
  }
  .principle p {
    font-size: 14px;
    line-height: 1.8;
  }
  .principle svg {
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 11px;
  }
  .development-section {
    padding-block: 57px;
  }
  .development-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .development-copy > p:not(.eyebrow) {
    max-width: 460px;
  }
  .development-copy h2 {
    margin-top: 18px;
  }
  .milestone-header {
    font-size: 11px;
  }
  .milestone h3 {
    font-size: 14px;
  }
  .milestone p {
    font-size: 11px;
    max-width: unset;
  }
  .milestone-state {
    font-size: 10px;
  }
  .testing-note {
    font-size: 10px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-intro h2 br {
    display: none;
  }
  .faq-intro h2 {
    font-size: 33px;
  }
  .faq-intro > p:last-child {
    margin-top: 14px;
  }
  .faq-list summary {
    font-size: 15px;
    padding-block: 20px;
  }
  .faq-list details p {
    font-size: 13px;
  }
  .closing {
    flex-wrap: wrap;
    padding-block: 33px;
    gap: 18px;
  }
  .closing > p {
    font-size: 24px;
  }
  .closing .text-link {
    width: 100%;
    margin-left: 60px;
    font-size: 11px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 15px;
    padding-block: 24px;
    font-size: 9px;
  }
  .site-footer > p {
    order: 3;
    width: 100%;
  }
  .site-footer > span {
    margin-left: auto;
  }
}
@media (max-width: 380px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 21px;
    gap: 7px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .nav-status {
    font-size: 9px;
    padding: 7px 9px;
    gap: 6px;
  }
  h1 {
    font-size: 44px;
    letter-spacing: -2.5px;
  }
  .preview-body {
    padding: 20px 13px 12px;
  }
  .preview-heading {
    gap: 9px;
  }
  .preview-heading h2 {
    font-size: 15px;
  }
  .preview-heading p {
    font-size: 10px;
  }
  .preview-heading .preview-icon {
    width: 32px;
    height: 32px;
  }
  .browser-chip {
    padding: 8px 10px;
    font-size: 10px;
  }
  .browser-strip {
    gap: 8px;
  }
  .demo-row {
    gap: 7px;
  }
  .demo-row strong {
    font-size: 10px;
  }
  .demo-row div > span {
    font-size: 8px;
  }
  .row-badge {
    font-size: 8px;
  }
  .preview-summary {
    font-size: 8px;
  }
  .hero-figure figcaption {
    font-size: 8px;
  }
  .principle {
    grid-template-columns: 1fr;
  }
  .principle h3 {
    margin-bottom: 12px;
  }
  .principle p {
    max-width: unset;
  }
  .closing .text-link {
    margin-left: 0;
  }
  .milestone {
    gap: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
