:root {
  color-scheme: dark;
  --ink-950: #04130f;
  --ink-900: #071f1a;
  --ink-850: #0b2a22;
  --ink-800: #12372c;
  --jade-500: #4d7d63;
  --jade-400: #72a080;
  --paper: #fff7e8;
  --paper-muted: #d8d2c3;
  --gold: #d4b06a;
  --gold-bright: #f0d89f;
  --cinnabar: #b84b35;
  --cinnabar-bright: #d26046;
  --line: rgba(212, 176, 106, 0.24);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Microsoft YaHei", sans-serif;
  --max-width: 1180px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 18%, rgba(66, 126, 93, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgba(184, 75, 53, 0.1), transparent 22rem),
    var(--ink-950);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

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

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  padding: 9px 14px;
  color: var(--ink-950);
  background: var(--paper);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 88px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(212, 176, 106, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}

.brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--paper-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: inset 180ms ease;
}

.desktop-nav a:hover {
  color: var(--paper);
}

.desktop-nav a:hover::after {
  right: 0;
  left: 0;
}

.language-switcher {
  display: inline-flex;
  justify-self: end;
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--paper-muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: 700 0.78rem/1 var(--sans);
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ink-950);
  background: var(--gold-bright);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 100svh;
  margin: 0 auto;
  padding: 138px 0 94px;
}

