/* Food Journal — marketing site.
   Mirrors expo-app/features/journal/theme.ts: the same warm herbarium neutrals,
   the same single green, the same Newsreader/system-sans pairing, in both appearances. */

/* ---------- Typeface ---------- */

@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  color-scheme: light dark;

  /* Surfaces (light pair of each theme.ts token) */
  --paper: #f6f4ef;
  --mount: #edebe4;
  --mount-deep: #e4e1d8;
  --sage: #e6ede2;

  /* Ink */
  --ink: #242923;
  --ink-quiet: #667063;

  /* Voice */
  --green: #426b50;
  --green-hover: #33563f;
  --on-green: #f6f4ef;

  /* Edges */
  --hairline: #dee4da;
  --sage-edge: #d3ded0;

  /* Focus + depth */
  --focus: var(--green);
  --focus-on-green: var(--ink);
  --device-shadow: 0 24px 48px rgb(36 41 35 / 14%), 0 3px 8px rgb(36 41 35 / 8%);

  /* Type scale */
  --t-micro: 0.8125rem;
  --t-fine: 0.9375rem;
  --t-body: 1.0625rem;
  --t-lede: 1.1875rem;
  --t-h3: 1.1875rem;

  /* Rhythm (the app's 4 / 8 / 12 / 20 / 24 scale, extended for a page) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;
  --s-9: 56px;
  --s-10: 80px;
  --s-11: 112px;

  /* Radii (the app's continuous-corner scale) */
  --r-field: 12px;
  --r-control: 14px;
  --r-card: 20px;
  --r-panel: 26px;
  --r-full: 999px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #171c19;
    --mount: #222a24;
    --mount-deep: #2b342d;
    --sage: #303f32;

    --ink: #f3f1ea;
    --ink-quiet: #a9b2a8;

    --green: #a3c4a7;
    --green-hover: #bdd8c0;
    --on-green: #171c19;

    --hairline: #3b473d;
    --sage-edge: #3d4d3f;

    --focus-on-green: var(--paper);
    --device-shadow: none;
  }
}

/* ---------- Base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--s-7);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  accent-color: var(--green);
  scrollbar-color: var(--mount-deep) transparent;
}

::selection {
  background: var(--sage);
  color: var(--ink);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  text-wrap: balance;
}

h3 {
  font-size: var(--t-h3);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.012em;
  margin-bottom: var(--s-2);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* `em` is the site's one display accent: the green, italic half of a heading. */
h1 em,
h2 em {
  font-weight: 500;
  font-style: italic;
  color: var(--green);
}

a {
  color: inherit;
  text-underline-offset: 0.28em;
  text-decoration-thickness: from-font;
}

button {
  font: inherit;
  cursor: pointer;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

svg.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  vertical-align: -0.18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.button:focus-visible {
  outline-color: var(--focus-on-green);
  outline-offset: 2px;
}

.wrap {
  width: min(1160px, 100% - var(--s-11));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  inset-block-start: -100px;
  inset-inline-start: var(--s-5);
  z-index: 10;
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-field);
  text-decoration: none;
  font-size: var(--t-fine);
  font-weight: 600;
}

.skip-link:focus {
  inset-block-start: var(--s-3);
}

/* ---------- Header ---------- */

.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  border-bottom: 1px solid var(--hairline);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  white-space: nowrap;
}

.sprout {
  width: 34px;
  height: 34px;
  flex: none;
  color: var(--green);
}

.site-header nav {
  display: flex;
  gap: var(--s-7);
  align-items: center;
  font-size: var(--t-fine);
}

.site-header nav > a:not(.button) {
  text-decoration: none;
  color: var(--ink-quiet);
  transition: color 0.15s ease;
}

.site-header nav > a:not(.button):hover,
.site-header nav > a[aria-current]:not(.button) {
  color: var(--green);
}

.release-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  border: 1px solid var(--sage-edge);
  background: var(--sage);
  padding: 9px var(--s-4);
  border-radius: var(--r-full);
  font-size: var(--t-micro);
  white-space: nowrap;
  color: var(--green);
  font-weight: 600;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}

/* Standalone nav links sit at text height; extend the hit area to 44px
   without disturbing the layout they sit in. */
.site-header nav > a:not(.button),
.site-footer nav a,
.text-link {
  position: relative;
}

.site-header nav > a:not(.button)::after,
.site-footer nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  inset: -10px -6px;
}

/* ---------- Buttons and links ---------- */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: var(--s-2);
  min-height: 44px;
  border-radius: var(--r-control);
  padding: var(--s-3) var(--s-5);
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--on-green);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--t-fine);
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.button:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}

.button:active {
  opacity: 0.82;
}

