:root {
  --paper: #f3f0e8;
  --paper-deep: #e7e2d8;
  --ink: #191918;
  --ink-soft: #27333a;
  --muted: #6f6b63;
  --muted-light: #c7c1b6;
  --line: #c8c1b5;
  --orange: #e86d32;
  --orange-soft: #f3a168;
  --blue: #3d6d8c;
  --max: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection { color: var(--paper); background: var(--orange); }

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell { width: min(100%, 1440px); margin: 0 auto; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max));
  min-height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
}

.brand { display: inline-flex; align-items: baseline; gap: 12px; }
.brand-copy { display: grid; gap: 0; }
.brand-copy strong { font-size: 1rem; letter-spacing: 0.04em; }
.brand-copy small { color: var(--muted); font: 0.62rem/1.3 ui-monospace, monospace; letter-spacing: 0.05em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 0.78rem; }
.site-nav a { transition: color 180ms ease, transform 180ms ease; }
.site-nav a:hover { color: var(--ink); transform: translateY(-1px); }
.site-nav .nav-cta { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; color: var(--paper); background: var(--ink); }
.site-nav .nav-cta span, .text-link span { color: var(--orange); }
.menu-toggle { display: none; }

.section-frame { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: 52px;
  min-height: calc(100svh - 88px);
  padding: 82px 0 112px;
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--blue); font: 700 0.67rem/1.3 ui-monospace, monospace; letter-spacing: 0.11em; text-transform: uppercase; }
.eyebrow-code { padding: 3px 5px; color: var(--paper); background: var(--orange); font-size: 0.6rem; letter-spacing: 0.03em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.055em; }
h1 { max-width: 650px; margin-bottom: 28px; font-size: clamp(3.5rem, 6.5vw, 6.4rem); line-height: 0.98; font-weight: 720; }
h1 em { color: var(--orange); font-style: normal; }
.hero-lede { max-width: 470px; margin-bottom: 34px; color: var(--muted); font-size: 1.02rem; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.button { display: inline-flex; align-items: center; gap: 14px; min-height: 46px; padding: 0 17px; border: 1px solid var(--ink); border-radius: 2px; font-size: 0.8rem; transition: transform 180ms ease, color 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--paper); background: var(--ink); }
.button-primary:hover { color: var(--ink); background: var(--orange); }
.button-quiet { color: var(--ink); background: transparent; }
.button-quiet:hover { background: var(--paper-deep); }
.button span { color: var(--orange); font-size: 1rem; }
.button-primary span { color: var(--paper); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 56px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.71rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof b { color: var(--orange); font: 0.64rem ui-monospace, monospace; font-weight: 500; }

.hero-art { min-width: 0; }
.hero-art-frame { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--ink); border-radius: 0; background: var(--paper-deep); box-shadow: 10px 10px 0 var(--orange); }
.hero-art-frame img { width: 100%; height: 100%; min-height: 520px; display: block; object-fit: cover; animation: art-drift 14s ease-in-out infinite; }
.mono, code { font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace; }

