:root {
  color-scheme: light;
  --bg: #f8f1ea;
  --bg-strong: #fffdf9;
  --ink: #1b1713;
  --muted: #6e645c;
  --soft: #efe1d6;
  --soft-2: #f5e2d6;
  --line: rgba(27, 23, 19, 0.08);
  --accent: #e7a87f;
  --accent-strong: #8f4f2d;
  --green: #2f7d62;
  --mint: #e8f4ee;
  --blue: #4d8ea8;
  --plum: #9c6f97;
  --gold: #9a741a;
  --phone: #17100c;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 28px 80px rgba(49, 35, 26, 0.16);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

#how,
#tour,
#features,
#care {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  padding-top: 74px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  width: 100%;
  height: 74px;
  margin: 0 auto;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: none;
}

.brand-link,
.site-nav {
  display: inline-flex;
  align-items: center;
}

.brand-link {
  flex: 0 0 auto;
  gap: 10px;
  font-weight: 800;
}

.brand-link img {
  width: 156px;
  height: auto;
}

.site-nav {
  gap: 6px;
  color: var(--ink);
  font-weight: 700;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  border-radius: 50%;
  background: var(--bg-strong);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 50px;
  align-items: center;
  min-height: min(820px, calc(100svh - 140px));
  padding: 36px max(24px, calc((100vw - var(--max)) / 2)) 54px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.hero__copy {
  width: 100%;
  max-width: 570px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 520px;
  margin-bottom: 20px;
  font-size: 84px;
  line-height: 0.95;
  font-weight: 900;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 850;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 800;
}

.hero__lead {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  gap: 10px;
  color: #17100c;
  background: var(--accent);
}

.button--ghost {
  color: var(--ink);
  background: var(--bg-strong);
  border: 1px solid var(--line);
}

.store-buttons,
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 166px;
  max-width: 100%;
  min-width: 166px;
  min-height: 58px;
  padding: 9px 14px;
  border-radius: 16px;
  background: #17100c;
  color: #fffdf9;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(49, 35, 26, 0.18);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  background: #2a1e17;
}

.store-button small {
  display: block;
  margin-bottom: 2px;
  font-size: 10px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.store-button__logo {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.store-button__logo--apple::before {
  display: block;
  width: 24px;
  height: 28px;
  content: "";
  background: #fffdf9;
  clip-path: path("M18.7 14.5c0-3 2.5-4.5 2.6-4.6-1.5-2-3.8-2.3-4.5-2.3-1.9-.2-3.7 1.1-4.7 1.1s-2.5-1.1-4.1-1.1c-2.1 0-4 1.2-5.1 3-2.2 3.8-.6 9.4 1.6 12.4 1.1 1.5 2.3 3.2 3.9 3.1 1.6-.1 2.2-1 4.1-1s2.5 1 4.1 1c1.7 0 2.8-1.5 3.8-3 1.2-1.8 1.7-3.5 1.8-3.6-.1-.1-3.5-1.4-3.5-5zM15.5 5.5c.9-1.1 1.5-2.5 1.3-4-.1 0-1.5.1-2.8 1.4-1.2 1.1-1.5 2.5-1.4 3.9 1.3.1 2.6-.6 2.9-1.3z");
}

.hero__note {
  color: var(--muted);
  font-weight: 650;
}

.hero__visual {
  position: relative;
  min-height: 590px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 10px solid var(--phone);
  border-radius: 44px;
  background: var(--phone);
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone--front {
  right: 19%;
  bottom: 0;
  z-index: 3;
  width: 270px;
  height: 587px;
}

.phone--back {
  top: 24px;
  right: 0;
  z-index: 2;
  width: 226px;
  height: 491px;
  opacity: 0.88;
  transform: rotate(5deg);
}

.hero-pill {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-strong);
  color: var(--muted);
  box-shadow: 0 18px 50px rgba(49, 35, 26, 0.14);
  font-weight: 750;
}

.hero-pill span {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.hero-pill--goal {
  top: 15%;
  left: 10%;
}

.hero-pill--pets {
  right: 2%;
  bottom: 16%;
}

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

.section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 46px;
}

.section__intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.step {
  min-height: 280px;
  padding: 34px;
  background: var(--bg-strong);
}

.step span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.step p {
  color: var(--muted);
  font-size: 18px;
}

.product-tour {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.62fr);
  gap: 70px;
  align-items: center;
}

.tour-copy {
  max-width: 560px;
  min-width: 0;
}

.tour-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
}

.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tour-tab {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-strong);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.tour-tab.is-active {
  border-color: rgba(231, 168, 127, 0.65);
  background: var(--soft-2);
  color: var(--accent-strong);
}