.button.small {
  min-height: 38px;
  padding: var(--s-2) var(--s-4);
  font-size: var(--t-micro);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-fine);
  color: var(--green);
  font-weight: 600;
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: var(--s-10);
  align-items: center;
  padding-block: var(--s-10) var(--s-9);
}

.hero h1 {
  font-size: clamp(3rem, 5.4vw, 4.75rem);
  line-height: 1.06;
  letter-spacing: -0.038em;
  margin-bottom: var(--s-6);
}

.lede {
  font-size: var(--t-lede);
  line-height: 1.65;
  max-width: 30ch;
  color: var(--ink-quiet);
  margin-bottom: var(--s-7);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}

.availability {
  font-size: var(--t-fine);
  color: var(--ink-quiet);
}

.hero-figure {
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  padding-block: 10px;
}

.hero-figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: var(--s-8) 0 0;
  background: var(--sage);
  border-radius: 48% 48% 28% 28%;
  transform: rotate(-5deg);
}

.hero-figure .device {
  width: min(330px, 100%);
}

/* The device frame draws a physical phone, not a UI surface, so its bezel radii
   sit outside the app's rounded scale on purpose. */
.device {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  border: 7px solid #20251f;
  border-radius: 48px;
  overflow: hidden;
  background: #20251f;
  box-shadow: var(--device-shadow);
}

.device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 41px;
}

/* ---------- How it works ---------- */

.screens-section {
  padding-block: var(--s-11) var(--s-10);
  border-top: 1px solid var(--hairline);
}

.section-heading {
  text-align: center;
  margin-bottom: var(--s-9);
}

h2 {
  font-size: clamp(2.125rem, 3.6vw, 2.875rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-4);
}

.section-heading > p:last-child {
  color: var(--ink-quiet);
  font-size: var(--t-body);
  margin: 0;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
  align-items: start;
}

.screen-figure {
  margin: 0;
}

.screen-figure figcaption {
  max-width: 30ch;
  margin: var(--s-6) auto 0;
  text-align: center;
}

.screen-figure h3 {
  margin: 0 0 var(--s-2);
}

.screen-figure figcaption p {
  font-size: var(--t-fine);
  line-height: 1.6;
  color: var(--ink-quiet);
  margin: 0;
}

.screens-note {
  text-align: center;
  font-size: var(--t-micro);
  color: var(--ink-quiet);
  margin: var(--s-8) 0 0;
}

/* ---------- Features ---------- */

.features-section {
  border-block: 1px solid var(--hairline);
  padding-block: var(--s-10);
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: var(--s-11);
}

.feature-intro > .sprout {
  width: 48px;
  height: 48px;
  margin-bottom: var(--s-6);
}

.feature-intro > p:last-child {
  font-size: var(--t-body);
  color: var(--ink-quiet);
  max-width: 32ch;
  line-height: 1.65;
  margin: 0;
}

.feature-list article {
  display: flex;
  gap: var(--s-5);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--hairline);
}

.feature-list article:first-child {
  padding-top: var(--s-1);
}

.feature-list article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-list .feature-mark {
  width: 40px;
  height: 40px;
  flex: none;
  background: var(--sage);
  border-radius: var(--r-control);
  display: grid;
  place-items: center;
  color: var(--green);
}

.feature-list .feature-mark .icon {
  width: 21px;
  height: 21px;
}

.feature-list h3 {
  font-size: var(--t-body);
  margin: 0 0 var(--s-1);
}

.feature-list p {
  font-size: var(--t-fine);
  color: var(--ink-quiet);
  margin: 0;
  line-height: 1.65;
  max-width: 58ch;
}

/* ---------- Privacy note ---------- */

.privacy-note {
  background: var(--sage);
  border: 1px solid var(--sage-edge);
  border-radius: var(--r-panel);
  padding: var(--s-8) var(--s-9);
  margin-block: var(--s-10);
}

.privacy-note h2 {
  font-size: clamp(1.75rem, 2.6vw, 2.125rem);
  margin-bottom: var(--s-3);
}

.privacy-note p {
  font-size: var(--t-body);
  color: var(--ink);
  max-width: 68ch;
  line-height: 1.65;
  margin-bottom: var(--s-4);
}

/* ---------- FAQ ---------- */

.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: var(--s-11);
  padding-block: var(--s-7) var(--s-10);
}

.faq-section h2 {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--hairline);
}

details {
  border-bottom: 1px solid var(--hairline);
}

summary {
  list-style: none;
  font-size: var(--t-body);
  cursor: pointer;
  display: flex;
  gap: var(--s-4);
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  min-height: 44px;
  padding-block: var(--s-4);
  transition: color 0.15s ease;
}

summary:hover {
  color: var(--green);
}

summary::-webkit-details-marker {
  display: none;
}

