:root {
  color-scheme: dark;
  --page: #111310;
  --surface: #181b17;
  --surface-strong: #20241f;
  --surface-soft: #151714;
  --text: #f2f4ed;
  --muted: #a9afa4;
  --faint: #777d73;
  --line: #31372f;
  --line-strong: #454d42;
  --accent: #9fcf78;
  --accent-strong: #b7e38f;
  --accent-ink: #14200f;
  --danger: #e2a38f;
  --radius-card: 16px;
  --radius-control: 10px;
  --radius-pill: 999px;
  --max-width: 1240px;
  --shadow: 0 28px 80px rgb(0 0 0 / 0.24);
  font-family: "Avenir Next", Avenir, "Segoe UI", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

:root[data-theme="light"] {
  color-scheme: light;
  --page: #eff2eb;
  --surface: #f8faf5;
  --surface-strong: #e6eadf;
  --surface-soft: #f2f5ef;
  --text: #171a16;
  --muted: #515b4e;
  --faint: #5d675a;
  --line: #cfd6ca;
  --line-strong: #b5bfb0;
  --accent: #416b2d;
  --accent-strong: #315822;
  --accent-ink: #f5faef;
  --danger: #9b4d36;
  --shadow: 0 28px 80px rgb(47 59 42 / 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  min-width: 320px;
  min-height: 100dvh;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 88% 4%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 30rem),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 24%, transparent), transparent 22rem);
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 72px;
  margin: 0 auto;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  background: color-mix(in srgb, var(--page) 90%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: var(--accent);
}

.brand-mark::before {
  width: 10px;
  height: 2px;
  left: 6px;
  top: 7px;
  transform: rotate(24deg);
}

.brand-mark::after {
  width: 6px;
  height: 6px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.primary-nav a:hover {
  color: var(--text);
}

.theme-toggle {
  justify-self: end;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  color: var(--text);
}

.theme-toggle:active,
.button:active,
.scenario-button:active,
.report-tabs button:active {
  transform: translateY(1px);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.18fr);
  grid-template-rows: 1fr auto;
  gap: 40px 56px;
  min-height: calc(100dvh - 72px);
  padding: 56px 0 24px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 650;
}

.hero-summary {
  max-width: 34ch;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-control);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  background: var(--surface);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.04);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.trust-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.trust-rail div {
  display: grid;
  gap: 6px;
  padding: 22px 24px 8px 0;
}

.trust-rail div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.trust-rail strong {
  font-size: 13px;
}

.trust-rail span {
  color: var(--muted);
  font-size: 13px;
}

.section-shell {
  padding: 128px 0;
  border-top: 1px solid var(--line);
}

.section-heading,
.standards-intro {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-heading h2,
.report-content h2,
.standards-intro h2,
.closing h2,
.demo-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 620;
}

.section-heading p,
.report-content > p,
.standards-intro p,
.closing p,
.demo-intro > p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-track li {
  position: relative;
  min-height: 210px;
  padding: 92px 22px 22px 0;
  border-top: 1px solid var(--line-strong);
}

.workflow-track li:not(:last-child)::after {
  position: absolute;
  top: -4px;
  right: 18px;
  width: 7px;
  height: 7px;
  content: "";
  border: solid var(--accent);
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}

.workflow-track strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.workflow-track p {
  max-width: 14ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.demo {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: 72px;
  align-items: start;
}

.demo-intro {
  position: sticky;
  top: 112px;
}

.demo-intro h2 {
  max-width: 8ch;
}

.scenario-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 16px;
}

.scenario-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.scenario-button:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.scenario-button.is-active {
  background: var(--surface-strong);
  border-color: var(--accent);
  color: var(--text);
}

.demo-run {
  width: 100%;
  margin-top: 8px;
}

.demo-run:disabled {
  cursor: wait;
  opacity: 0.72;
}

.demo-note {
  margin: 14px 0 0;
  color: var(--faint) !important;
  font-size: 12px !important;
}

