@font-face {
  font-family: "Pretendard Variable";
  font-style: normal;
  font-weight: 45 920;
  font-display: swap;
  src: url("./assets/fonts/PretendardVariable.woff2") format("woff2-variations");
}

:root {
  --black: #050505;
  --ink: #111111;
  --gray-900: #1a1a1a;
  --gray-700: #424242;
  --gray-500: #747474;
  --gray-200: #d9d9d9;
  --gray-100: #eeeeee;
  --white: #ffffff;
  --line: rgba(5, 5, 5, 0.14);
  --line-inverse: rgba(255, 255, 255, 0.18);
  --header-h: 76px;
  --shell: min(1180px, calc(100% - 40px));
  --font-sans: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --font-serif: var(--font-sans);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.55;
  overflow-x: hidden;
}

body::selection {
  background: var(--black);
  color: var(--white);
}

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

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

button {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 900;
}

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

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-pad {
  padding: clamp(88px, 11vw, 148px) 0;
}

main section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 5vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand img {
  width: 38px;
  height: 24px;
  object-fit: contain;
  filter: invert(1);
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a.is-active {
  border-bottom: 1px solid currentColor;
}

.nav-links a,
.header-cta,
.primary-action,
.secondary-action,
.join-form button {
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  background: currentColor;
}

.nav-links a:hover {
  color: var(--gray-200);
}

.site-header.is-scrolled .nav-links a:hover {
  color: var(--gray-500);
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 850;
}

.header-cta:hover,
.primary-action:hover,
.secondary-action:hover,
.join-form button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("./assets/reading-desk-bw.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: imageSettle 1200ms ease-out forwards;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.12) 58%);
}

.hero-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: calc(var(--header-h) + 30px) 0 clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
}

.hero-copy {
  max-width: 900px;
  color: var(--white);
}

.hero-logo {
  width: clamp(210px, 25vw, 330px);
  margin-bottom: clamp(20px, 3vw, 34px);
}

.hero h1,
.section-title h2,
.monthly-copy h2,
.archive-head h2,
.verification-copy h2,
.join-copy h2,
.trust-layout h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.04;
}

.hero p {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.35vw, 20px);
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-action,
.secondary-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 850;
}

.primary-action {
  background: var(--white);
  color: var(--black);
}

.secondary-action {
  border: 1px solid var(--line-inverse);
  color: var(--white);
}

.secondary-action:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-founder {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.split-layout,
.monthly-layout,
.verification-layout,
.join-layout,
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: start;
}

.section-title h2,
.monthly-copy h2,
.archive-head h2,
.verification-copy h2,
.join-copy h2,
.trust-layout h2 {
  font-size: clamp(36px, 5vw, 74px);
  line-height: 1.05;
}

.section-body p,
.archive-head p,
.verification-copy p,
.join-copy p,
.trust-layout p {
  margin: 0;
  color: var(--gray-700);
  font-size: clamp(16px, 1.35vw, 19px);
  word-break: keep-all;
}

.principles {
  list-style: none;
  margin: clamp(30px, 5vw, 56px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.principles li,
.archive-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 0.52fr) minmax(0, 1fr);
  gap: clamp(16px, 4vw, 42px);
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.principles span,
.archive-row time {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 900;
}

.principles strong {
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.12;
}

.principles p,
.archive-row p {
  margin: 0;
  color: var(--gray-700);
  word-break: keep-all;
}

.monthly-section,
.verification-section {
  background: var(--black);
  color: var(--white);
}

.portrait-media,
.wide-media {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--gray-900);
}

.portrait-media {
  aspect-ratio: 4 / 5;
}

.portrait-media img,
.wide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.monthly-copy {
  align-self: center;
}

.month-panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1px;
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-inverse);
  background: var(--line-inverse);
}

.month-panel time,
.month-panel > div {
  background: var(--black);
}

.month-panel time {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 0.98;
  font-weight: 700;
  white-space: nowrap;
}

.month-panel > div {
  padding: clamp(24px, 4vw, 42px);
}

.month-panel p {
  margin: 0 0 14px;
  color: var(--gray-200);
  font-size: 13px;
  font-weight: 900;
}

.month-panel h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}

.month-panel span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  word-break: keep-all;
}

.reading-meta {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-inverse);
  border-bottom: 1px solid var(--line-inverse);
}

.reading-meta div {
  padding: 22px 0;
  border-right: 1px solid var(--line-inverse);
}

.reading-meta div:last-child {
  border-right: 0;
}

.reading-meta dt {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 850;
}

.reading-meta dd {
  margin: 0;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 900;
}

.archive-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.7fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.archive-list {
  border-top: 1px solid var(--line);
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.archive-filters button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
}

.archive-filters button[aria-pressed="true"] {
  background: var(--black);
  color: var(--white);
}

.archive-row {
  grid-template-columns: 140px minmax(0, 1fr) 130px;
}

.archive-row h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.archive-status {
  justify-self: end;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 850;
}

.verification-layout {
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
}

.verification-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.app-download-section {
  background: var(--white);
}

.app-download-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.section-kicker {
  margin: 0 0 20px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 900;
}

.app-download-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  word-break: keep-all;
}

.app-download-copy > p:last-child {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--gray-700);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
  word-break: keep-all;
}

.app-platforms {
  border-top: 1px solid var(--black);
}