.demo { padding: 116px 0 138px; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .install-copy h2, .privacy-copy h2 { margin-bottom: 0; font-size: clamp(2.5rem, 4.7vw, 4.7rem); line-height: 1.04; font-weight: 680; }
.section-heading h2 span, .install-copy h2 span, .privacy-copy h2 span { color: var(--muted); }
.demo-panel { display: grid; grid-template-columns: 0.35fr 0.65fr; min-height: 470px; overflow: hidden; color: var(--paper); background: var(--ink-soft); border: 1px solid var(--ink); border-radius: 0; box-shadow: 10px 10px 0 var(--orange); }
.demo-intro { display: flex; flex-direction: column; justify-content: space-between; padding: 38px; border-right: 1px solid rgba(243, 240, 232, 0.26); }
.demo-index, .feature-number { color: var(--orange-soft); font: 0.7rem/1 ui-monospace, monospace; letter-spacing: 0.12em; }
.demo-intro h3 { margin: 35px 0 14px; font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.04; font-weight: 600; }
.demo-intro p { max-width: 220px; margin-bottom: 22px; color: var(--muted-light); font-size: 0.83rem; line-height: 1.8; }
.status-pill { display: flex; align-items: baseline; gap: 8px; width: fit-content; padding-top: 10px; color: var(--muted-light); border-top: 1px solid rgba(243, 240, 232, 0.26); font-size: 0.65rem; }
.status-pill span { color: var(--orange-soft); font: 0.58rem ui-monospace, monospace; letter-spacing: 0.08em; }
.typing-stage { display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 52px; color: var(--ink); background: var(--paper-deep); }
.typing-window { width: min(100%, 650px); margin: 0 auto; overflow: hidden; background: var(--paper); border: 1px solid var(--ink); border-radius: 0; box-shadow: 5px 5px 0 rgba(25, 25, 24, 0.22); }
.window-bar { display: flex; align-items: center; justify-content: space-between; min-height: 38px; padding: 0 15px; color: var(--paper); background: var(--ink); border-bottom: 1px solid var(--ink); font: 0.64rem ui-monospace, monospace; }
.window-lights { display: flex; gap: 5px; }
.window-lights i { width: 7px; height: 7px; display: block; background: var(--paper); }
.window-lights i:first-child { background: var(--orange); }.window-lights i:nth-child(2) { background: var(--orange-soft); }.window-lights i:nth-child(3) { background: var(--blue); }
.typing-line { min-height: 120px; display: flex; align-items: center; padding: 0 29px; color: var(--ink); font: clamp(1.75rem, 4vw, 3.2rem) ui-monospace, monospace; letter-spacing: -0.08em; }
.typing-caret { width: 2px; height: 1.15em; margin-left: 8px; background: var(--orange); animation: blink 1s step-end infinite; }
.candidate-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 14px 22px; border-top: 1px solid var(--line); }
.candidate { display: inline-flex; align-items: center; justify-content: center; min-width: 45px; min-height: 34px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 0; font-size: 0.82rem; transition: color 220ms ease, background 220ms ease, border-color 220ms ease; }
.candidate.active { color: var(--paper); background: var(--orange); border-color: var(--orange); }
.candidate-muted { margin-left: auto; color: var(--muted); background: transparent; border-color: transparent; font-size: 0.7rem; }
.commit-hint { padding: 0 22px 18px; color: var(--muted); font-size: 0.7rem; }
.enter-key { display: inline-flex; align-items: center; justify-content: center; min-height: 21px; padding: 0 6px; color: var(--paper); background: var(--ink); border-radius: 0; font: 0.63rem ui-monospace, monospace; }
.demo-track { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 28px; padding-top: 12px; color: var(--muted); border-top: 1px solid var(--line); font-size: 0.68rem; }
.demo-caption { display: flex; align-items: center; gap: 13px; justify-content: center; margin-top: 23px; color: var(--muted); font-size: 0.72rem; text-align: center; }
.caption-bar { width: 32px; height: 1px; background: var(--orange); }
.demo-pop { animation: demo-pop 320ms var(--ease); }