/* A drawn marker, not a typographic one: a plus whose vertical bar rotates away. */
.summary-mark {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--green);
}

.summary-mark::before,
.summary-mark::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: 100%;
  height: 1.75px;
  border-radius: 2px;
  background: currentColor;
  translate: 0 -50%;
  transition: rotate 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.summary-mark::after {
  rotate: 90deg;
}

details[open] .summary-mark::after {
  rotate: 0deg;
}

details p {
  font-size: var(--t-fine);
  color: var(--ink-quiet);
  line-height: 1.7;
  max-width: 62ch;
  margin: 0 0 var(--s-5);
}

details a {
  color: var(--green);
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }

  details::details-content {
    block-size: 0;
    overflow: clip;
    transition:
      block-size 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      content-visibility 0.3s allow-discrete;
  }

  details[open]::details-content {
    block-size: auto;
  }
}

/* ---------- Closing ---------- */

.closing {
  border-block: 1px solid var(--hairline);
  padding-block: var(--s-10);
  text-align: center;
}

.closing > .sprout {
  width: 44px;
  height: 44px;
  margin-bottom: var(--s-6);
}

.closing h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}

.closing > p {
  font-size: var(--t-body);
  color: var(--ink-quiet);
  margin-bottom: var(--s-6);
}

/* ---------- Footer ---------- */

.site-footer {
  padding-block: var(--s-8) var(--s-6);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s-5);
}

.site-footer .brand {
  font-size: 1.0625rem;
  justify-self: start;
}

.site-footer .sprout {
  width: 26px;
  height: 26px;
}

.site-footer nav {
  display: flex;
  gap: var(--s-6);
  align-items: center;
  font-size: var(--t-fine);
  flex-wrap: wrap;
}

.site-footer nav a {
  text-decoration: none;
  color: var(--ink-quiet);
  transition: color 0.15s ease;
}

.site-footer nav a:hover,
.site-footer nav a[aria-current] {
  color: var(--green);
}

.site-footer small {
  grid-column: 1/-1;
  font-size: var(--t-micro);
  color: var(--ink-quiet);
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-5);
  margin-top: var(--s-3);
}

/* ---------- Document pages ---------- */

.document-header {
  padding-block: var(--s-10) var(--s-8);
  border-bottom: 1px solid var(--hairline);
}

.document-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.032em;
  margin-bottom: var(--s-5);
}

.document-header .lede {
  max-width: 48ch;
  margin-bottom: var(--s-4);
}

.document-header .updated {
  font-size: var(--t-micro);
  color: var(--ink-quiet);
  margin: 0;
}

.document-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: var(--s-11);
  padding-block: var(--s-9) var(--s-10);
  align-items: start;
}

.document-nav {
  position: sticky;
  inset-block-start: var(--s-7);
  font-size: var(--t-fine);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.document-nav a {
  text-decoration: none;
  color: var(--ink-quiet);
  transition: color 0.15s ease;
}

.document-nav a:hover {
  color: var(--green);
  text-decoration: underline;
}

.document-body {
  max-width: 68ch;
}

.document-body h2 {
  font-family: var(--sans);
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  font-weight: 600;
  line-height: 1.35;
  margin: var(--s-9) 0 var(--s-3);
}

.document-body h2:first-child {
  margin-top: 0;
}

.document-body p,
.document-body li {
  font-size: var(--t-body);
  line-height: 1.72;
  color: var(--ink);
}

.document-body ul {
  padding-inline-start: var(--s-5);
}

.document-body li + li {
  margin-top: var(--s-3);
}

.document-body li::marker {
  color: var(--ink-quiet);
}

.document-body a {
  color: var(--green);
  overflow-wrap: anywhere;
}

.document-body section {
  scroll-margin-top: var(--s-7);
}

.legal-summary {
  padding: var(--s-6) var(--s-7);
  background: var(--sage);
  border: 1px solid var(--sage-edge);
  border-radius: var(--r-card);
  margin-bottom: var(--s-8);
}

.legal-summary p:last-child {
  margin-bottom: 0;
}

.legal-summary strong {
  color: var(--green);
}

/* ---------- Support ---------- */

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--s-9);
  padding-block: var(--s-8) var(--s-9);
}

.support-grid article {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--hairline);
}

.support-grid h2 {
  font-family: var(--sans);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin-bottom: var(--s-2);
}

.support-grid p {
  font-size: var(--t-fine);
  color: var(--ink-quiet);
  line-height: 1.7;
  margin: 0;
  max-width: 58ch;
}

.support-contact {
  background: var(--sage);
  border: 1px solid var(--sage-edge);
  border-radius: var(--r-panel);
  padding: var(--s-7) var(--s-8);
  margin-bottom: var(--s-7);
}

