:root {
  color-scheme: light;
  --ink: #11110f;
  --ink-soft: #34322e;
  --muted: #6d6860;
  --paper: #fbfaf7;
  --paper-deep: #f1eee7;
  --surface: #ffffff;
  --line: rgba(17, 17, 15, 0.13);
  --line-strong: rgba(17, 17, 15, 0.24);
  --inverse: #f8f7f3;
  --accent-gold: #a57620;
  --accent-green: #147f62;
  --accent-blue: #376fd0;
  --accent-rose: #c85b75;
  --accent-violet: #7f67c8;
  --shadow-soft: 0 18px 60px rgba(17, 17, 15, 0.12);
  --shadow-hard: 0 26px 80px rgba(17, 17, 15, 0.2);
  --max-width: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 15, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -2;
}

img,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(55, 111, 208, 0.45);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--inverse);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: calc(var(--max-width) + 48px);
  margin: 0 auto;
  padding: 14px 24px;
  backdrop-filter: blur(20px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 8px 16px;
  z-index: -1;
  background: rgba(251, 250, 247, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 38px rgba(17, 17, 15, 0.08);
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand-mark img,
.footer-brand img {
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(17, 17, 15, 0.08);
}

.brand-mark span,
.footer-brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(17, 17, 15, 0.07);
  color: var(--ink);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--inverse);
  padding-inline: 16px;
}

.site-nav .nav-cta:hover {
  background: #000000;
  color: var(--inverse);
}

.site-nav svg,
.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--inverse);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero-section {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: clamp(30px, 4.4vw, 48px) 24px 28px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.94) 45%, rgba(241, 238, 231, 0.68) 100%);
}

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

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  max-width: var(--max-width);
  min-height: min(580px, calc(100svh - 250px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 670px;
  padding: clamp(10px, 2vw, 24px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(5.2rem, 13vw, 10.8rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 2vw, 1.56rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 720;
  line-height: 1.12;
}

.hero-subcopy,
.section-copy p,
.section-heading p:not(.eyebrow),
.final-copy p,
.support-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-subcopy {
  max-width: 640px;
  margin-bottom: 30px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: var(--inverse);
  box-shadow: 0 18px 48px rgba(17, 17, 15, 0.2);
}

.button-primary:hover {
  box-shadow: 0 20px 58px rgba(17, 17, 15, 0.26);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hero-stats dt {
  font-size: clamp(1.12rem, 3vw, 1.55rem);
  font-weight: 820;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  justify-self: center;
  width: min(100%, 430px);
  perspective: 1400px;
}

.phone-mock {
  --tilt-x: -2deg;
  --tilt-y: -7deg;
  position: relative;
  width: min(88vw, 390px);
  min-height: 560px;
  padding: 14px;
  border-radius: 42px;
  background: #11110f;
  box-shadow: var(--shadow-hard);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms ease;
  animation: phone-float 8s ease-in-out infinite;
}

.phone-mock::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 88px;
  height: 22px;
  transform: translateX(-50%);
  background: #050505;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.mock-screen {
  min-height: 532px;
  overflow: hidden;
  padding: 26px 15px 18px;
  border-radius: 32px;
  background: var(--paper);
}

.screenshot-screen {
  display: flex;
  min-height: 532px;
  padding: 0;
  background: #f7f5ef;
}

.screenshot-screen img {
  width: 100%;
  height: 100%;
  min-height: 532px;
  object-fit: cover;
  object-position: top center;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 16px;
}

.mock-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 760;
}

.mock-title img {
  border-radius: 8px;
}

.mock-progress {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 5px solid rgba(17, 17, 15, 0.12);
  border-top-color: var(--accent-green);
  border-right-color: var(--accent-blue);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 820;
}

.mock-post {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 8px;
  border-top: 1px solid var(--line);
}

.mock-post-active {
  border-top: 0;
}

.book-cover {
  width: 56px;
  height: 76px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  box-shadow: 0 10px 24px rgba(17, 17, 15, 0.16);
}

.cover-one {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 42%),
    linear-gradient(155deg, var(--accent-gold), #efe2c8 44%, var(--accent-green));
}

.cover-two {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(160deg, var(--accent-blue), #d9e4fb 46%, #1b1b1a);
}

.cover-three {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(160deg, var(--accent-rose), #f1d9df 44%, var(--accent-violet));
}

.mock-post-copy {
  min-width: 0;
}

.mock-book {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 760;
  text-transform: uppercase;
}

.mock-post h2,
.mock-post h3 {
  margin-bottom: 7px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.12;
}

.mock-post p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.mock-callout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px;
  padding: 14px;
  background: rgba(20, 127, 98, 0.09);
  border: 1px solid rgba(20, 127, 98, 0.18);
  border-radius: 16px;
}

.mock-callout svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--accent-green);
}

.mock-callout p {
  margin-bottom: 0;
  font-weight: 720;
  line-height: 1.35;
}

.section-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.section-cue svg {
  width: 20px;
  height: 20px;
}

.feature-band,
.habit-section,
.screens-section,
.final-cta {
  padding: clamp(72px, 10vw, 132px) 24px;
}

.feature-band {
  padding-top: 8px;
}

.section-heading,
.section-copy,
.final-copy {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  max-width: 860px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.feature-grid,
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-tile,
.metric-card,
.screenshot-card,
.support-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 42px rgba(17, 17, 15, 0.06);
}

.feature-tile {
  padding: 28px;
}

.feature-tile svg,
.metric-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--ink);
}