.demo-stage {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.demo-stage-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: var(--faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.demo-empty,
.demo-error {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 566px;
  padding: 40px;
  text-align: center;
}

.empty-mark {
  position: relative;
  width: 86px;
  height: 86px;
  margin-bottom: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.empty-mark::before {
  position: absolute;
  inset: 26px;
  content: "";
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.demo-empty h3,
.demo-error h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.demo-empty p,
.demo-error p {
  max-width: 38ch;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.demo-loading {
  min-height: 566px;
  padding: 44px 42px;
}

.run-log {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.run-log li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  color: var(--faint);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  transition: color 180ms ease;
}

.run-log li:last-child {
  border-bottom: 0;
}

.run-log li span {
  width: 10px;
  height: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.run-log li.is-current {
  color: var(--text);
}

.run-log li.is-current span {
  border-color: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 14%, transparent);
}

.run-log li.is-complete {
  color: var(--muted);
}

.run-log li.is-complete span {
  border-color: var(--accent);
  background: var(--accent);
}

.demo-result {
  min-height: 566px;
  padding: 34px 34px 28px;
}

.result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.result-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.result-title {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.result-status {
  flex: none;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--danger) 60%, var(--line));
  border-radius: var(--radius-pill);
  color: var(--danger);
  font-size: 11px;
  font-weight: 700;
}

.funnel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.funnel div {
  position: relative;
  min-width: 0;
  padding-right: 16px;
}

.funnel div:not(:last-child)::after {
  position: absolute;
  top: 31px;
  right: 8px;
  content: "/";
  color: var(--line-strong);
}

.funnel span {
  display: block;
  min-height: 34px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.funnel strong {
  display: block;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.05em;
}

.result-guidance {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  padding: 30px 0;
}

.result-guidance div {
  display: grid;
  gap: 10px;
}

.result-guidance span {
  color: var(--muted);
  font-size: 12px;
}

.result-guidance strong {
  font-size: 15px;
  line-height: 1.6;
}

.result-limit {
  margin: 0;
  padding: 16px 18px;
  border-left: 2px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.demo-error h3 {
  color: var(--danger);
}

.reports {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.92fr);
  gap: 76px;
  align-items: center;
}

.report-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}

.report-visual img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.report-content > p {
  margin-bottom: 34px;
}

.report-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 4px 12px;
  scrollbar-width: thin;
}

.report-tabs button {
  flex: none;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.report-tabs button[aria-selected="true"] {
  border-color: var(--accent);
  background: var(--surface-strong);
  color: var(--text);
}

.report-panel {
  margin-top: 10px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.report-page-number {
  display: block;
  margin-bottom: 52px;
  color: var(--faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.report-panel h3 {
  margin-bottom: 12px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.report-panel > p {
  min-height: 52px;
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.65;
}

.report-panel-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.report-panel-meta span {
  color: var(--muted);
  font-size: 11px;
}

.boundary-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.boundary-grid article {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.can-do {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 11%, transparent), transparent 46%),
    var(--surface);
}

.will-not {
  background: var(--surface-soft);
}

.boundary-grid h3 {
  margin-bottom: 44px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.boundary-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 28px;
}

.will-not .boundary-items {
  grid-template-columns: 1fr;
  gap: 24px;
}

.boundary-items div {
  display: grid;
  gap: 8px;
}

.boundary-items strong {
  font-size: 14px;
}

.boundary-items span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.standards {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.standards-intro {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.standards-list {
  border-top: 1px solid var(--line-strong);
}

.standards-list details {
  border-bottom: 1px solid var(--line);
}

.standards-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
  list-style: none;
}

.standards-list summary::-webkit-details-marker {
  display: none;
}

.standards-list summary::after {
  position: absolute;
  right: 8px;
  top: 25px;
  content: "+";
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 18px;
  font-weight: 400;
}

.standards-list details[open] summary::after {
  content: "−";
}

.standards-list details p {
  max-width: 58ch;
  margin: 0;
  padding: 0 54px 28px 0;
  color: var(--muted);
  line-height: 1.75;
}

.closing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.closing > div {
  max-width: 850px;
}

.closing h2 {
  max-width: 15ch;
}

.closing p {
  margin-bottom: 0;
}

.closing .button {
  flex: none;
  margin-bottom: 6px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  animation: reveal-in 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 24px;
}

.error-page main {
  width: min(100%, 620px);
  text-align: center;
}

.error-page main > span {
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.error-page h1 {
  margin: 18px 0;
  font-size: clamp(38px, 7vw, 68px);
  letter-spacing: -0.05em;
}

.error-page p {
  margin-bottom: 28px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(46px, 6vw, 70px);
  }

  .workflow-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo,
  .reports,
  .standards {
    gap: 44px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .section-shell,
  .hero,
  .site-footer {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header {
    min-height: 64px;
  }

  .theme-toggle-label {
    display: none;
  }

  .theme-toggle {
    width: 40px;
    padding: 0;
  }

  .theme-toggle::before {
    content: "◐";
    font-size: 17px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(48px, 13vw, 72px);
  }

  .hero-visual {
    min-height: 470px;
  }

  .trust-rail {
    grid-template-columns: 1fr;
  }

  .trust-rail div,
  .trust-rail div + div {
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-shell {
    padding: 96px 0;
  }

  .section-heading,
  .standards-intro {
    margin-bottom: 48px;
  }

  .workflow-track {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-track li {
    min-height: 170px;
    padding-top: 62px;
  }

  .demo,
  .reports,
  .standards {
    grid-template-columns: 1fr;
  }

  .demo-intro,
  .standards-intro {
    position: static;
  }

  .demo-intro h2 {
    max-width: 11ch;
  }

  .reports {
    gap: 52px;
  }

  .report-visual img {
    min-height: 480px;
  }

  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .closing {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 12px;
  }

  .brand-mark {
    width: 22px;
    height: 22px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .workflow-track {
    grid-template-columns: 1fr;
  }

  .workflow-track li {
    min-height: auto;
    padding: 24px 0;
  }

  .workflow-track li:not(:last-child)::after {
    top: auto;
    right: 4px;
    bottom: -4px;
    transform: rotate(135deg);
  }
  .demo-stage {
    min-height: 590px;
  }

  .demo-empty,
  .demo-error,
  .demo-loading {
    min-height: 536px;
    padding: 30px 22px;
  }

  .demo-result {
    min-height: 536px;
    padding: 26px 20px;
  }

  .result-header {
    display: grid;
  }

  .result-status {
    justify-self: start;
  }

  .funnel {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
  }

  .funnel div:nth-child(3)::after {
    content: none;
  }

  .result-guidance {
    grid-template-columns: 1fr;
  }

  .report-visual img {
    min-height: 380px;
  }

  .report-panel-meta {
    grid-template-columns: 1fr;
  }

  .boundary-grid article {
    padding: 28px 22px;
  }

  .boundary-items {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal.is-visible {
    animation: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