.tour-phone {
  width: min(290px, 100%);
  height: 590px;
  margin-inline: auto;
  overflow: hidden;
  border: 9px solid var(--phone);
  border-radius: 42px;
  background: var(--phone);
  box-shadow: var(--shadow);
}

.tour-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.tour-image.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.feature-gallery {
  padding-top: 28px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.screen-card {
  display: grid;
  gap: 20px;
  align-content: space-between;
  min-height: 540px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-strong);
  box-shadow: 0 18px 54px rgba(49, 35, 26, 0.09);
}

.screen-card--wide {
  grid-column: span 2;
}

.screen-card h3 {
  max-width: 420px;
}

.screen-card p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.screen-card > img,
.screen-pair img {
  width: min(210px, 100%);
  height: 386px;
  margin-inline: auto;
  border: 8px solid var(--phone);
  border-radius: 36px;
  background: var(--phone);
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 20px 58px rgba(49, 35, 26, 0.16);
}

.screen-pair {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: center;
}

.screen-pair img:nth-child(2) {
  margin-top: 54px;
}

.care-preview-row {
  padding-top: 28px;
}

.screen-card--planned {
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  min-height: auto;
}

.screen-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scrollbar-width: thin;
}

.screen-strip::-webkit-scrollbar {
  height: 6px;
}

.screen-strip img {
  flex: 0 0 174px;
  width: 174px;
  height: 338px;
  border: 7px solid var(--phone);
  border-radius: 30px;
  background: var(--phone);
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 18px 48px rgba(49, 35, 26, 0.14);
}

.dark-mode-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.48fr);
  gap: 70px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 88px max(24px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid rgba(255, 245, 236, 0.1);
  background: #17100c;
  color: #fff5ec;
}

.dark-mode-row .eyebrow {
  color: #f1b891;
}

.dark-mode-copy {
  max-width: 620px;
  min-width: 0;
}

.dark-mode-copy p:not(.eyebrow) {
  color: #d4c2b4;
  font-size: 20px;
}

.dark-mode-phone {
  width: min(300px, 100%);
  height: 610px;
  margin-inline: auto;
  overflow: hidden;
  border: 9px solid #050403;
  border-radius: 44px;
  background: #050403;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.dark-mode-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
  gap: 74px;
  align-items: center;
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
  background: #17100c;
  color: #fff5ec;
}

.feature-band__media {
  width: min(300px, 100%);
  height: 610px;
  margin-inline: auto;
  overflow: hidden;
  border: 9px solid #050403;
  border-radius: 44px;
  background: #050403;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.feature-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.feature-band .eyebrow {
  color: #f1b891;
}

.feature-band h2 {
  max-width: 760px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1px;
  max-width: none;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 245, 236, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 245, 236, 0.12);
}

.feature-list article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 190px;
  padding: 30px;
  background: #17100c;
}

.feature-list p {
  max-width: 500px;
  margin-bottom: 0;
  color: #d4c2b4;
  font-size: 18px;
}

.feature-dot {
  width: 14px;
  height: 14px;
  margin-top: 8px;
  border-radius: 50%;
}

.feature-dot--green {
  background: #96d8ba;
}

.feature-dot--blue {
  background: #6ab2cc;
}

.feature-dot--clay {
  background: #e7a87f;
}

.feature-dot--plum {
  background: #d2a1cd;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 26px;
  padding: 110px 24px;
  text-align: center;
  background: var(--bg-strong);
  border-block: 1px solid var(--line);
}

.legal-main {
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100svh - 74px);
  margin: 0 auto;
}

.legal-page {
  display: grid;
  align-content: center;
  min-height: 62svh;
  padding: 48px 0 36px;
}

.legal-page--document {
  align-content: start;
  max-width: 820px;
}

.legal-page h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4.8vw, 44px);
  line-height: 1.05;
}

.legal-page p:not(.eyebrow),
.legal-page li {
  max-width: 560px;
  color: var(--muted);
  font-size: 20px;
}

.legal-page--document p:not(.eyebrow),
.legal-page--document li {
  max-width: 760px;
  font-size: 18px;
}

.legal-page h2 {
  max-width: 760px;
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.15;
}

.legal-page a {
  color: var(--accent-strong);
  font-weight: 750;
}

.legal-page ul {
  max-width: 760px;
  margin: 0 0 24px;
  padding-left: 24px;
}

.legal-page li + li {
  margin-top: 8px;
}

.final-cta > img {
  width: 170px;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: start;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 70px;
  color: var(--muted);
}

.site-footer__logo {
  width: 170px;
  height: auto;
}

.site-footer p {
  margin: 8px 0 0;
  font-weight: 800;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  min-width: 190px;
}