.hero::before {
  position: absolute;
  top: 15%;
  left: -20vw;
  width: 46vw;
  height: 46vw;
  content: "";
  background: radial-gradient(circle, rgba(67, 127, 94, 0.15), transparent 67%);
  filter: blur(12px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.eyebrow b {
  font-weight: 700;
}

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

h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.6vw, 6.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  color: var(--gold-bright);
  font-style: normal;
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--paper-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.app-store-link {
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 10px;
  transition: transform 180ms ease, filter 180ms ease;
}

.app-store-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.app-store-link img {
  width: 180px;
  height: auto;
  min-height: 60px;
}

.device-note {
  max-width: 150px;
  color: rgba(216, 210, 195, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--paper-muted);
  font-size: 0.88rem;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fact-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212, 176, 106, 0.1);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  height: 550px;
  background:
    radial-gradient(circle, rgba(212, 176, 106, 0.12), transparent 58%),
    repeating-radial-gradient(circle, transparent 0 46px, rgba(212, 176, 106, 0.08) 47px 48px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mask-image: radial-gradient(circle, black 0 55%, transparent 76%);
}

.screen-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(270px, 32vw);
  margin: 0;
  overflow: hidden;
  background: #0b231d;
  border: 1px solid rgba(240, 216, 159, 0.48);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.screen-card::after,
.story-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 6px solid rgba(255, 255, 255, 0.045);
  border-radius: inherit;
}

.screen-card img,
.story-frame img {
  width: 100%;
  height: auto;
}

.screen-card-back {
  z-index: 1;
  transform: translate(-90%, -47%) rotate(-7deg);
}

.screen-card-front {
  z-index: 2;
  transform: translate(-8%, -53%) rotate(5deg);
}

.hero-seal {
  position: absolute;
  right: 0;
  bottom: 19%;
  z-index: 3;
  display: grid;
  width: 64px;
  height: 64px;
  color: #f4d9ae;
  background: var(--cinnabar);
  border: 1px solid rgba(255, 247, 232, 0.42);
  border-radius: 13px;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.55rem;
  box-shadow: 0 14px 34px rgba(73, 15, 7, 0.46);
  transform: rotate(8deg);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(216, 210, 195, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

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

.gameplay {
  padding: 132px 0 142px;
  border-top: 1px solid rgba(212, 176, 106, 0.16);
}

.section-heading {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  max-width: 820px;
  margin-bottom: 62px;
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font: 700 0.78rem/1 var(--sans);
  letter-spacing: 0.16em;
}

.section-index::after {
  width: 26px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.section-heading p,
.section-kicker,
.download-copy > p:first-child {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 326px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    var(--ink-900);
  border: 1px solid var(--line);
  border-radius: 4px 34px 4px 34px;
}

.step-card::after {
  position: absolute;
  right: -64px;
  bottom: -64px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(212, 176, 106, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(212, 176, 106, 0.025), 0 0 0 46px rgba(212, 176, 106, 0.018);
}

.step-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(212, 176, 106, 0.34);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.step-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 42px;
  color: var(--paper);
  background: var(--jade-500);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  place-items: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.step-icon.cinnabar {
  background: var(--cinnabar);
}

.step-icon.gold {
  color: var(--ink-950);
  background: var(--gold);
}

.step-icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.step-card h3,
.quiet-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.step-card p,
.quiet-card p {
  margin-bottom: 0;
  color: var(--paper-muted);
  line-height: 1.8;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(72px, 9vw, 140px);
  padding: 128px 0;
}

.story-visual {
  position: relative;
  min-height: 680px;
}

.story-visual::before {
  position: absolute;
  top: 8%;
  right: 0;
  bottom: 8%;
  left: -15%;
  content: "";
  background: radial-gradient(circle, rgba(73, 125, 99, 0.26), transparent 68%);
}

.story-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(316px, 78vw);
  overflow: hidden;
  border: 1px solid rgba(240, 216, 159, 0.5);
  border-radius: 36px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.record-stamp {
  position: absolute;
  right: 2%;
  bottom: 14%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 106px;
  color: var(--ink-950);
  background: var(--gold-bright);
  border: 8px double var(--ink-800);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  transform: rotate(7deg);
}

.record-stamp strong {
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 0.92;
}

.record-stamp span {
  margin-top: 3px;
  font-size: 0.75rem;
  font-weight: 700;
}

.story-copy h2 {
  margin: 16px 0 24px;
}

.story-intro {
  max-width: 610px;
  margin-bottom: 40px;
  color: var(--paper-muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.feature-list {
  margin: 0;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(212, 176, 106, 0.18);
}

.feature-list > div:last-child {
  border-bottom: 1px solid rgba(212, 176, 106, 0.18);
}

.feature-list dt {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
}

.feature-list dd {
  margin: 0;
  color: var(--paper-muted);
}

.quiet-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(212, 176, 106, 0.16);
  border-bottom: 1px solid rgba(212, 176, 106, 0.16);
}

.quiet-card {
  padding: 54px 38px 58px;
}

.quiet-card + .quiet-card {
  border-left: 1px solid rgba(212, 176, 106, 0.16);
}

.quiet-card > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  color: var(--gold-bright);
  border: 1px solid rgba(212, 176, 106, 0.4);
  border-radius: 50%;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.04rem;
}

.download {
  padding: 150px 0;
}

.download-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: 280px;
  padding: clamp(38px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 176, 106, 0.11), transparent 30%),
    linear-gradient(135deg, #103b2f, #081e19 70%);
  border: 1px solid rgba(212, 176, 106, 0.34);
  border-radius: 6px 54px 6px 54px;
  box-shadow: var(--shadow);
}

.download-inner::after {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 420px;
  height: 420px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(212, 176, 106, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(212, 176, 106, 0.02), 0 0 0 82px rgba(212, 176, 106, 0.015);
}

.download-mark {
  display: grid;
  grid-template-columns: repeat(2, 50px);
  grid-template-rows: repeat(2, 50px);
  gap: 6px;
  padding: 10px;
  background: #1c1710;
  border: 2px solid var(--gold);
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
  transform: rotate(-3deg);
}

.download-mark span,
.download-mark i {
  display: grid;
  color: var(--paper);
  background: linear-gradient(145deg, var(--jade-400), #315d49);
  border: 1px solid rgba(240, 216, 159, 0.56);
  border-radius: 10px;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: normal;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18);
}

.download-mark i {
  background: #071713;
}

.download-copy {
  position: relative;
  z-index: 1;
}

.download-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
}

.download-copy > p:last-child {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--paper-muted);
}

.footer-store-link {
  position: relative;
  z-index: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px 40px;
  padding: 38px 0 46px;
  color: rgba(216, 210, 195, 0.6);
  border-top: 1px solid rgba(212, 176, 106, 0.16);
  font-size: 0.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.footer-brand span {
  margin-top: 2px;
}

.copyright,
.legal {
  margin: 0;
}

.legal {
  grid-column: 1 / -1;
  max-width: 820px;
  line-height: 1.65;
}

.privacy-link {
  justify-self: end;
  color: var(--paper-muted);
  font-weight: 700;
  text-decoration-color: rgba(212, 176, 106, 0.6);
  text-underline-offset: 4px;
}

.privacy-link:hover {
  color: var(--gold-bright);
}

body[data-page="privacy"] .site-header {
  position: relative;
  left: auto;
  margin: 0 auto;
  transform: none;
}

.legal-page {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 96px 0 112px;
}

.legal-content h1 {
  max-width: 660px;
  margin: 22px 0 18px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
}

.legal-intro {
  max-width: 680px;
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.85;
}

.legal-updated {
  margin: 26px 0 0;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-section {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.28;
}

.legal-section p,
.legal-section li {
  color: var(--paper-muted);
}

.legal-section p {
  margin: 0;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 1.3em;
}

.legal-section li::marker {
  color: var(--gold);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.steps-grid .reveal:nth-child(2),
.quiet-features .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.steps-grid .reveal:nth-child(3),
.quiet-features .reveal:nth-child(3) {
  transition-delay: 180ms;
}

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

  .desktop-nav {
    display: none;
  }

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

  .hero-copy {
    max-width: 720px;
  }

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

  .screen-card {
    width: min(300px, 38vw);
  }

  .hero-seal {
    right: 13%;
  }

  .scroll-cue {
    display: none;
  }

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

  .step-card {
    min-height: 280px;
  }

  .quiet-card + .quiet-card {
    border-top: 1px solid rgba(212, 176, 106, 0.16);
    border-left: 0;
  }

  .feature-story {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .story-visual {
    min-height: 700px;
  }

  .story-copy {
    max-width: 720px;
  }

  .record-stamp {
    right: calc(50% - 230px);
  }

  .download-inner {
    grid-template-columns: auto 1fr;
  }

  .footer-store-link {
    grid-column: 2;
  }
}

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

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

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    display: none;
  }

  .language-switcher button {
    min-width: 34px;
    min-height: 34px;
    padding: 0 8px;
  }

  .hero {
    gap: 38px;
    padding-top: 124px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .device-note {
    max-width: none;
  }

  .hero-facts {
    gap: 12px 18px;
  }

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

  .halo {
    width: 430px;
    height: 430px;
  }

  .screen-card {
    width: min(218px, 57vw);
    border-radius: 26px;
  }

  .screen-card-back {
    transform: translate(-84%, -47%) rotate(-7deg);
  }

  .screen-card-front {
    transform: translate(-16%, -51%) rotate(5deg);
  }

  .hero-seal {
    right: 3%;
    bottom: 15%;
    width: 54px;
    height: 54px;
  }

  .gameplay {
    padding: 94px 0 100px;
  }

  .section-heading {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    margin-bottom: 42px;
  }

  .section-index::after {
    width: 16px;
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  .step-card {
    min-height: 0;
    padding: 28px;
  }

  .step-icon {
    margin-bottom: 30px;
  }

  .feature-story {
    padding: 92px 0;
  }

  .story-visual {
    min-height: 590px;
  }

  .story-frame {
    width: min(270px, 76vw);
    border-radius: 30px;
  }

  .record-stamp {
    right: 0;
    bottom: 8%;
    width: 90px;
    height: 90px;
  }

  .record-stamp strong {
    font-size: 1.9rem;
  }

  .feature-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .quiet-card {
    padding: 40px 26px 44px;
  }

  .download {
    padding: 92px 0;
  }

  .download-inner {
    grid-template-columns: 1fr;
    padding: 36px 28px 40px;
    border-radius: 4px 36px 4px 36px;
  }

  .download-mark {
    grid-template-columns: repeat(2, 42px);
    grid-template-rows: repeat(2, 42px);
    justify-self: start;
  }

  .footer-store-link {
    grid-column: auto;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .legal {
    grid-column: auto;
  }
}

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

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

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