.app-platform {
  display: grid;
  gap: 16px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.app-platform-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.app-platform-head span,
.app-platform-head strong {
  font-size: 12px;
  font-weight: 900;
}

.app-platform-head strong {
  color: var(--gray-500);
}

.app-platform-ready .app-platform-head strong {
  color: var(--black);
}

.app-platform h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.1;
}

.app-platform p,
.app-platform small {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.65;
}

.app-platform small {
  font-size: 13px;
}

.app-download-button,
.app-download-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 900;
}

.app-download-button {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

.app-download-button:hover {
  background: var(--gray-900);
}

.app-download-button-outline {
  background: var(--white);
  color: var(--black);
}

.app-download-button-outline:hover {
  background: var(--surface);
}

.android-chrome-download {
  width: fit-content;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.install-steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
}

.install-status:empty {
  display: none;
}

.install-status {
  margin: 0;
  border-left: 2px solid var(--black);
  padding-left: 10px;
  color: var(--black);
  font-size: 14px;
  line-height: 1.6;
}

.app-download-disabled {
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
}

.app-release-meta {
  display: grid;
  gap: 8px;
  padding-top: 24px;
  color: var(--gray-500);
  font-size: 12px;
}

.app-release-meta code {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--black);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.app-release-meta a {
  width: fit-content;
  border-bottom: 1px solid var(--black);
  color: var(--black);
  font-weight: 850;
}

.wide-media {
  position: relative;
  aspect-ratio: 16 / 10;
}

.wide-media figcaption {
  position: absolute;
  inset: auto 18px 18px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.join-copy img {
  width: 92px;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.join-copy p {
  margin-top: 20px;
}

.join-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
}

.join-form label {
  display: grid;
  gap: 8px;
}

.join-form span {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 850;
}

.join-form input,
.join-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  padding: 14px;
  outline: none;
  resize: vertical;
}

.join-form input:focus,
.join-form textarea:focus {
  border-color: var(--black);
}

.join-form label.has-error input,
.join-form label.has-error textarea {
  border-color: #b3261e;
}

.field-error {
  min-height: 18px;
  color: #b3261e;
  font-size: 12px;
  font-weight: 800;
}

.join-form button {
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gray-700);
  font-size: 14px;
}

.form-note.is-success {
  color: var(--black);
  font-weight: 850;
}

.form-note.is-error {
  color: #b3261e;
  font-weight: 850;
}

.trust-section {
  padding: clamp(56px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
  background: var(--gray-100);
}

.trust-layout {
  align-items: end;
}

.trust-layout dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}

.trust-layout dl div {
  padding: 20px 0 0;
}

.trust-layout dt {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 900;
}

.trust-layout dd {
  margin: 8px 0 0;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 28px clamp(18px, 5vw, 56px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.business-disclosure {
  border-top: 1px solid var(--line-inverse);
  font-size: 13px;
  padding-top: 18px;
}

.business-disclosure summary {
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 750;
  list-style-position: inside;
  width: fit-content;
}

.business-disclosure[open] summary {
  color: var(--white);
}

.business-grid {
  display: grid;
  gap: 8px 24px;
  grid-template-columns: repeat(2, minmax(0, max-content));
  margin-top: 16px;
}

.business-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.legal-business-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  padding: 24px max(20px, calc((100% - 820px) / 2));
}

.mobile-sticky-cta {
  display: none;
}

.legal-page {
  background: var(--white);
}

.legal-header {
  width: var(--shell);
  margin: 0 auto;
  padding: 30px 0;
}

.brand.dark {
  color: var(--black);
}

.legal-shell {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0 110px;
}

.legal-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-shell h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
  word-break: keep-all;
}

.legal-date {
  margin: 18px 0 54px;
  color: var(--gray-500);
  font-weight: 700;
}

.legal-shell section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-shell h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.legal-shell p,
.legal-list {
  margin: 8px 0 0;
  color: var(--gray-700);
  font-size: 16px;
}

.legal-list {
  padding-left: 20px;
}

.legal-action {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 6px;
  background: var(--black);
  color: var(--white);
  padding: 0 18px;
  font-weight: 850;
}

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

.reveal {
  animation: revealUp 700ms ease-out 120ms forwards;
}

.reveal-on-load {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  animation-duration: 700ms;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageSettle {
  to {
    transform: scale(1);
  }
}

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

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--black);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .nav-links a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero-shell,
  .split-layout,
  .monthly-layout,
  .verification-layout,
  .join-layout,
  .trust-layout,
  .archive-head,
  .app-download-layout {
    grid-template-columns: 1fr;
  }

  .hero-founder {
    writing-mode: initial;
  }

  .portrait-media {
    max-width: 620px;
  }

  .archive-row,
  .principles li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .archive-status {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 68px;
    --shell: min(100% - 32px, 100%);
  }

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

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-shell {
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 28px;
  }

  .hero-logo {
    width: min(60vw, 250px);
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero-actions {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .section-pad {
    padding: 76px 0;
  }

  .month-panel {
    grid-template-columns: 1fr;
  }

  .month-panel time {
    min-height: 120px;
  }

  .reading-meta,
  .trust-layout dl {
    grid-template-columns: 1fr;
  }

  .reading-meta div {
    border-right: 0;
    border-bottom: 1px solid var(--line-inverse);
  }

  .reading-meta div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    gap: 18px;
  }

  .app-platform-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .app-download-button,
  .app-download-disabled {
    width: 100%;
  }

  .footer-main {
    flex-direction: column;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--black);
    color: var(--white);
    padding: 0 16px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
  }
}

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