.site-footer h2 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.site-footer a:hover {
  color: var(--accent-strong);
}

.footer-note {
  flex-basis: 100%;
  min-height: 24px;
  color: var(--accent-strong);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .site-header {
    justify-content: space-between;
    padding-right: 16px;
    padding-left: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-strong);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    width: 100%;
  }

  .hero,
  .section__intro,
  .product-tour,
  .dark-mode-row,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screen-card--planned {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero__visual {
    min-height: 560px;
  }

  .phone--front {
    right: auto;
    left: 50%;
    width: 258px;
    height: 560px;
    transform: translateX(-58%);
  }

  .phone--back {
    right: 4%;
    width: 210px;
    height: 456px;
  }

  .hero-pill--goal {
    top: 12%;
    left: 0;
  }

  .hero-pill--pets {
    right: 0;
    bottom: 8%;
  }

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

  .step {
    min-height: 220px;
  }

  .step span {
    margin-bottom: 34px;
  }

  .tour-phone {
    height: 560px;
  }

  .dark-mode-phone {
    height: 560px;
  }

  .feature-band__media {
    height: 560px;
  }
}

@media (max-width: 640px) {
  .section,
  .site-footer,
  .legal-main {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(42px, 11.5vw, 48px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.1;
  }

  h3 {
    font-size: 19px;
  }

  .hero {
    gap: 28px;
    padding: 32px 20px 26px;
  }

  .hero__lead,
  .section__intro p:not(.eyebrow),
  .tour-copy p:not(.eyebrow),
  .dark-mode-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    max-width: none;
  }

  .store-buttons {
    display: grid;
    width: 100%;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .store-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero__copy {
    max-width: calc(100vw - 40px);
  }

  .hero__visual {
    min-height: 506px;
    margin-inline: -20px;
    overflow: visible;
  }

  .phone {
    border-width: 8px;
    border-radius: 36px;
  }

  .phone--front {
    width: 226px;
    height: 492px;
    transform: translateX(-54%);
  }

  .phone--back {
    right: -16px;
    width: 178px;
    height: 387px;
    opacity: 0.72;
  }

  .hero-pill {
    min-width: 130px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .hero-pill span {
    font-size: 24px;
  }

  .hero-pill--goal {
    top: 16%;
    left: 16px;
  }

  .hero-pill--pets {
    right: 16px;
    bottom: 10%;
  }

  .section,
  .feature-band {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .section__intro {
    gap: 18px;
    margin-bottom: 24px;
  }

  .product-tour {
    gap: 36px;
  }

  .step {
    min-height: auto;
    padding: 24px;
  }

  .step span {
    margin-bottom: 24px;
  }

  .tour-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tour-tab {
    min-height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }

  .screen-card,
  .screen-card--wide {
    grid-column: auto;
  }

  .screen-card {
    min-height: auto;
    gap: 14px;
    padding: 20px;
  }

  .screen-card--planned {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .screen-pair {
    gap: 12px;
  }

  .screen-card > img,
  .screen-pair img {
    width: min(248px, 100%);
    height: 510px;
    border-width: 7px;
    border-radius: 30px;
  }

  .screen-pair img:nth-child(2) {
    margin-top: 34px;
  }

  .screen-strip img {
    flex: 0 0 214px;
    width: 214px;
    height: 416px;
    user-select: none;
    -webkit-user-drag: none;
  }

  .tour-phone {
    width: min(260px, 100%);
    height: 520px;
  }

  .dark-mode-row {
    width: 100vw;
    gap: 30px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 32px 16px;
  }

  .dark-mode-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .dark-mode-phone {
    width: min(242px, 100%);
    height: 496px;
  }

  .feature-band__media {
    width: min(242px, 100%);
    height: 496px;
  }

  .feature-band {
    gap: 32px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .feature-band__copy {
    order: -1;
  }

  .screen-strip {
    margin-inline: -20px;
    overflow-x: scroll;
    padding-inline: 20px;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-padding-inline: 20px;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .screen-strip.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .screen-strip::-webkit-scrollbar {
    display: none;
  }

  .screen-strip img {
    scroll-snap-align: start;
  }

  .feature-list {
    margin-top: 26px;
  }

  .feature-list article {
    min-height: auto;
    padding: 24px;
  }

  .final-cta {
    padding: 36px 20px;
  }

  .legal-page {
    min-height: 52svh;
    padding: 34px 0 24px;
  }

  .legal-page--document p:not(.eyebrow),
  .legal-page--document li {
    font-size: 16px;
  }

  .legal-page h2 {
    font-size: 24px;
  }

  .legal-page h1 {
    font-size: clamp(28px, 8vw, 32px);
  }

  .site-footer {
    padding-top: 34px;
    padding-bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