.feature-tile:nth-child(2) svg {
  color: var(--accent-blue);
}

.feature-tile:nth-child(3) svg {
  color: var(--accent-green);
}

.feature-tile p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 760;
  color: currentColor;
}

.habit-section {
  background:
    linear-gradient(180deg, var(--paper), var(--paper-deep));
}

.habit-panel {
  max-width: var(--max-width);
  margin: 0 auto;
}

.habit-panel .section-copy {
  margin-bottom: 28px;
}

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

.metric-card {
  min-height: 230px;
  padding: 28px;
}

.metric-value {
  margin-bottom: 6px;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  font-weight: 840;
  line-height: 0.95;
  letter-spacing: 0;
}

.metric-label {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.screens-section {
  background: var(--surface);
}

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

.screenshot-card {
  overflow: hidden;
  margin: 0;
  padding: 10px;
}

.screen-art {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 360px;
  overflow: hidden;
  padding: 18px;
  border-radius: 14px;
  background: var(--paper-deep);
}

.screenshot-art {
  display: block;
  aspect-ratio: 1206 / 2622;
  min-height: 0;
  padding: 0;
  background: #f7f5ef;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 15, 0.08);
}

.screenshot-art::before {
  content: none;
}

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

.screenshot-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 15, 0.08);
}

.screen-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 44%),
    linear-gradient(155deg, var(--wash-a), var(--wash-b) 48%, var(--wash-c));
  opacity: 0.88;
}

.screen-art span {
  position: relative;
  z-index: 1;
  display: block;
  height: 68px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 15, 0.08);
}

.screen-art span:nth-child(2) {
  width: 82%;
}

.screen-art span:nth-child(3) {
  width: 68%;
}

.feed-art {
  --wash-a: #d8c08c;
  --wash-b: #f7eee0;
  --wash-c: #147f62;
}

.thread-art {
  --wash-a: #376fd0;
  --wash-b: #edf3ff;
  --wash-c: #11110f;
}

.stats-art {
  --wash-a: #c85b75;
  --wash-b: #f7e4e9;
  --wash-c: #7f67c8;
}

.library-art {
  --wash-a: #147f62;
  --wash-b: #e7f4ee;
  --wash-c: #a57620;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  text-align: center;
}

.final-copy {
  max-width: 760px;
}

.final-copy img {
  margin: 0 auto 22px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(17, 17, 15, 0.12);
}

.final-copy .button {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: calc(var(--max-width) + 48px);
  margin: 0 auto;
  padding: 28px 24px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

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

.site-footer p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.legal-main,
.not-found-main {
  padding: clamp(54px, 8vw, 96px) 24px clamp(80px, 12vw, 142px);
}

.legal-hero,
.legal-body {
  max-width: 850px;
  margin: 0 auto;
}

.legal-hero {
  padding: 36px 0 26px;
}

.legal-hero h1,
.support-hero h1,
.not-found-card h1 {
  margin-bottom: 14px;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
}

.legal-hero p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.legal-body {
  padding: clamp(26px, 5vw, 46px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(17, 17, 15, 0.07);
}

.legal-body .notice {
  padding: 16px 18px;
  background: rgba(55, 111, 208, 0.08);
  border: 1px solid rgba(55, 111, 208, 0.16);
  border-radius: 16px;
  color: var(--ink-soft);
  font-weight: 690;
}

.legal-body h2 {
  margin-top: 36px;
  margin-bottom: 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.12;
}

.legal-body p {
  color: var(--ink-soft);
}

.legal-body a {
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 102px) 24px 44px;
}

.support-hero .section-copy {
  margin: 0;
}

.support-card {
  padding: 30px;
}

.support-card img {
  margin-bottom: 22px;
  border-radius: 18px;
}

.support-card h2 {
  overflow-wrap: anywhere;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.12;
}

.not-found-main {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.not-found-card {
  width: min(100%, 680px);
  padding: clamp(34px, 7vw, 64px);
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.not-found-card img {
  margin: 0 auto 18px;
  border-radius: 22px;
}

.not-found-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.not-found-card .button {
  margin-top: 14px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms ease, transform 640ms ease;
}

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

@keyframes phone-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .support-hero {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-visual {
    width: min(100%, 390px);
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .site-header::before {
    inset-inline: 8px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 12px;
    background: rgba(251, 250, 247, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 46px;
  }

  .hero-section {
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .hero-section::before {
    background:
      linear-gradient(110deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.93) 54%, rgba(241, 238, 231, 0.68) 100%);
  }

  .hero-grid {
    display: block;
  }

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

  .hero-visual {
    display: none;
  }

  .hero-stats div {
    padding: 10px;
    border-radius: 14px;
  }

  .hero-stats dt {
    font-size: 1.05rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .feature-grid,
  .habit-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .screen-art {
    min-height: 280px;
  }

  .legal-body {
    padding-inline: 22px;
  }
}

@media (max-width: 440px) {
  .hero-section,
  .feature-band,
  .habit-section,
  .screens-section,
  .final-cta,
  .legal-main {
    padding-inline: 18px;
  }

  .brand-mark span {
    font-size: 1.15rem;
  }

  .mock-post {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .book-cover {
    width: 48px;
    height: 66px;
  }

}

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

  .phone-mock {
    transform: none;
  }
}
