:root {
  --bg: #fff8ef;
  --bg-soft: #fff3e6;
  --surface: #ffffff;
  --surface-warm: #fffaf3;
  --ink: #2b1d16;
  --muted: #7c6b5f;
  --line: rgba(92, 63, 42, 0.15);
  --orange: #f07918;
  --orange-dark: #c95609;
  --teal: #188f83;
  --teal-dark: #0e685f;
  --shadow-soft: 0 18px 55px rgba(104, 58, 18, 0.16);
  --shadow-tight: 0 10px 28px rgba(104, 58, 18, 0.13);
  --max: 1180px;
  --header-height: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

@view-transition {
  navigation: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(240, 121, 24, 0.1), transparent 30rem),
    linear-gradient(180deg, #fffaf4 0%, #fff8ef 30%, #ffffff 100%);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  animation: pageEnter 260ms var(--ease-out) both;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease-out);
}

html.is-page-leaving body {
  opacity: 0;
  transform: translateY(6px);
}

::view-transition-old(root) {
  animation: pageExit 180ms ease both;
}

::view-transition-new(root) {
  animation: pageEnter 260ms var(--ease-out) both;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(24, 143, 131, 0.42);
  outline-offset: 4px;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(92, 63, 42, 0.08);
  background: rgba(255, 248, 239, 0.78);
  backdrop-filter: blur(22px);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    transform 420ms var(--ease-out);
  animation: headerIn 700ms var(--ease-out) both;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 10px 30px rgba(77, 48, 25, 0.08);
}

.nav {
  width: min(calc(100% - 40px), var(--max));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: transform 240ms var(--ease-out);
}

.brand:hover img {
  transform: scale(1.06);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(43, 29, 22, 0.76);
  font-weight: 650;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease-out);
}

.nav-links a:hover {
  background: rgba(240, 121, 24, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  background: rgba(240, 121, 24, 0.12);
  color: var(--orange-dark);
}

.language-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 143, 131, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(24, 143, 131, 0.08);
  color: var(--teal-dark);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms var(--ease-out);
}

.language-toggle:hover {
  background: rgba(24, 143, 131, 0.14);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  place-items: center;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 21px;
}

.nav-toggle span:nth-child(3) {
  top: 27px;
}

.hero {
  position: relative;
  min-height: calc(88dvh - var(--header-height));
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-device {
  position: absolute;
  z-index: -2;
  right: max(-120px, calc((100vw - 1440px) / 2));
  bottom: -12%;
  width: min(54vw, 760px);
  min-width: 460px;
  --hero-y: 0px;
  transform: translate3d(0, var(--hero-y), 0);
  filter: drop-shadow(0 38px 70px rgba(82, 48, 22, 0.18));
  animation: heroDeviceIn 760ms var(--ease-out) 80ms both;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 1) 0%, rgba(255, 248, 239, 0.94) 33%, rgba(255, 248, 239, 0.42) 68%, rgba(255, 248, 239, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.2), rgba(255, 248, 239, 0.9));
}

.hero-content {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0 clamp(72px, 11vw, 144px);
}

.hero .eyebrow,
.hero h1,
.hero-lede,
.hero-actions,
.hero-facts {
  animation: heroTextIn 620ms var(--ease-out) both;
}

.hero h1 {
  animation-delay: 50ms;
}

.hero-lede {
  animation-delay: 100ms;
}

.hero-actions {
  animation-delay: 150ms;
}

.hero-facts {
  animation-delay: 200ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 30px;
  color: #5f4f45;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease,
    background 220ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(240, 121, 24, 0.28);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(92, 63, 42, 0.16);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.hero-facts div {
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid rgba(92, 63, 42, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 22px rgba(104, 58, 18, 0.08);
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.hero-facts div:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 121, 24, 0.28);
  box-shadow: 0 16px 36px rgba(104, 58, 18, 0.12);
}

.hero-facts dt {
  margin-bottom: 2px;
  font-size: 0.95rem;
  font-weight: 850;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(76px, 11vw, 150px) 0;
}

.section-inner {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
}

.section-inner.wide {
  width: min(calc(100% - 40px), var(--max));
}

.intro {
  text-align: center;
  background: #fff;
}

.intro h2,
.intro p {
  margin-left: auto;
  margin-right: auto;
}

.intro p,
.feature-copy p,
.split-copy p,
.immersive-cooking .section-inner p,
.download-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.feature-band,
.split-showcase {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 104px) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
}

.feature-band-home {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    transparent;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #493a31;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 14px;
  height: 14px;
  border: 3px solid var(--teal);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.phone-figure {
  margin: 0;
}

.phone-figure img,
.duo-phones img,
.screen-row img {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  background: var(--surface-warm);
  transition:
    transform 520ms var(--ease-out),
    box-shadow 520ms ease;
}

.phone-figure img:hover,
.duo-phones img:hover,
.screen-row figure:hover img {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(104, 58, 18, 0.2);
}

.phone-figure img {
  width: min(100%, 420px);
  margin-left: auto;
}

.workflow {
  color: #fff;
  background: #102a28;
}

.workflow .section-kicker {
  color: #ffb66e;
}

.workflow h2 {
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.steps article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  display: block;
  margin-bottom: 36px;
  color: #ffb66e;
  font-size: 0.92rem;
  font-weight: 850;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.split-showcase {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
}

.duo-phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.duo-phones img:first-child {
  transform: translateY(28px);
}

.duo-phones img:first-child:hover {
  transform: translateY(18px);
}

.immersive-cooking {
  padding: clamp(78px, 10vw, 138px) 0;
  background: #fff;
}

.immersive-cooking .section-inner {
  text-align: center;
}

.immersive-cooking .section-inner p {
  margin-left: auto;
  margin-right: auto;
}

.screen-row {
  width: min(calc(100% - 40px), 1280px);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.screen-row figure {
  margin: 0;
  transition: transform 420ms var(--ease-out);
}

.screen-row figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 750;
  text-align: center;
}

.principles {
  background:
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.principle-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-tight);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.principle-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 143, 131, 0.22);
  box-shadow: 0 22px 48px rgba(104, 58, 18, 0.15);
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
}

