/* Murmello: parchment, forest, mint. System fonts; no external requests. */
:root {
  --paper: #f5f1e8;
  --white: #fffcf6;
  --forest: #183c30;
  --ink: #243d33;
  --leaf: #326a50;
  --muted: #616a5e;
  --sand: #eae6da;
  --mint: #bdecd1;
  --line: #d9ddcf;
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  padding-top: 104px;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #487b55;
  outline-offset: 5px;
}
::selection {
  background: var(--mint);
  color: var(--forest);
}
img {
  max-width: 100%;
  display: block;
}
svg {
  display: inline-block;
  vertical-align: middle;
}
p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(66px, 7.6vw, 112px);
  letter-spacing: -0.065em;
}
h2 {
  font-size: clamp(38px, 4.1vw, 60px);
}
h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
p {
  font-size: 16px;
}
.shell {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: 108px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #528663;
  border-radius: 50%;
  display: inline-block;
  flex: none;
}
.button {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 100px;
  background: var(--forest);
  color: var(--white);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #2c5641;
  transform: translateY(-2px);
}
.button svg {
  width: 17px;
  height: 20px;
}
.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 12px;
}
.button-mint {
  background: var(--mint);
  color: var(--forest);
}
.button-mint:hover {
  background: #d3f6dd;
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link span {
  font-size: 18px;
}
.fine-print {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 50;
  background: var(--forest);
  color: white;
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.site-header.shell {
  position: fixed;
  z-index: 40;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(940px, calc(100% - 64px));
  height: 72px;
  padding: 10px 13px 10px 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border: 1px solid #d0d7c9;
  border-radius: 100px;
  background: #faf8f0f0;
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
  box-shadow:
    0 8px 28px #183c300b,
    inset 0 1px 0 #ffffffd9;
}
.site-header .wordmark {
  font-size: 25px;
  flex-shrink: 0;
}
.site-header .wordmark svg {
  width: 31px;
  height: 30px;
}
.site-header .button-small {
  min-height: 48px;
  padding-inline: 22px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -1.5px;
  text-decoration: none;
  line-height: 1;
}
.wordmark svg {
  width: 35px;
  height: 34px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-detail {
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.nav-detail:hover {
  color: var(--leaf);
  text-decoration: underline;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding-block: 72px 58px;
  align-items: center;
}
.hero-copy {
  padding-block: 20px 30px;
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow {
  margin-bottom: 28px;
}
.hero-description {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 28px;
  max-width: 395px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-copy .fine-print {
  margin-top: 17px;
}
.hero-scene {
  min-width: 0;
  min-height: 492px;
  align-self: stretch;
  position: relative;
  border-radius: 160px 160px 22px 22px;
  overflow: hidden;
  background: #eaece1;
}
.scene-heading {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  z-index: 1;
  color: #596b54;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.scene-heading span:last-child {
  font-size: 24px;
}
.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 50%;
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}
.floating-note {
  position: absolute;
  left: 6%;
  right: 21%;
  bottom: 54px;
  transform: rotate(-4deg);
  background: var(--white);
  border: 1px solid #ffffffbd;
  border-radius: 12px;
  box-shadow: 0 20px 45px #213d2626;
  padding: 17px 22px;
}
.note-bar {
  font-size: 9px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9e9dd;
}
.note-bar > span:last-child {
  margin-left: auto;
  font-size: 14px;
}
.note-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c19a6f;
}
.floating-note p {
  font: 23px/1.4 var(--serif);
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.cursor {
  display: inline-block;
  height: 23px;
  width: 2px;
  background: var(--leaf);
  vertical-align: -4px;
  margin-left: 3px;
  animation: blink 1.4s step-end 3;
}
.note-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  color: var(--leaf);
  margin-top: 20px;
}
.tiny-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}
.tiny-wave i {
  width: 2px;
  background: var(--leaf);
  border-radius: 9px;
  height: 7px;
}
.tiny-wave i:nth-child(2n) {
  height: 13px;
}
.tiny-wave i:nth-child(3) {
  height: 18px;
}
.scene-stamp {
  position: absolute;
  right: 20px;
  bottom: 19px;
  font-size: 9px;
  line-height: 1.5;
  color: #4b654f;
  transform: rotate(-4deg);
}
.scene-stamp > span {
  font-size: 25px;
  position: absolute;
  top: -4px;
  left: -29px;
}
.promise-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 25px;
  border-block: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.promise-strip > span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.promise-strip svg {
  width: 17px;
  height: 17px;
  color: var(--leaf);
}
.how-section {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 90px;
}
.section-intro > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin-top: 24px;
}
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.steps li {
  display: grid;
  grid-template-columns: 32px 1fr 90px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
}
.steps li:first-child {
  padding-top: 0;
}
.steps li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.step-number {
  font-family: var(--serif);
  font-size: 15px;
  color: #52664c;
  align-self: start;
  margin-top: 5px;
}
.steps h3 {
  font-size: 21px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  max-width: 365px;
  line-height: 1.7;
}
.key-pair {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}
kbd {
  font-family: var(--sans);
  font-size: 12px;
  border: 1px solid #d1d5c5;
  background: #eceee2;
  border-radius: 6px;
  box-shadow: 0 3px 0 #d5d9cb;
  padding: 7px 10px;
}
.step-wave {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  height: 34px;
}
.step-wave i {
  background: var(--leaf);
  height: 9px;
  width: 3px;
  border-radius: 8px;
}
.step-wave i:nth-child(3n) {
  height: 25px;
}
.step-wave i:nth-child(2n) {
  height: 18px;
}
.step-wave i:nth-child(5) {
  height: 32px;
}
.step-check {
  justify-self: end;
  display: grid;
  place-items: center;
  height: 34px;
  width: 34px;
  background: #dce7d3;
  color: var(--leaf);
  border-radius: 50%;
  font-size: 20px;
}
.demo-section {
  background: #e8ecdf;
  padding-block: 90px;
}
.demo-heading {
  display: flex;
  gap: 70px;
  align-items: end;
  justify-content: space-between;
}
.demo-heading > p {
  font-size: 14px;
  color: #566550;
  max-width: 305px;
  margin-bottom: 8px;
}
.demo-controls {
  display: flex;
  gap: 8px;
  margin-block: 38px 22px;
  flex-wrap: wrap;
}
.example-button {
  background: transparent;
  border: 1px solid #cbd4c0;
  padding: 10px 18px;
  min-height: 42px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--forest);
}
.example-button[aria-pressed="true"] {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.example-button:hover {
  border-color: var(--forest);
}
.demo-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 330px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px #2b482009;
}
.spoken-panel {
  background: var(--forest);
  color: var(--mint);
  padding: 27px 36px;
  display: flex;
  flex-direction: column;
}
.panel-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}
.spoken-panel .status-dot {
  background: var(--mint);
}
blockquote {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  padding-block: 38px;
  max-width: 425px;
  min-height: 205px;
}
.spoken-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  font-size: 9px;
  color: #c2d4c5;
}
.wide-wave {
  height: 27px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.wide-wave i {
  display: block;
  width: 3px;
  height: 9px;
  background: #9ac6aa;
  border-radius: 6px;
}
.wide-wave i:nth-child(4n) {
  height: 20px;
}
.wide-wave i:nth-child(3n) {
  height: 14px;
}
.wide-wave i:nth-child(5n) {
  height: 25px;
}
.written-panel {
  padding: 24px 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.written-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.written-toolbar .panel-label {
  font-size: 9px;
  color: var(--muted);
}
.format-control,
.theme-control {
  display: flex;
  border: 1px solid #d9ded0;
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
  width: max-content;
}
.format-control button,
.theme-control button {
  background: transparent;
  border: 0;
  border-radius: 100px;
  min-height: 35px;
  padding: 5px 12px;
  font-size: 10px;
  color: #536449;
}
.format-control button[aria-pressed="true"],
.theme-control button[aria-pressed="true"] {
  background: #e4ebda;
  color: var(--forest);
}
.demo-output {
  padding: 31px 0;
  min-height: 208px;
}
.demo-output h3 {
  font-size: 20px;
  font-family: var(--serif);
  font-weight: normal;
  letter-spacing: 0;
}
.demo-output ul,
.demo-output ol {
  font-size: 15px;
  padding-left: 21px;
  margin: 13px 0 0;
  line-height: 1.85;
}
.demo-output li::marker {
  color: var(--leaf);
}
.demo-output > p {
  font-size: 19px;
  font-family: var(--serif);
  line-height: 1.65;
  max-width: 420px;
}
.demo-output > p + p {
  margin-top: 16px;
}
.demo-output pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font:
    14px/1.9 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  margin: 0;
}
.demo-output.is-replaying {
  animation: replay 0.85s ease-in-out both;
}
.written-bottom {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.replay-button {
  border: 0;
  background: none;
  color: var(--leaf);
  font-size: 10px;
  padding: 8px 0;
  min-height: 35px;
  white-space: nowrap;
}
.replay-button > span {
  font-size: 18px;
  vertical-align: -1px;
  margin-right: 4px;
}
.demo-disclaimer {
  font-size: 10px;
  color: #596451;
  margin-top: 17px;
}
.section-heading {
  text-align: center;
  margin-bottom: 45px;
}
.section-heading .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.section-heading > p:last-child {
  font-size: 14px;
  color: var(--muted);
  margin-top: 19px;
}
.app-showcase {
  background: #eae6da;
  border: 1px solid #e2e0d3;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  overflow: hidden;
  min-height: 440px;
}
.showcase-copy {
  padding: 48px 44px;
  align-self: center;
}
.small-tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 9px;
  border-radius: 30px;
  border: 1px solid #c7ccbb;
  margin-bottom: 23px;
}
.showcase-copy h3 {
  font-size: 35px;
}
.showcase-copy > p:not(.screenshot-label) {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 275px;
}
.theme-control {
  margin-top: 25px;
  background: #f5f2e9;
}
.theme-control button {
  padding: 5px 20px;
  font-size: 11px;
}
.screenshot-label {
  font-size: 9px;
  color: var(--muted);
  margin-top: 13px;
}
.screenshot-stage {
  padding: 36px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3e5d7;
  transition: background 0.2s;
}
.screenshot-stage img {
  width: 100%;
  height: auto;
  align-self: end;
  border-radius: 13px 13px 0 0;
  box-shadow:
    0 0 0 1px #27482715,
    0 12px 60px #20352423;
  transform: translateY(4px);
}
.screenshot-stage.dark-preview {
  background: #b7c5b0;
}
.feature-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 48px;
}
.feature-columns article {
  padding-right: 14px;
}
.feature-icon svg {
  height: 22px;
  width: 22px;
  color: var(--leaf);
}
.feature-columns h3 {
  font-size: 21px;
  margin-top: 19px;
}
.feature-columns p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin-block: 15px 16px;
}
.feature-columns .text-link {
  font-size: 11px;
}
.models-section {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 85px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--line);
}
.models-intro > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 22px;
}
.models-intro > p.fine-print {
  font-size: 10px;
}
.models-intro > .text-link {
  margin-top: 24px;
  font-size: 11px;
}
.storage-summary {
  min-width: 0;
}
.storage-card {
  padding: 27px 32px 0;
  border: 1px solid #cddbc1;
  border-radius: 18px;
  background: #e4ecda;
}
.storage-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.storage-heading .small-tag {
  margin: 0;
  border-color: #b6c7a7;
}
.storage-heading > svg {
  width: 23px;
  height: 23px;
  color: var(--leaf);
}
.storage-number {
  margin: 25px 0 17px;
  font: 100px/1 var(--serif);
  letter-spacing: -0.07em;
}
.storage-number span {
  font: 30px var(--sans);
  letter-spacing: -0.04em;
  margin-left: 4px;
}
.storage-card h3 {
  font-size: 20px;
  line-height: 1.4;
}
.storage-card > p:not(.storage-number) {
  font-size: 13px;
  line-height: 1.8;
  color: #54664b;
  margin-top: 9px;
  max-width: 345px;
}
.storage-baseline {
  margin-top: 28px;
  padding-block: 18px;
  border-top: 1px solid #c7d4b9;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  font-size: 12px;
}
.storage-baseline strong {
  font-weight: 550;
  white-space: nowrap;
}
.storage-note {
  margin-top: 12px;
  font-size: 10px;
  color: var(--muted);
}
.model-downloads {
  margin-top: 22px;
  border-block: 1px solid var(--line);
}
.model-downloads > summary {
  font-size: 13px;
}
.model-downloads .model-group {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--leaf);
  margin: 12px 0 15px;
  line-height: 1.6;
}
.model-downloads .model-group:not(:first-of-type) {
  margin-top: 25px;
}
.model-row h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
.model-downloads .model-row p {
  padding: 0;
}
.model-downloads .model-footnote {
  padding-bottom: 23px;
  margin-top: 20px;
}
.model-row {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding-block: 25px;
}
.model-row:first-child {
  padding-top: 9px;
}
.model-row h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
}
.model-row p {
  color: var(--muted);
  font-size: 11px;
  margin-top: 8px;
}
.default-badge {
  display: inline-block;
  background: #dfe8d7;
  padding: 5px 7px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 5px;
}
.model-size {
  font-family: var(--serif);
  font-size: 25px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.model-size small {
  font: 9px var(--sans);
  color: var(--muted);
}
.model-footnote {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 20px;
}
.model-footnote a {
  display: block;
}
.maker-section {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 85px;
  border-bottom: 1px solid var(--line);
}
.maker-monogram {
  font-family: var(--serif);
  font-size: 67px;
  font-style: italic;
  line-height: 1;
  display: grid;
  place-content: center;
  background: #dde8d2;
  width: 92px;
  height: 104px;
  border-radius: 46px 46px 12px 12px;
  position: relative;
  margin-bottom: 27px;
}
.maker-monogram span {
  position: absolute;
  font-size: 45px;
  bottom: 23px;
  right: 18px;
  color: #749260;
}
.maker-identity .eyebrow {
  margin-bottom: 14px;
}
.maker-identity h2 {
  font-size: 43px;
}
.green-period {
  color: #668256;
}
.maker-name {
  font-size: 11px;
  color: var(--muted);
  margin-top: 13px;
}
.maker-story {
  align-self: center;
}
.maker-lead {
  font: 26px/1.65 var(--serif);
  letter-spacing: -0.015em;
}
.maker-story > p + p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 22px;
}
.maker-skills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.maker-skills span {
  font-size: 9px;
  border: 1px solid #cdd3c0;
  border-radius: 20px;
  padding: 5px 11px;
}
.maker-contact {
  margin-top: 33px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.maker-contact p {
  font-size: 13px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 12px;
}
.maker-contact > .text-link {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.profile-links {
  display: flex;
  gap: 22px;
  margin-top: 13px;
}
.profile-links a {
  font-size: 12px;
}
.faq-section {
  padding-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 85px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  padding: 21px 30px 21px 0;
  position: relative;
  line-height: 1.5;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 19px;
  font-size: 21px;
  color: #657258;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  padding: 0 27px 23px 0;
}
.download-box {
  background: var(--forest);
  color: var(--white);
  border-radius: 20px;
  padding: 58px 60px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.download-box .eyebrow {
  color: #c3d4bf;
}
.download-box .status-dot {
  background: var(--mint);
}
.download-box h2 {
  font-size: 53px;
  position: relative;
  z-index: 1;
}
.download-box h2 em {
  color: var(--mint);
}
.download-box > div > p:not(.eyebrow) {
  font-size: 13px;
  color: #d0dbc9;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.download-action {
  position: relative;
  z-index: 1;
  min-width: 260px;
  max-width: 310px;
}
.download-action .fine-print {
  color: #d0dbc9;
  margin-top: 15px;
  max-width: 260px;
}
.download-action .release-state {
  font-size: 20px;
  color: var(--white);
  line-height: 1.4;
  margin: 0 0 17px;
}
.download-action .text-link {
  display: flex;
  margin-top: 15px;
  color: var(--mint);
  font-size: 12px;
}
.download-action code {
  overflow-wrap: anywhere;
  font-size: 10px;
  display: block;
  line-height: 1.7;
  margin-top: 7px;
}
.download-action details {
  margin-top: 12px;
}
.download-action details summary {
  font-size: 11px;
  padding-block: 10px;
}
.download-action summary:after {
  top: 6px;
  color: var(--mint);
}
.download-ornament {
  position: absolute;
  right: 190px;
  top: 30px;
  transform: rotate(-13deg);
  color: #23503c;
  opacity: 0.6;
}
.download-ornament svg {
  width: 350px;
  height: 300px;
}
.site-footer {
  padding-bottom: 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-block: 0 28px;
  border-bottom: 1px solid var(--line);
}
.footer-top p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
}
.footer-top > .text-link {
  margin-left: auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}
.footer-bottom p,
.footer-bottom a {
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-bottom a {
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 68px 0 100px;
}
.legal h1 {
  font-size: 64px;
  margin-bottom: 18px;
}
.legal .legal-lead {
  font-size: 19px;
  font-family: var(--serif);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.legal .updated {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 33px;
}
.legal h2 {
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 35px 0 14px;
}
.legal h3 {
  font-size: 19px;
  margin: 25px 0 12px;
}
.legal p,
.legal li {
  font-size: 14px;
  line-height: 1.9;
  color: #52604e;
}
.legal p + p {
  margin-top: 15px;
}
.legal a {
  overflow-wrap: anywhere;
}
.legal ul {
  padding-left: 22px;
}
.legal .legal-callout {
  background: #e7eddd;
  border: 1px solid #d1ddc4;
  border-radius: 10px;
  padding: 22px 25px;
  margin-block: 25px;
}
.legal pre {
  white-space: pre-wrap;
  font:
    11px/1.8 ui-monospace,
    monospace;
  overflow-wrap: anywhere;
  background: #eceee4;
  border-radius: 8px;
  padding: 18px;
}
.legal-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  margin-bottom: 35px;
}
.legal .notice-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 22px;
  font-size: 12px;
}
.notice-table td,
.notice-table th {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 13px 8px 13px 0;
  vertical-align: top;
}
.legal details p {
  padding-right: 0;
}
.not-found {
  text-align: center;
  padding-block: 120px;
}
.not-found p {
  margin: 25px auto;
  max-width: 390px;
  color: var(--muted);
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes replay {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 0.15;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 85px 70px;
    gap: 55px;
  }
  .hero-scene {
    min-height: 520px;
  }
}
@media (max-width: 1050px) {
  .shell {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 22px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions > .text-link {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 83px;
  }
  .hero-scene {
    min-height: 470px;
  }
  .floating-note {
    left: 5%;
    right: 9%;
    padding: 17px;
  }
  .floating-note p {
    font-size: 23px;
  }
  .how-section,
  .models-section,
  .maker-section,
  .faq-section {
    gap: 45px;
    grid-template-columns: 1fr 1.5fr;
  }
  .showcase-copy {
    padding: 32px;
  }
  .feature-columns {
    gap: 30px;
  }
  .written-toolbar {
    flex-wrap: wrap;
  }
  .demo-output {
    padding-top: 24px;
  }
  .download-box {
    padding: 45px 35px;
  }
  .download-box h2 {
    font-size: 45px;
  }
  .written-bottom {
    flex-wrap: wrap;
    gap: 0;
  }
  .spoken-panel {
    padding: 27px;
  }
  .demo-heading {
    gap: 30px;
  }
  .app-showcase {
    min-height: 0;
  }
  .site-header nav {
    gap: 22px;
  }
}
@media (max-width: 760px) {
  body {
    padding-top: 88px;
  }
  html {
    scroll-padding-top: 96px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .site-header.shell {
    top: 12px;
    width: calc(100% - 24px);
    height: 62px;
    padding: 7px 8px 7px 17px;
    gap: 12px;
  }
  .site-header .wordmark {
    font-size: 23px;
    gap: 7px;
  }
  .site-header .wordmark svg {
    width: 28px;
    height: 28px;
  }
  .site-header .button-small {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 11px;
  }
  .wordmark {
    font-size: 25px;
  }
  .site-header nav {
    gap: 12px;
  }
  .nav-detail {
    display: none;
  }
  .button-small {
    padding: 10px 15px;
  }
  .section-space {
    padding-block: 65px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 40px 35px;
    gap: 20px;
  }
  .hero-copy {
    padding-block: 5px 16px;
  }
  .hero h1 {
    font-size: clamp(70px, 13vw, 94px);
  }
  .hero-description {
    font-size: 16px;
    max-width: 400px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 25px;
  }
  .hero-scene {
    min-height: 400px;
    border-radius: 130px 130px 18px 18px;
    max-width: 520px;
    width: 100%;
    justify-self: center;
  }
  .hero-art {
    object-position: 80% 42%;
  }
  .floating-note {
    left: 7%;
    right: 24%;
    bottom: 46px;
    max-width: 320px;
  }
  .floating-note p {
    font-size: 25px;
  }
  .scene-stamp {
    right: 18px;
  }
  .promise-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px 10px;
    padding-block: 23px;
    font-size: 10px;
  }
  .promise-strip > span {
    gap: 7px;
  }
  .promise-strip svg {
    width: 16px;
  }
  .how-section,
  .models-section,
  .maker-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-intro > p:last-child br {
    display: none;
  }
  .section-intro > p:last-child {
    max-width: 440px;
  }
  .steps li {
    grid-template-columns: 27px 1fr 65px;
    gap: 10px;
    padding-block: 22px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .steps p {
    font-size: 13px;
  }
  .key-pair {
    gap: 3px;
  }
  kbd {
    padding: 5px 7px;
    font-size: 10px;
  }
  .demo-section {
    padding-block: 60px;
  }
  .demo-heading {
    display: block;
  }
  .demo-heading > p {
    max-width: 450px;
    margin-top: 23px;
  }
  .demo-controls {
    margin-block: 27px 18px;
    gap: 6px;
  }
  .example-button {
    font-size: 11px;
    padding: 9px 14px;
  }
  .demo-workspace {
    grid-template-columns: 1fr;
  }
  .spoken-panel {
    padding: 25px;
    min-height: 250px;
  }
  blockquote {
    min-height: 0;
    font-size: 27px;
    padding-block: 27px;
  }
  .written-panel {
    padding: 23px 25px;
    min-height: 310px;
  }
  .written-toolbar {
    flex-wrap: nowrap;
  }
  .demo-output {
    min-height: 195px;
  }
  .written-bottom {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .demo-disclaimer {
    font-size: 10px;
  }
  .section-heading {
    text-align: left;
    margin-bottom: 30px;
  }
  .section-heading .eyebrow {
    justify-content: flex-start;
  }
  .app-showcase {
    grid-template-columns: 1fr;
  }
  .showcase-copy {
    padding: 30px;
  }
  .showcase-copy h3 {
    font-size: 32px;
  }
  .showcase-copy > p:not(.screenshot-label) {
    max-width: 450px;
  }
  .screenshot-stage {
    padding: 24px 20px 0;
  }
  .feature-columns {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }
  .feature-columns article {
    padding: 0 0 25px;
    border-bottom: 1px solid var(--line);
  }
  .feature-columns article:last-child {
    padding-bottom: 0;
    border: 0;
  }
  .feature-columns h3 {
    margin-top: 13px;
  }
  .feature-columns p {
    margin-block: 10px;
  }
  .models-section {
    padding-bottom: 60px;
  }
  .models-intro > p {
    max-width: 500px;
  }
  .model-row {
    padding-block: 22px;
    gap: 12px;
  }
  .model-row h3 {
    font-size: 17px;
  }
  .model-row p {
    font-size: 10px;
  }
  .model-size {
    font-size: 23px;
  }
  .maker-identity {
    position: relative;
    padding-right: 85px;
  }
  .maker-monogram {
    position: absolute;
    right: 0;
    top: 8px;
    width: 65px;
    height: 76px;
    font-size: 50px;
    border-radius: 35px 35px 9px 9px;
  }
  .maker-monogram span {
    font-size: 31px;
    bottom: 16px;
    right: 11px;
  }
  .maker-identity h2 {
    font-size: 38px;
  }
  .maker-identity .eyebrow {
    font-size: 9px;
  }
  .maker-lead {
    font-size: 24px;
  }
  .maker-story > p + p {
    font-size: 14px;
  }
  .maker-contact > .text-link {
    font-size: 13px;
  }
  .faq-section {
    padding-top: 60px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section h2 em {
    margin-left: 8px;
  }
  summary {
    font-size: 14px;
    padding-block: 19px;
  }
  .download-box {
    padding: 35px 26px;
    display: block;
  }
  .download-box h2 {
    font-size: 42px;
  }
  .download-box .eyebrow {
    font-size: 8px;
    margin-bottom: 21px;
  }
  .download-box > div > p:not(.eyebrow) {
    font-size: 13px;
  }
  .download-action {
    margin-top: 30px;
    max-width: none;
  }
  .download-action .fine-print {
    max-width: 100%;
  }
  .download-ornament {
    right: -80px;
    top: 100px;
    opacity: 0.35;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-top p {
    font-size: 13px;
  }
  .footer-top > .text-link {
    font-size: 12px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom nav {
    gap: 20px;
    margin-top: 14px;
  }
  .legal {
    padding: 45px 0 65px;
  }
  .legal h1 {
    font-size: 46px;
  }
  .legal .legal-lead {
    font-size: 18px;
  }
  .legal .notice-table {
    font-size: 11px;
  }
  .not-found {
    padding-block: 90px;
  }
}
@media (max-width: 380px) {
  .site-header .wordmark {
    font-size: 21px;
  }
  .site-header .wordmark svg {
    width: 25px;
    height: 25px;
  }
  .site-header .button-small {
    padding-inline: 13px;
  }
  .storage-card {
    padding: 23px 22px 0;
  }
  .storage-baseline {
    font-size: 11px;
  }
  .shell {
    width: calc(100% - 32px);
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions > .button {
    font-size: 12px;
    padding: 13px 19px;
  }
  .hero h1 {
    font-size: 69px;
  }
  .hero-scene {
    min-height: 370px;
  }
  .floating-note {
    right: 13%;
  }
  .floating-note p {
    font-size: 23px;
  }
  .scene-stamp {
    font-size: 8px;
  }
  .promise-strip {
    font-size: 9px;
  }
  .written-toolbar {
    flex-wrap: wrap;
  }
  .written-bottom {
    flex-wrap: wrap;
  }
  .maker-identity h2 {
    font-size: 33px;
  }
  .model-size {
    font-size: 20px;
  }
  .download-box h2 {
    font-size: 36px;
  }
  .footer-top > .text-link {
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Motion is progressive enhancement: the complete page remains visible without JS. */
.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: var(--leaf);
  z-index: 30;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.motion-toggle {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c8d0bf;
  background: #f5f1e8f2;
  box-shadow: 0 3px 12px #183c3010;
  color: var(--forest);
  border-radius: 30px;
  font-size: 10px;
  padding: 8px 13px;
  min-height: 38px;
  backdrop-filter: blur(12px);
}
.motion-toggle[hidden] {
  display: none;
}
.motion-symbol {
  font-size: 13px;
  min-width: 10px;
}
.site-footer {
  padding-bottom: 76px;
}
.hero-art {
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scene-rings {
  position: absolute;
  width: 340px;
  height: 340px;
  left: calc(50% - 170px);
  top: 76px;
  pointer-events: none;
  z-index: 1;
}
.scene-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid #627f4929;
  border-radius: 50%;
  animation: ring-expand 7s ease-out infinite;
  animation-play-state: paused;
  opacity: 0;
}
.scene-rings i:nth-child(2) {
  animation-delay: -2.33s;
}
.scene-rings i:nth-child(3) {
  animation-delay: -4.66s;
}
.floating-note {
  z-index: 2;
  animation: note-float 7s ease-in-out infinite;
  animation-play-state: paused;
}
.scene-heading span:last-child {
  animation: turn-flower 32s linear infinite;
  animation-play-state: paused;
}
.tiny-wave i,
.step-wave i,
.wide-wave i {
  animation: voice-wave 1.2s ease-in-out infinite alternate;
  animation-play-state: paused;
  transform-origin: center;
}
.tiny-wave i:nth-child(2n),
.step-wave i:nth-child(2n),
.wide-wave i:nth-child(2n) {
  animation-duration: 0.85s;
  animation-delay: -0.3s;
}
.tiny-wave i:nth-child(3n),
.step-wave i:nth-child(3n),
.wide-wave i:nth-child(3n) {
  animation-duration: 1.6s;
  animation-delay: -0.7s;
}
.tiny-wave i:nth-child(5n),
.step-wave i:nth-child(5n),
.wide-wave i:nth-child(5n) {
  animation-duration: 1.1s;
  animation-delay: -0.45s;
}
.motion-active .floating-note,
.motion-active .scene-rings i,
.motion-active .scene-heading span:last-child,
.motion-active .tiny-wave i,
.motion-active .step-wave i,
.motion-active .wide-wave i,
.motion-active .local-lines i,
.motion-active .local-orbit {
  animation-play-state: running;
}
.waiting-line {
  opacity: 0;
}
.is-writing .spoken-panel {
  background: #214934;
}
.spoken-panel {
  transition: background 0.5s;
}
.example-button,
.format-control button,
.theme-control button {
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.privacy-scene {
  overflow: hidden;
  background: var(--forest);
  color: var(--paper);
  margin-bottom: 105px;
  padding-block: 76px;
}
.privacy-scene-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.privacy-copy .eyebrow {
  color: #c1d4be;
}
.privacy-copy h2 {
  font-size: clamp(52px, 5.2vw, 76px);
  line-height: 1.12;
}
.privacy-copy h2 > * {
  display: block;
}
.privacy-copy h2 em {
  color: var(--mint);
}
.privacy-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9;
  color: #c5d5c5;
  max-width: 330px;
  margin-top: 25px;
}
.privacy-copy > .text-link {
  color: var(--mint);
  margin-top: 21px;
  font-size: 12px;
}
.local-illustration {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.local-orbit {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid #afccad26;
  border-radius: 50%;
  z-index: -1;
  animation: orbit-breathe 7s ease-in-out infinite;
  animation-play-state: paused;
}
.orbit-two {
  width: 490px;
  height: 490px;
  animation-delay: -3.5s;
  border-style: dashed;
  border-color: #afccad1c;
}
.local-laptop {
  width: 310px;
  height: 232px;
  border: 1px solid #a7c6a47a;
  border-radius: 14px 14px 0 0;
  background: #214634;
  position: relative;
  box-shadow: 0 25px 80px #082f211a;
  transform: rotate(-5deg);
}
.laptop-camera {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aecbab;
  position: absolute;
  top: 9px;
  left: 50%;
}
.local-screen {
  position: absolute;
  inset: 21px 12px 12px;
  border-radius: 3px;
  background: #d9e7ca;
  padding: 17px 20px;
  color: var(--forest);
}
.local-app-mark svg {
  width: 31px;
  height: 23px;
}
.local-signal {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-block: 18px 20px;
}
.local-signal .wide-wave {
  width: 88px;
  gap: 3px;
  overflow: hidden;
  flex: none;
}
.local-signal .wide-wave i {
  background: #406648;
  flex: none;
}
.local-signal > span {
  transform: rotate(-90deg);
  font-size: 21px;
  color: #75966b;
}
.local-lines {
  width: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.local-lines i {
  display: block;
  background: #648458;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  transform-origin: left;
  animation: write-lines 5s ease-in-out infinite;
  animation-play-state: paused;
}
.local-lines i:nth-child(2) {
  width: 80%;
  animation-delay: 0.25s;
}
.local-lines i:nth-child(3) {
  width: 60%;
  animation-delay: 0.5s;
}
.local-device-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  border-top: 1px solid #b4cba7;
  padding-top: 14px;
}
.local-device-status .status-dot {
  width: 5px;
  height: 5px;
}
.laptop-base {
  position: absolute;
  height: 10px;
  background: #a9c7a0;
  border: 1px solid #c4d6b6;
  bottom: -11px;
  left: -22px;
  right: -22px;
  border-radius: 1px 1px 18px 18px;
}
.laptop-base:after {
  content: "";
  position: absolute;
  top: 0;
  left: 40%;
  right: 40%;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: #73966d;
}
.local-label {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: #cfdfc5;
}
.label-voice {
  top: 18px;
  left: 30px;
  transform: rotate(-7deg);
}
.label-voice span {
  position: absolute;
  left: 82px;
  top: 23px;
  font-size: 33px;
}
.label-words {
  bottom: 6px;
  right: 6px;
  transform: rotate(-6deg);
}
.label-words span {
  position: absolute;
  left: -27px;
  top: -27px;
  font-size: 33px;
}
.motion-paused *,
.page-hidden * {
  animation-play-state: paused !important;
}
.motion-paused {
  scroll-behavior: auto;
}
.motion-paused .hero-art {
  transition: none;
}
html:not(.is-enhanced) .demo-controls,
html:not(.is-enhanced) .format-control,
html:not(.is-enhanced) .replay-button,
html:not(.is-enhanced) .theme-control {
  display: none;
}
@keyframes voice-wave {
  0% {
    transform: scaleY(0.35);
  }
  100% {
    transform: scaleY(1.1);
  }
}
@keyframes note-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}
@keyframes turn-flower {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ring-expand {
  0% {
    transform: scale(0.35);
    opacity: 0;
  }
  20% {
    opacity: 0.65;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes orbit-breathe {
  0%,
  100% {
    transform: scale(0.97);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}
@keyframes write-lines {
  0%,
  8% {
    transform: scaleX(0.08);
    opacity: 0.3;
  }
  35%,
  80% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.3;
  }
}
@media (max-width: 1050px) {
  .privacy-scene-inner {
    gap: 45px;
  }
  .local-laptop {
    width: 270px;
    height: 218px;
  }
  .local-screen {
    padding: 15px;
  }
  .local-signal {
    gap: 11px;
  }
  .local-lines {
    width: 70px;
  }
  .label-voice {
    left: 0;
  }
  .label-words {
    right: 0;
  }
}
@media (max-width: 760px) {
  .privacy-scene {
    padding-block: 60px;
    margin-bottom: 65px;
  }
  .privacy-scene-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .privacy-copy h2 {
    font-size: 58px;
  }
  .local-illustration {
    min-height: 330px;
    max-width: 420px;
    width: 100%;
    margin-inline: auto;
  }
  .local-label {
    font-size: 18px;
  }
  .label-voice {
    top: 6px;
    left: 20px;
  }
  .label-words {
    bottom: 2px;
    right: 7px;
  }
  .local-orbit {
    width: 310px;
    height: 310px;
  }
  .orbit-two {
    width: 390px;
    height: 390px;
  }
  .local-laptop {
    width: 260px;
    height: 208px;
  }
  .local-signal {
    margin-block: 12px 16px;
    gap: 10px;
  }
  .local-lines {
    width: 60px;
  }
  .motion-toggle {
    right: 12px;
    bottom: 12px;
    font-size: 10px;
  }
  .motion-toggle .motion-label {
    max-width: 90px;
  }
  .site-footer {
    padding-bottom: 76px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .scene-rings {
    display: none;
  }
}