.try-section { padding: 0 0 138px; }
.try-panel { min-height: 520px; overflow: hidden; background: var(--paper-deep); border: 1px solid var(--ink); border-radius: 0; box-shadow: 10px 10px 0 var(--blue); }
.try-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.try-example, .try-reset { min-height: 36px; padding: 0 11px; color: var(--paper); background: transparent; border: 1px solid var(--muted-light); border-radius: 0; cursor: pointer; font-size: 0.7rem; transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.try-example { color: var(--ink); background: var(--orange-soft); border-color: var(--orange-soft); }
.try-reset { color: var(--ink); background: transparent; border-color: var(--ink); }
.try-example:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); transform: translateY(-2px); }
.try-reset:hover { color: var(--ink); background: transparent; border-color: var(--ink); transform: translateY(-2px); }
.try-example:disabled, .try-reset:disabled { cursor: wait; opacity: 0.55; transform: none; }
.try-screen { width: min(100%, 860px); margin: 0 auto; padding: 44px 52px 42px; color: var(--ink); background: var(--paper-deep); cursor: text; }
.try-screen:focus { outline: 3px solid rgba(61, 109, 140, 0.32); outline-offset: -3px; }
.try-screen[aria-disabled="true"] { cursor: wait; }
.try-screen-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--blue); font: 0.65rem/1.4 ui-monospace, monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.try-status { min-height: 1.8em; margin: 0 !important; color: var(--muted) !important; font: 0.65rem/1.7 ui-monospace, monospace !important; letter-spacing: 0 !important; text-transform: none; }
.try-preedit { display: flex; align-items: center; min-height: 126px; padding: 0 29px; color: var(--ink); font: clamp(1.6rem, 3.5vw, 2.8rem) ui-monospace, monospace; letter-spacing: -0.08em; }
.try-preedit #try-preedit-text { overflow-wrap: anywhere; }
.try-preedit.is-empty #try-preedit-text { color: var(--muted); font-size: 0.62em; letter-spacing: 0; }
.try-candidates { flex-wrap: wrap; align-items: center; gap: 8px; padding: 13px 22px; border-top: 1px solid var(--line); }
.try-candidates:not([hidden]) { display: flex; }
.try-candidate { min-width: 45px; min-height: 34px; padding: 0 10px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 0; cursor: pointer; font-size: 0.82rem; transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.try-candidate:hover, .try-candidate:focus-visible { color: var(--paper); background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.try-commit { min-height: 37px; padding: 0 22px 16px; color: var(--blue); font-size: 0.7rem; }
.try-prompt { display: flex; align-items: center; gap: 11px; min-height: 42px; padding: 0 22px; border-top: 1px solid var(--line); color: var(--muted); font: 0.7rem ui-monospace, monospace; }
.try-prompt-symbol { color: var(--orange); }
.try-hint { width: 100%; margin: 10px auto 0; color: var(--muted); font-size: 0.67rem; }

.feature-section { padding: 20px 0 138px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; max-width: none; }
.heading-note { max-width: 270px; margin: 0 0 8px; color: var(--muted); font-size: 0.83rem; line-height: 1.9; }
.feature-grid { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 0; }
.feature-card { position: relative; min-height: 360px; padding: 29px; overflow: hidden; background: transparent; border: 1px solid var(--ink); border-right: 0; border-radius: 0; transition: transform 220ms var(--ease), background 220ms ease; }
.feature-card:last-child { border-right: 1px solid var(--ink); }
.feature-card:hover { transform: translateY(-4px); background: var(--paper-deep); }
.feature-card-wide { display: grid; grid-template-columns: 70px 1fr; gap: 3px 19px; background: var(--paper-deep); }
.feature-card-wide .feature-number { grid-row: span 2; }
.feature-kicker { margin: 0 0 11px; color: var(--blue); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.feature-card h3 { margin-bottom: 14px; font-size: clamp(1.35rem, 2.35vw, 2.15rem); line-height: 1.2; font-weight: 650; }
.feature-card > div:not(.feature-number) p, .feature-card > p:not(.feature-kicker) { max-width: 270px; margin-bottom: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.85; }
.feature-art-image { position: absolute; right: -8px; bottom: -22px; width: 158px; aspect-ratio: 1; object-fit: cover; border: 0; border-radius: 0; opacity: 1; mix-blend-mode: multiply; transform: rotate(-2deg); transition: transform 320ms var(--ease); }
.feature-card-wide .feature-art-image { right: -12px; bottom: -28px; width: 214px; transform: rotate(2deg); }
.feature-card:hover .feature-art-image { transform: translateY(-6px) rotate(0deg); }

.install-section { display: grid; grid-template-columns: 1fr 0.92fr; align-items: center; gap: 8.5%; padding: 25px 0 150px; }
.install-art { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--ink); border-radius: 0; box-shadow: 10px 10px 0 var(--blue); }
.install-art img { display: block; width: 100%; aspect-ratio: 1.68; object-fit: cover; }
.install-art-stamp { position: absolute; right: 18px; bottom: 18px; z-index: 2; display: grid; gap: 1px; padding: 9px 11px; color: var(--paper); background: var(--ink); border: 1px solid var(--ink); border-radius: 0; font: 0.6rem/1.25 ui-monospace, monospace; letter-spacing: 0.12em; }
.install-art-stamp strong { color: var(--orange-soft); font-size: 0.88rem; letter-spacing: 0.08em; }
.install-copy h2 { margin-bottom: 23px; font-size: clamp(2.6rem, 4vw, 4.25rem); }
.install-copy h2 span { display: inline-block; white-space: nowrap; font-size: 0.86em; }
.install-lede { max-width: 420px; margin-bottom: 27px; color: var(--muted); font-size: 0.9rem; line-height: 1.9; }
.install-tabs { display: flex; gap: 0; margin-bottom: 14px; }
.install-tab { padding: 9px 13px; color: var(--muted); background: transparent; border: 1px solid var(--line); border-right: 0; border-radius: 0; cursor: pointer; font-size: 0.72rem; transition: color 180ms ease, border-color 180ms ease, background 180ms ease; }
.install-tab:last-child { border-right: 1px solid var(--line); }
.install-tab:hover, .install-tab.active { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.install-panel[hidden] { display: none; }
.command-card { overflow: hidden; background: var(--ink-soft); border: 1px solid var(--ink); border-radius: 0; }
.command-head { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; color: var(--muted-light); border-bottom: 1px solid rgba(243, 240, 232, 0.2); font-size: 0.67rem; }
.copy-command { padding: 3px 7px; color: var(--orange-soft); background: transparent; border: 1px solid var(--orange-soft); border-radius: 0; cursor: pointer; font-size: 0.64rem; }
.copy-command:hover { color: var(--paper); background: var(--orange); border-color: var(--orange); }
.command-card code { display: block; overflow-x: auto; padding: 15px 13px 17px; color: var(--paper); font-size: 0.74rem; line-height: 1.8; white-space: pre-wrap; word-break: break-word; }
.install-note { margin: 12px 0 0; color: var(--muted); font-size: 0.72rem; line-height: 1.75; }
.install-note code { color: var(--orange); font-size: 0.71rem; }
.install-checklist { display: flex; flex-wrap: wrap; gap: 14px 20px; margin-top: 25px; color: var(--muted); font-size: 0.68rem; }
.install-checklist span { display: inline-flex; align-items: center; gap: 7px; }.install-checklist b { color: var(--blue); font: 0.62rem ui-monospace, monospace; }

.privacy-section { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 10%; min-height: 470px; padding: 72px 9%; overflow: hidden; color: var(--paper); background: var(--ink-soft); border: 1px solid var(--ink); border-radius: 0; box-shadow: 10px 10px 0 var(--orange); }
.privacy-mark { display: flex; justify-content: center; }
.privacy-mark img { width: min(100%, 270px); aspect-ratio: 1; object-fit: cover; border: 1px solid var(--ink); border-radius: 0; box-shadow: 8px 8px 0 var(--blue); animation: art-drift 14s ease-in-out infinite reverse; }
.privacy-copy h2 { margin-bottom: 22px; font-size: clamp(2.6rem, 4.1vw, 4.25rem); }.privacy-copy > p:not(.eyebrow) { max-width: 460px; color: var(--muted-light); font-size: 0.9rem; line-height: 1.9; }
.privacy-copy .eyebrow { color: var(--orange-soft); }
.text-link { display: inline-flex; gap: 10px; margin-top: 10px; color: var(--paper); border-bottom: 1px solid var(--orange-soft); font-size: 0.78rem; }

.site-footer { display: flex; align-items: center; justify-content: space-between; width: min(calc(100% - 48px), var(--max)); min-height: 150px; margin: 0 auto; color: var(--muted); border-top: 1px solid var(--ink); font-size: 0.72rem; }
.footer-brand { color: var(--ink); font-weight: 700; letter-spacing: 0.08em; }.site-footer p { margin: 0; }.footer-links { display: flex; gap: 19px; }.footer-links a:hover { color: var(--orange); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms var(--ease), transform 650ms var(--ease); }.reveal.is-visible { opacity: 1; transform: translateY(0); }.reveal-late { transition-delay: 110ms; }
.hero-copy.is-visible { transform: translateY(var(--hero-copy-shift, 0px)) scale(var(--hero-copy-scale, 1)); transform-origin: left center; will-change: transform; }
.hero-art.is-visible { transform: translateY(var(--hero-art-shift, 0px)) scale(var(--hero-art-scale, 1)); transform-origin: center top; will-change: transform; }

@keyframes blink { 0%, 48% { opacity: 1; } 49%, 100% { opacity: 0; } }
@keyframes art-drift { 0%, 100% { transform: scale(1.015) translate3d(0, 0, 0); } 50% { transform: scale(1.03) translate3d(-0.4%, -0.4%, 0); } }
@keyframes demo-pop { 0% { opacity: 0.45; transform: translateY(5px); } 100% { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: calc(100svh - 88px); padding-top: 62px; }.hero-art-frame { min-height: 430px; }.hero-art-frame img { min-height: 430px; }
  .demo-panel { grid-template-columns: 1fr; }.demo-intro { min-height: 250px; border-right: 0; border-bottom: 1px solid rgba(243, 240, 232, 0.26); }.demo-intro h3 { margin-top: 20px; }.demo-intro p { max-width: 500px; }.typing-stage { padding: 40px 25px 44px; }
  .try-screen { padding: 40px 25px 44px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }.feature-card-wide { grid-column: span 2; }.feature-card:nth-child(2) { border-right: 0; }
  .install-section { grid-template-columns: 1fr; gap: 42px; }.install-copy { max-width: 700px; }
  .privacy-section { padding: 60px 8%; }
}

@media (max-width: 640px) {
  .site-header, .section-frame, .site-footer { width: min(calc(100% - 32px), var(--max)); }.site-header { min-height: 75px; }
  .menu-toggle { display: grid; place-content: center; gap: 4px; width: 38px; height: 38px; color: var(--ink); background: transparent; border: 1px solid var(--ink); border-radius: 0; cursor: pointer; }.menu-toggle span:not(.sr-only) { width: 15px; height: 1px; background: currentColor; }
  .site-nav { position: absolute; top: 68px; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; width: 210px; padding: 8px; background: var(--paper); border: 1px solid var(--ink); border-radius: 0; box-shadow: 6px 6px 0 var(--orange); }.site-nav.open { display: flex; }.site-nav a { padding: 11px 12px; }.site-nav .nav-cta { margin-top: 4px; border-top: 1px solid var(--ink); }
  .hero { min-height: calc(100svh - 75px); padding: 44px 0 80px; }.hero h1 { font-size: clamp(3rem, 16vw, 5rem); }.hero-lede { font-size: 0.95rem; }.hero-proof { gap: 12px; margin-top: 35px; }.hero-art-frame, .hero-art-frame img { min-height: 310px; }
  .demo, .try-section, .feature-section, .install-section { padding-bottom: 90px; }.demo { padding-top: 70px; }.section-heading { margin-bottom: 32px; }.section-heading h2, .install-copy h2, .privacy-copy h2 { font-size: clamp(2.45rem, 13vw, 4rem); }.demo-intro { padding: 27px; }.typing-stage, .try-screen { padding: 27px 14px 32px; }.typing-line { min-height: 92px; padding: 0 18px; font-size: clamp(1.4rem, 8vw, 2.5rem); }.candidate-row { padding: 11px 14px; }.candidate-muted { display: none; }.commit-hint { padding: 0 14px 14px; }.demo-track { align-items: flex-start; font-size: 0.62rem; }.demo-caption { align-items: flex-start; font-size: 0.64rem; }.caption-bar { flex: 0 0 22px; margin-top: 9px; }
  .try-screen-meta { align-items: flex-start; flex-direction: column; gap: 5px; }.try-preedit { min-height: 92px; padding: 0 18px; font-size: clamp(1.4rem, 8vw, 2.5rem); }.try-candidates { padding: 11px 14px; }.try-commit { padding: 0 14px 14px; }.try-prompt { padding: 0 14px; font-size: 0.62rem; }.try-hint { font-size: 0.62rem; }
  .split-heading { display: block; }.heading-note { margin-top: 20px; }.feature-grid { grid-template-columns: 1fr; }.feature-card, .feature-card:nth-child(2) { min-height: 300px; border-right: 1px solid var(--ink); border-bottom: 0; }.feature-card:last-child { border-bottom: 1px solid var(--ink); }.feature-card-wide { grid-column: auto; display: block; min-height: 310px; }.feature-card-wide .feature-number { margin-bottom: 26px; }.feature-art-image, .feature-card-wide .feature-art-image { right: -7px; bottom: -17px; width: 142px; }
  .privacy-section { grid-template-columns: 1fr; gap: 35px; padding: 47px 25px 56px; }.privacy-mark img { width: min(60vw, 210px); }.install-copy h2 span { font-size: 0.72em; }.site-footer { flex-wrap: wrap; gap: 15px; padding: 31px 0; }.site-footer p { order: 3; width: 100%; }.footer-links { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-copy.is-visible, .hero-art.is-visible { transform: none; }
}