.download {
  position: relative;
  min-height: 88dvh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(78px, 11vw, 140px) 0;
  isolation: isolate;
  background: #fff7ec;
}

.download-bg {
  position: absolute;
  z-index: -2;
  right: max(-80px, calc((100vw - 1300px) / 2));
  bottom: -18%;
  width: min(52vw, 620px);
  min-width: 380px;
  opacity: 0.8;
  --download-y: 0px;
  transform: translate3d(0, var(--download-y), 0);
  filter: drop-shadow(0 30px 55px rgba(72, 39, 17, 0.16));
  will-change: transform;
}

.download::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #fff7ec 0%, rgba(255, 247, 236, 0.95) 40%, rgba(255, 247, 236, 0.36) 100%);
}

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

.download-copy > img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(104, 58, 18, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(0.985);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes headerIn {
  from {
    opacity: 0.55;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0.58;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDeviceIn {
  from {
    opacity: 0.32;
    clip-path: inset(8% 0 0 0 round 36px);
    transform: translate3d(34px, calc(var(--hero-y) + 42px), 0) scale(0.985);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 0);
    transform: translate3d(0, var(--hero-y), 0) scale(1);
  }
}

@keyframes heroDeviceInMobile {
  from {
    opacity: 0.32;
    clip-path: inset(8% 0 0 0 round 36px);
    transform: translateX(50%) translateY(calc(var(--hero-y) + 34px)) scale(0.985);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 0);
    transform: translateX(50%) translateY(var(--hero-y)) scale(1);
  }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageExit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

.footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 34px 0 44px;
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 7vw, 96px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.footer-brand span {
  max-width: 13em;
  line-height: 1.7;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.footer-links,
.footer-records {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links {
  color: var(--ink);
  font-weight: 760;
}

.footer-records {
  color: rgba(124, 107, 95, 0.88);
  font-size: 0.88rem;
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.footer a:hover {
  color: var(--orange-dark);
}

.footer .police-record {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.footer .police-record img {
  width: 18px;
  height: 20px;
  object-fit: contain;
}

.legal-main {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto;
  padding: 72px 0 84px;
}

.legal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(92, 63, 42, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 121, 24, 0.12), transparent 22rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 56px);
}

.legal-card h1 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.legal-updated {
  margin: 0 0 34px;
  color: var(--muted);
  font-weight: 650;
}

.legal-section {
  padding: 24px 0;
  border-top: 1px solid rgba(92, 63, 42, 0.1);
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.legal-section p,
.legal-section li {
  color: #5f4f45;
}

.legal-section p {
  margin: 0 0 10px;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2em;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(var(--header-height) - 2px);
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--shadow-tight);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition:
      opacity 220ms var(--ease-out),
      transform 220ms var(--ease-out),
      visibility 220ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    justify-content: center;
  }

  .language-toggle {
    width: 100%;
  }

  .hero {
    min-height: 82dvh;
    align-items: start;
  }

  .hero-device {
    right: 50%;
    bottom: -34%;
    width: min(92vw, 560px);
    min-width: 0;
    transform: translateX(50%) translateY(var(--hero-y));
    opacity: 0.7;
    animation-name: heroDeviceInMobile;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 248, 239, 1) 0%, rgba(255, 248, 239, 0.92) 46%, rgba(255, 248, 239, 0.42) 100%),
      rgba(255, 248, 239, 0.6);
  }

  .hero-content {
    padding-top: clamp(58px, 12vw, 96px);
    padding-bottom: 52px;
  }

  .feature-band,
  .split-showcase {
    grid-template-columns: 1fr;
  }

  .phone-figure img {
    margin: 0 auto;
    width: min(76vw, 380px);
  }

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

  .screen-row {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .screen-row figure {
    scroll-snap-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  body {
    background: linear-gradient(180deg, #fffaf4 0%, #fff8ef 42%, #ffffff 100%);
  }

  .nav {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand span {
    font-size: 0.98rem;
  }

  .hero-content,
  .section-inner,
  .section-inner.wide,
  .feature-band,
  .split-showcase,
  .screen-row,
  .download-copy,
  .footer {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    max-width: 360px;
    font-size: clamp(3rem, 13vw, 3.7rem);
  }

  .hero-lede {
    max-width: 340px;
  }

  .hero-actions,
  .download-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .steps,
  .principle-grid,
  .duo-phones {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: auto;
  }

  .duo-phones img {
    width: min(78vw, 360px);
    margin: 0 auto;
  }

  .duo-phones img:first-child {
    transform: none;
  }

  .download {
    min-height: 82dvh;
    align-items: start;
  }

  .download-bg {
    right: 50%;
    bottom: -32%;
    width: min(95vw, 470px);
    min-width: 0;
    transform: translateX(50%) translateY(var(--download-y));
    opacity: 0.5;
  }

  .download::after {
    background: linear-gradient(180deg, #fff7ec 0%, rgba(255, 247, 236, 0.88) 58%, rgba(255, 247, 236, 0.28) 100%);
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-links,
  .footer-records {
    justify-content: flex-start;
  }
}

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

  .button:hover {
    transform: none;
  }

  body {
    animation: none;
    transition: none;
  }

  html.is-page-leaving body {
    opacity: 1;
    transform: none;
  }

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

  .hero-device,
  .download-bg {
    animation: none !important;
  }
}