.support-contact h2 {
  font-size: clamp(1.625rem, 2.4vw, 2rem);
  margin-bottom: var(--s-3);
}

.support-contact > a {
  font-size: var(--t-lede);
  font-weight: 600;
  overflow-wrap: anywhere;
  color: var(--green);
}

.support-contact > p {
  font-size: var(--t-fine);
  margin: var(--s-4) 0 0;
  color: var(--ink);
  max-width: 62ch;
  line-height: 1.7;
}

.support-notes {
  padding-bottom: var(--s-10);
  max-width: 62ch;
}

.support-notes p {
  font-size: var(--t-fine);
  color: var(--ink-quiet);
  margin-bottom: var(--s-3);
  line-height: 1.7;
}

.support-notes p:last-child {
  margin-bottom: 0;
}

.support-notes a {
  color: var(--green);
  overflow-wrap: anywhere;
}

/* Motion is reserved for the one thing that actually changes: a disclosure
   opening. Nothing on this page animates on arrival — the world is pressed flat. */

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - var(--s-9));
  }

  .hero {
    gap: var(--s-7);
  }

  .features-section,
  .faq-section {
    gap: var(--s-9);
  }

  .screens-grid {
    gap: var(--s-5);
  }

  .device {
    border-width: 5px;
    border-radius: 36px;
  }

  .device img {
    border-radius: 31px;
  }

  .document-layout {
    grid-template-columns: 185px 1fr;
    gap: var(--s-8);
  }

  .support-grid {
    column-gap: var(--s-7);
  }

  .privacy-note,
  .support-contact {
    padding: var(--s-7);
  }
}

@media (max-width: 720px) {
  .wrap {
    width: calc(100% - var(--s-8));
  }

  .site-header {
    min-height: 82px;
    gap: var(--s-3);
  }

  .brand {
    font-size: 1.1875rem;
  }

  .brand .sprout {
    width: 29px;
    height: 29px;
  }

  .site-header nav {
    gap: var(--s-5);
    font-size: var(--t-micro);
  }

  .site-header .how-link,
  .site-header .release-label {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: var(--s-8);
    padding-block: var(--s-9) var(--s-7);
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12.5vw, 3.375rem);
    letter-spacing: -0.035em;
    margin-bottom: var(--s-5);
  }

  .hero .lede {
    max-width: 34ch;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  h2 {
    font-size: clamp(1.875rem, 8vw, 2.375rem);
  }

  .section-heading {
    margin-bottom: var(--s-7);
  }

  .screens-section {
    padding-block: var(--s-9) var(--s-8);
  }

  .screens-grid {
    display: flex;
    gap: var(--s-5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: calc(var(--s-5) * -1);
    padding: var(--s-1) var(--s-5) var(--s-6);
  }

  .screen-figure {
    flex: 0 0 74%;
    scroll-snap-align: center;
  }

  .screens-note {
    margin-top: var(--s-3);
  }

  .hero-figure .device {
    width: min(280px, 78%);
  }

  .features-section {
    grid-template-columns: 1fr;
    gap: var(--s-7);
    padding-block: var(--s-9);
  }

  .feature-intro > .sprout {
    margin-bottom: var(--s-5);
  }

  .feature-intro > p:last-child {
    max-width: 100%;
  }

  .feature-list article {
    gap: var(--s-4);
  }

  .privacy-note {
    padding: var(--s-7) var(--s-6);
    margin-block: var(--s-8);
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: var(--s-6);
    padding-block: var(--s-4) var(--s-9);
  }

  .closing {
    padding-block: var(--s-9);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: var(--s-6);
    padding-top: var(--s-7);
  }

  .site-footer nav {
    gap: var(--s-6);
  }

  .site-footer small {
    margin-top: 0;
    padding-top: var(--s-5);
  }

  .document-header {
    padding-block: var(--s-9) var(--s-7);
  }

  .document-layout {
    grid-template-columns: 1fr;
    gap: var(--s-7);
    padding-block: var(--s-6) var(--s-9);
  }

  /* Wrapped plain links read as prose; give them a tappable chip shape instead. */
  .document-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--s-2);
    font-size: var(--t-micro);
  }

  .document-nav a {
    background: var(--mount);
    border-radius: var(--r-full);
    padding: var(--s-2) var(--s-3);
  }

  .document-nav a:hover {
    text-decoration: none;
  }

  .document-body h2 {
    margin-top: var(--s-8);
  }

  .legal-summary {
    padding: var(--s-5);
  }

  .support-grid {
    grid-template-columns: 1fr;
    padding-block: var(--s-6) var(--s-7);
  }

  .support-contact {
    margin-bottom: var(--s-6);
    padding: var(--s-6);
  }

  .support-notes {
    padding-bottom: var(--s-9);
  }
}

@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;
  }
}
