@font-face {
  font-family: "Epilogue";
  src: url("assets/epilogue-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --sage: #8B9D83;
  --pagepop-sage: #94A87D;
  --moss: #606C38;
  --deep-moss: #46522F;
  --sand: #E8DCC7;
  --oat: #D4B895;
  --pale-sage: #DCE8CE;
  --clay: #B08B6E;
  --ink: #283125;
  --muted-ink: #414A3C;
  --line: rgba(70, 82, 47, 0.24);
  --line-strong: rgba(70, 82, 47, 0.42);
  --focus: #394326;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --shell: 1240px;
  --ease: 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--sand);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sand);
  font-family: "Epilogue", "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img,
svg {
  display: block;
}

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

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

button {
  font: inherit;
}

a {
  text-underline-offset: 0.2em;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 750px;
  margin-bottom: 26px;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.068em;
}

h1 em {
  display: block;
  color: var(--deep-moss);
  font-style: normal;
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: clamp(90px, 10vw, 150px);
}

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1002;
  padding: 10px 15px;
  color: var(--sand);
  background: var(--deep-moss);
  border-radius: 12px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1001;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--deep-moss);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 84px;
  background: rgba(232, 220, 199, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(120%);
  transition: min-height var(--ease), border-color var(--ease), background-color var(--ease);
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(232, 220, 199, 0.95);
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: inherit;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 42px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-download)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--deep-moss);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--ease);
}

.site-nav a:not(.nav-download):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding-inline: 18px;
  color: var(--sand);
  background: var(--deep-moss);
  border: 1px solid var(--deep-moss);
  border-radius: 14px;
  transition: transform var(--ease), color var(--ease), background-color var(--ease);
}

.nav-download:hover {
  color: var(--deep-moss);
  background: var(--pale-sage);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, 0.95fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-block: clamp(52px, 7vw, 96px) clamp(80px, 9vw, 122px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--deep-moss);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 36px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 23px;
  border: 1px solid var(--deep-moss);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.15;
  text-decoration: none;
  transition: transform var(--ease), color var(--ease), background-color var(--ease), box-shadow var(--ease);
}

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

.button-primary {
  color: var(--sand);
  background: var(--deep-moss);
  box-shadow: 0 14px 30px rgba(70, 82, 47, 0.14);
}

.button-primary:hover {
  color: var(--deep-moss);
  background: var(--pale-sage);
  box-shadow: 0 18px 34px rgba(70, 82, 47, 0.18);
}

.button-secondary {
  color: var(--deep-moss);
  background: transparent;
}

.button-secondary:hover {
  background: var(--pale-sage);
}

.button-secondary svg,
.guide-link svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--ease);
}

.button-secondary:hover svg,
.guide-link a:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.app-store-button {
  min-width: 194px;
  justify-content: flex-start;
}

.app-store-button > svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: currentColor;
}

.app-store-button > span {
  display: grid;
  gap: 1px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.app-store-button small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted-ink);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.hero-facts li {
  position: relative;
}

.hero-facts li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--moss);
  border-radius: 50%;
  transform: translateY(-50%);
}

.transfer-demo {
  position: relative;
  width: 100%;
  aspect-ratio: 680 / 590;
  min-height: 530px;
  overflow: hidden;
  background: var(--sage);
  border-radius: var(--radius-xl);
  box-shadow: 0 34px 80px rgba(70, 82, 47, 0.16);
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.demo-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(232, 220, 199, 0.36);
  border-radius: 50%;
}

.orbit-one {
  top: -160px;
  right: -130px;
  width: 430px;
  height: 430px;
}

.orbit-two {
  bottom: -220px;
  left: -120px;
  width: 460px;
  height: 460px;
}

.phone-device {
  position: absolute;
  bottom: -47px;
  left: 7%;
  z-index: 4;
  width: 38%;
  max-width: 250px;
  aspect-ratio: 0.51;
  padding: 8px;
  background: var(--ink);
  border: 2px solid var(--deep-moss);
  border-radius: 38px;
  box-shadow: 0 26px 50px rgba(40, 49, 37, 0.24);
  transform: rotate(-3deg);
}

.device-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 31%;
  height: 17px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 34px 14px 16px;
  overflow: hidden;
  background: var(--sand);
  border-radius: 29px;
}

.mini-appbar {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}

.mini-appbar img {
  width: 23px;
}

.mini-add {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: auto;
  color: var(--sand);
  background: var(--deep-moss);
  border-radius: 8px;
  font-size: 17px;
  line-height: 1;
}

.server-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 15px;
  padding: 11px;
  color: var(--ink);
  background: var(--pale-sage);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.server-dot {
  width: 8px;
  height: 8px;
  background: var(--moss);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(96, 108, 56, 0.14);
}

.server-card div {
  display: grid;
}

.server-card small {
  color: var(--muted-ink);
  font-size: 7px;
  line-height: 1.2;
}

.server-card strong {
  font-size: 10px;
  line-height: 1.4;
}

.server-wave {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 12px;
}

.server-wave i {
  display: block;
  width: 2px;
  background: var(--deep-moss);
  border-radius: 3px;
}

.server-wave i:nth-child(1) { height: 4px; }
.server-wave i:nth-child(2) { height: 8px; }
.server-wave i:nth-child(3) { height: 12px; }

.mini-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  font-size: 8px;
}

.mini-heading strong {
  font-size: 10px;
}

.mini-heading span {
  color: var(--deep-moss);
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.book-cover {
  position: relative;
  aspect-ratio: 0.69;
  overflow: hidden;
  border: 1px solid rgba(70, 82, 47, 0.18);
  border-radius: 5px 9px 9px 5px;
  box-shadow: 0 5px 8px rgba(40, 49, 37, 0.1);
}

.book-cover::before,
.download-cover::before {
  position: absolute;
  inset: auto 12% 16% 12%;
  height: 22%;
  content: "";
  border-top: 2px solid rgba(70, 82, 47, 0.35);
  border-bottom: 2px solid rgba(70, 82, 47, 0.26);
}

.cover-one { background: linear-gradient(150deg, var(--pale-sage), var(--sage)); }
.cover-two { background: linear-gradient(150deg, var(--sand), var(--oat)); }
.cover-three { background: linear-gradient(150deg, var(--oat), var(--clay)); }
.cover-four { background: linear-gradient(150deg, var(--sage), var(--deep-moss)); }
.cover-five { background: linear-gradient(150deg, var(--sand), var(--pale-sage)); }
.cover-six { background: linear-gradient(150deg, var(--clay), var(--oat)); }

.kindle-device {
  position: absolute;
  right: -3.5%;
  bottom: 8%;
  z-index: 3;
  width: 45%;
  max-width: 304px;
  aspect-ratio: 0.73;
  padding: 17px 17px 34px;
  background: var(--ink);
  border: 2px solid var(--deep-moss);
  border-radius: 24px;
  box-shadow: 0 28px 56px rgba(40, 49, 37, 0.24);
  transform: rotate(3deg);
}

.kindle-screen {
  height: 100%;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--deep-moss);
  border-radius: 3px;
}

.kindle-logo {
  position: absolute;
  bottom: 7px;
  left: 50%;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  transform: translateX(-50%);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 26px;
  padding: 0 7px;
  background: var(--oat);
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 70%;
  height: 10px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.browser-bar i {
  width: 5px;
  height: 5px;
  background: var(--deep-moss);
  border-radius: 50%;
}

.kindle-page {
  padding: 18px 12px;
}

.kindle-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.kindle-brand img {
  width: 22px;
}

.kindle-page > small {
  display: block;
  margin: 12px 0 9px;
  color: var(--muted-ink);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.download-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 7px;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px;
  background: var(--pale-sage);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.download-cover {
  position: relative;
  width: 28px;
  height: 38px;
  overflow: hidden;
  border-radius: 2px 4px 4px 2px;
}

.download-row div {
  display: grid;
  min-width: 0;
}

.download-row strong {
  overflow: hidden;
  font-size: 7px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.download-row small {
  color: var(--muted-ink);
  font-size: 6px;
}

.download-row b {
  padding: 5px;
  color: var(--sand);
  background: var(--deep-moss);
  border-radius: 5px;
  font-size: 6px;
}

.transfer-route {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.transfer-route path {
  fill: none;
  stroke-linecap: round;
}

.route-shadow {
  stroke: rgba(232, 220, 199, 0.22);
  stroke-width: 11;
}

.route-line {
  stroke: var(--sand);
  stroke-width: 2.5;
  stroke-dasharray: 8 10;
  animation: route-dash 18s linear infinite;
}

.route-label {
  position: absolute;
  top: 23%;
  left: 41%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--deep-moss);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: 0 8px 20px rgba(70, 82, 47, 0.12);
  font-size: 9px;
  font-weight: 800;
  transform: rotate(-4deg);
}

.route-label svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.travelling-book {
  position: absolute;
  top: 65%;
  left: 24%;
  z-index: 6;
  width: 33px;
  height: 42px;
  padding: 4px;
  background: var(--deep-moss);
  border: 2px solid var(--sand);
  border-radius: 5px 8px 8px 5px;
  box-shadow: 0 10px 18px rgba(40, 49, 37, 0.22);
  animation: book-transfer 6.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.travelling-book::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 2px;
  content: "";
  background: rgba(232, 220, 199, 0.48);
}

.travelling-book span,
.travelling-book i {
  display: block;
  height: 2px;
  margin: 19px 3px 0 8px;
  background: var(--sand);
  border-radius: 2px;
}

.travelling-book i {
  width: 55%;
  margin-top: 4px;
}

.demo-note {
  position: absolute;
  top: 38px;
  left: 36px;
  z-index: 3;
  display: grid;
  color: var(--ink);
}

.demo-note strong {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.demo-note span {
  color: var(--muted-ink);
  font-size: 11px;
}

@keyframes route-dash {
  to { stroke-dashoffset: -180; }
}

@keyframes book-transfer {
  0%, 16% { top: 64%; left: 24%; transform: rotate(-12deg) scale(0.92); }
  47% { top: 26%; left: 49%; transform: rotate(7deg) scale(1.05); }
  84%, 100% { top: 43%; left: 76%; transform: rotate(12deg) scale(0.92); }
}

.format-band {
  color: var(--sand);
  background: var(--deep-moss);
  border-block: 1px solid rgba(232, 220, 199, 0.22);
}

.format-band-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 38px;
  align-items: center;
  min-height: 104px;
}

.format-band p {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.format-band p:last-child {
  text-align: right;
}

.format-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.format-list li {
  padding: 7px 11px;
  color: var(--ink);
  background: var(--sand);
  border: 1px solid rgba(232, 220, 199, 0.5);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.section-heading > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 18px;
}

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

.step-card {
  position: relative;
  min-height: 510px;
  padding: 28px;
  background: var(--pale-sage);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--ease), background-color var(--ease);
}

.step-card:nth-child(2) {
  background: var(--oat);
}

.step-card:nth-child(3) {
  background: var(--sage);
}

.step-card:hover {
  transform: translateY(-7px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 35px;
  color: var(--sand);
  background: var(--deep-moss);
  border-radius: 13px;
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.step-card h3 {
  margin-top: 26px;
}

.step-card > p {
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 15px;
}

.step-visual {
  position: relative;
  height: 210px;
  margin-top: 20px;
  overflow: hidden;
  background: rgba(232, 220, 199, 0.48);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.file-stack i {
  position: absolute;
  top: 46px;
  left: 35px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 105px;
  color: var(--deep-moss);
  background: var(--sand);
  border: 1px solid var(--line-strong);
  border-radius: 9px 16px 16px 9px;
  box-shadow: 0 12px 24px rgba(70, 82, 47, 0.1);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.file-stack i:nth-child(2) { transform: translate(26px, -8px) rotate(6deg); }
.file-stack i:nth-child(3) { transform: translate(52px, 4px) rotate(12deg); }

.step-phone {
  position: absolute;
  right: 32px;
  bottom: -30px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 190px;
  background: var(--ink);
  border-radius: 23px;
  transform: rotate(-5deg);
}

.step-phone::before {
  position: absolute;
  inset: 7px;
  content: "";
  background: var(--sand);
  border-radius: 17px;
}

.step-phone img {
  position: relative;
  z-index: 1;
  width: 55px;
}

.connect-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.connect-visual svg {
  width: 112px;
  height: 70px;
  fill: none;
  stroke: var(--deep-moss);
  stroke-width: 5;
  stroke-linecap: round;
}

.connect-phone,
.connect-reader {
  width: 62px;
  height: 116px;
  background: var(--ink);
  border: 2px solid var(--deep-moss);
  border-radius: 15px;
  box-shadow: inset 0 0 0 6px var(--sand);
}

.connect-reader {
  width: 78px;
  height: 108px;
  border-radius: 10px;
}

.download-visual {
  display: grid;
  place-items: center;
}

.browser-window {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  width: 85%;
  padding: 17px;
  background: var(--sand);
  border: 2px solid var(--deep-moss);
  border-radius: 14px;
  box-shadow: 9px 9px 0 rgba(70, 82, 47, 0.16);
}

.browser-address {
  overflow: hidden;
  padding: 8px;
  color: var(--muted-ink);
  background: var(--pale-sage);
  border-radius: 7px;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-window b {
  padding: 9px;
  color: var(--sand);
  background: var(--deep-moss);
  border-radius: 8px;
  font-size: 9px;
}

.guide-link {
  margin: 32px 0 0;
}

.guide-link a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--deep-moss);
  font-size: 14px;
  font-weight: 800;
}

.feature-story {
  background: var(--sage);
  border-block: 1px solid var(--line-strong);
}

.feature-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: clamp(58px, 8vw, 110px);
  align-items: center;
}

.feature-story-copy > p:not(.eyebrow) {
  color: var(--ink);
  font-size: 18px;
}

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

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding-top: 13px;
  border-top: 1px solid rgba(70, 82, 47, 0.24);
  font-size: 14px;
  font-weight: 700;
}

.check-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--deep-moss);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.conversion-panel {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(70, 82, 47, 0.18);
  transform: rotate(1.4deg);
}

.conversion-topbar {
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  align-items: center;
  min-height: 64px;
  padding-inline: 24px;
  background: var(--pale-sage);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.conversion-topbar span,
.conversion-topbar i {
  width: 9px;
  height: 9px;
  background: var(--deep-moss);
  border-radius: 50%;
}

.conversion-topbar i {
  justify-self: end;
  opacity: 0.38;
}

.conversion-topbar strong {
  font-size: 15px;
}

.conversion-body {
  padding: clamp(24px, 5vw, 42px);
}

.conversion-book {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  padding-bottom: 26px;
}

.conversion-cover {
  position: relative;
  height: 124px;
  overflow: hidden;
  background: var(--sage);
  border-radius: 8px 14px 14px 8px;
  box-shadow: 0 14px 22px rgba(70, 82, 47, 0.18);
}

.conversion-cover::before {
  position: absolute;
  inset: 11px 11px auto;
  height: 48px;
  content: "";
  background: var(--pale-sage);
  border-radius: 50% 50% 10px 10px;
  transform: translateY(18px) rotate(-10deg);
}

.conversion-cover span,
.conversion-cover i {
  position: absolute;
  right: 14px;
  bottom: 25px;
  left: 14px;
  height: 2px;
  background: var(--deep-moss);
}

.conversion-cover i {
  right: 34px;
  bottom: 17px;
}

.conversion-book > div:last-child {
  display: grid;
}

.conversion-book small,
.setting-row small {
  color: var(--muted-ink);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.conversion-book strong {
  margin: 4px 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.conversion-book span,
.setting-row strong {
  color: var(--muted-ink);
  font-size: 12px;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  border-top: 1px solid var(--line);
}

.setting-row > div {
  display: grid;
}

.segmented {
  display: flex;
  gap: 3px;
  padding: 3px;
  background: var(--oat);
  border-radius: 10px;
}

.segmented b,
.segmented i {
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 10px;
  font-style: normal;
}

.segmented b {
  color: var(--sand);
  background: var(--deep-moss);
}

.toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 auto;
  background: var(--oat);
  border: 1px solid var(--line);
  border-radius: 99px;
}

.toggle i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.toggle.is-on {
  background: var(--deep-moss);
}

.toggle.is-on i {
  right: 3px;
  left: auto;
}

.prepare-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  margin-top: 22px;
  color: var(--sand);
  background: var(--deep-moss);
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.prepare-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.conversion-badge {
  position: absolute;
  top: 82px;
  right: 24px;
  padding: 7px 10px;
  color: var(--deep-moss);
  background: var(--pale-sage);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 500px;
  padding: clamp(26px, 3.5vw, 42px);
  overflow: hidden;
  background: var(--pale-sage);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-library,
.feature-stats {
  grid-column: span 6;
}

.feature-clippings,
.feature-wallpaper,
.feature-widgets,
.feature-backup {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  min-height: 470px;
}

.feature-stats { background: var(--oat); }
.feature-clippings { background: var(--sage); }
.feature-wallpaper { background: var(--clay); }
.feature-widgets { background: var(--oat); }
.feature-backup { background: var(--pale-sage); }

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

.feature-clippings .feature-card-copy,
.feature-wallpaper .feature-card-copy,
.feature-widgets .feature-card-copy,
.feature-backup .feature-card-copy {
  margin-bottom: 32px;
}

.feature-index {
  display: block;
  margin-bottom: 24px;
  color: var(--deep-moss);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.feature-card h3 {
  max-width: 430px;
}

.feature-card p {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 14px;
}

.library-ui {
  position: absolute;
  right: -34px;
  bottom: -42px;
  left: 38px;
  min-height: 235px;
  padding: 24px;
  background: var(--sand);
  border: 1px solid var(--line-strong);
  border-radius: 25px 25px 0 0;
  box-shadow: 0 -12px 34px rgba(70, 82, 47, 0.1);
  transform: rotate(-2deg);
}

.library-tabs {
  display: flex;
  gap: 7px;
}

.library-tabs span {
  padding: 7px 10px;
  color: var(--muted-ink);
  background: var(--pale-sage);
  border-radius: 9px;
  font-size: 8px;
  font-weight: 750;
}

.library-tabs span:first-child {
  color: var(--sand);
  background: var(--deep-moss);
}

.library-shelf {
  display: flex;
  gap: 16px;
  align-items: end;
  margin-top: 24px;
}

.library-shelf i {
  display: block;
  width: 70px;
  aspect-ratio: 0.7;
  border: 1px solid var(--line);
  border-radius: 5px 10px 10px 5px;
  box-shadow: 0 8px 12px rgba(70, 82, 47, 0.12);
}

.library-shelf i:nth-child(2) { transform: translateY(8px) rotate(3deg); }
.library-shelf i:nth-child(4) { transform: translateY(5px) rotate(-3deg); }

.stats-ui {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  align-items: center;
}

.calendar-sheet {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 22px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.calendar-sheet span {
  color: var(--muted-ink);
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

.calendar-sheet i {
  display: block;
  aspect-ratio: 1;
  background: rgba(139, 157, 131, 0.2);
  border-radius: 50%;
}

.calendar-sheet i.read {
  background: var(--deep-moss);
  box-shadow: 0 0 0 4px rgba(70, 82, 47, 0.12);
}

.radar-chart {
  width: 100%;
  max-height: 150px;
}

.radar-grid {
  fill: none;
  stroke: rgba(70, 82, 47, 0.36);
  stroke-width: 1;
}

.radar-fill {
  fill: rgba(70, 82, 47, 0.26);
  stroke: var(--deep-moss);
  stroke-width: 2;
}

.clipping-ui {
  position: static;
  margin-top: auto;
  padding: 23px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 18px;
  transform: rotate(2deg);
}

.clipping-ui::before {
  display: block;
  margin-bottom: 13px;
  color: var(--deep-moss);
  content: "My Clippings.txt";
  font-size: 9px;
  font-weight: 800;
}

.clipping-lines {
  display: grid;
  gap: 8px;
}

.clipping-lines i {
  display: block;
  height: 5px;
  background: rgba(70, 82, 47, 0.23);
  border-radius: 4px;
}

.clipping-lines i:nth-child(2) { width: 88%; }
.clipping-lines i:nth-child(3) { width: 94%; }
.clipping-lines i:nth-child(4) { width: 62%; }

.clipping-actions {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.clipping-actions span {
  flex: 1;
  padding: 7px;
  color: var(--sand);
  background: var(--deep-moss);
  border-radius: 8px;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

.wallpaper-ui {
  position: static;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 14px;
  margin-top: auto;
}

.wallpaper-reader {
  width: min(70%, 190px);
  flex: 0 0 auto;
  aspect-ratio: 0.74;
  padding: 10px 10px 24px;
  background: var(--ink);
  border-radius: 14px;
  box-shadow: 0 18px 28px rgba(40, 49, 37, 0.22);
  transform: rotate(-4deg);
}

.wallpaper-art {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--pale-sage);
  border-radius: 3px;
}

.wallpaper-art span,
.wallpaper-art i,
.wallpaper-art b {
  position: absolute;
  border-radius: 50% 50% 0 0;
}

.wallpaper-art span {
  right: -20%;
  bottom: -5%;
  width: 100%;
  height: 58%;
  background: var(--sage);
  transform: rotate(-17deg);
}

.wallpaper-art i {
  bottom: -10%;
  left: -22%;
  width: 106%;
  height: 52%;
  background: var(--deep-moss);
  transform: rotate(11deg);
}

.wallpaper-art b {
  top: 16%;
  left: 18%;
  width: 26px;
  height: 26px;
  background: var(--oat);
}

.wallpaper-swatches {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
}

.wallpaper-swatches i {
  display: block;
  width: 28px;
  height: 28px;
  border: 2px solid var(--sand);
  border-radius: 50%;
}

.wallpaper-swatches i:nth-child(1) { background: var(--sage); }
.wallpaper-swatches i:nth-child(2) { background: var(--deep-moss); }
.wallpaper-swatches i:nth-child(3) { background: var(--oat); }

.widget-ui {
  position: static;
  width: 100%;
  max-width: 340px;
  margin: auto auto 0;
}

.widget-books,
.widget-excerpt {
  padding: 14px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(70, 82, 47, 0.1);
}

.widget-books {
  display: flex;
  gap: 8px;
  width: 82%;
  transform: rotate(-4deg);
}

.widget-books i {
  width: 33.333%;
  aspect-ratio: 0.7;
  background: var(--sage);
  border-radius: 3px 6px 6px 3px;
}

.widget-books i:nth-child(2) { background: var(--clay); }
.widget-books i:nth-child(3) { background: var(--deep-moss); }

.widget-excerpt {
  display: grid;
  gap: 6px;
  width: 74%;
  margin: -18px 0 0 auto;
  transform: rotate(3deg);
}

.widget-excerpt span {
  height: 4px;
  background: rgba(70, 82, 47, 0.3);
  border-radius: 3px;
}

.widget-excerpt span:last-child { width: 62%; }

.backup-ui {
  position: static;
  display: grid;
  place-items: center;
  margin-top: auto;
}

.backup-ui svg {
  width: 150px;
  height: 150px;
  padding: 22px;
  color: var(--deep-moss);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(139, 157, 131, 0.16), 0 0 0 32px rgba(139, 157, 131, 0.08);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reading-rhythm {
  background: var(--pale-sage);
  border-block: 1px solid var(--line);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.rhythm-heading {
  position: sticky;
  top: 120px;
}

.rhythm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rhythm-card {
  display: flex;
  flex-direction: column;
  min-height: 450px;
  padding: 24px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.rhythm-card:nth-child(2) {
  margin-top: 56px;
  background: var(--oat);
}

.rhythm-card:nth-child(3) {
  margin-top: 112px;
  background: var(--clay);
}

.rhythm-card img {
  width: 100%;
  height: 210px;
  margin-bottom: 28px;
  object-fit: contain;
}

.rhythm-card h3 {
  font-size: 22px;
}

.rhythm-card p {
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 13px;
}

.privacy-section {
  color: var(--sand);
  background: var(--deep-moss);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: center;
}

.privacy-seal {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--sage);
  border: 1px solid rgba(232, 220, 199, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(139, 157, 131, 0.15), 0 0 0 48px rgba(139, 157, 131, 0.07);
}

.privacy-seal svg {
  width: 66%;
  color: var(--deep-moss);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-seal .seal-ring {
  stroke-dasharray: 3 7;
}

.privacy-seal span {
  position: absolute;
  bottom: 15%;
  color: var(--deep-moss);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-copy .eyebrow {
  color: var(--pale-sage);
}

.privacy-copy p:not(.eyebrow) {
  max-width: 690px;
  color: var(--sand);
  font-size: 18px;
}

.privacy-copy .text-link {
  margin-top: 18px;
  color: var(--sand);
}

.faq-section .section-heading {
  margin-bottom: 34px;
}

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

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 20px 4px;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--deep-moss);
  border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  content: "";
  background: var(--deep-moss);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--ease);
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item > div {
  max-width: 780px;
  padding: 0 60px 28px 4px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: end;
  margin-bottom: clamp(36px, 6vw, 80px);
  padding: clamp(42px, 7vw, 78px);
  overflow: hidden;
  background: var(--sage);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
}

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

.final-cta h2 {
  max-width: 770px;
}

.final-cta p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted-ink);
}

.final-cta > .button {
  position: relative;
  z-index: 1;
}

.cta-decoration span {
  position: absolute;
  border: 1px solid rgba(232, 220, 199, 0.3);
  border-radius: 50%;
}

.cta-decoration span:nth-child(1) {
  top: -210px;
  right: -130px;
  width: 470px;
  height: 470px;
}

.cta-decoration span:nth-child(2) {
  top: -130px;
  right: -50px;
  width: 310px;
  height: 310px;
}

.cta-decoration span:nth-child(3) {
  top: -55px;
  right: 26px;
  width: 155px;
  height: 155px;
}

.site-footer {
  padding-block: 74px 32px;
  color: var(--sand);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand .brand {
  color: var(--sand);
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--sage);
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}

.footer-column h2 {
  margin: 5px 0 13px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--sand);
  font-size: 13px;
  font-weight: 650;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--ease), color var(--ease);
}

.footer-column a:hover {
  color: var(--pale-sage);
  text-decoration-color: currentColor;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(300px, 720px);
  gap: 40px;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 28px;
  color: var(--sage);
  border-top: 1px solid rgba(232, 220, 199, 0.2);
  font-size: 11px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom p:last-child {
  text-align: right;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Supporting pages */

.subpage-body {
  background: var(--sand);
}

.subpage-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.subpage-nav > a:not(.nav-download) {
  text-decoration-color: transparent;
  transition: text-decoration-color var(--ease);
}

.subpage-nav > a:not(.nav-download):hover {
  text-decoration-color: currentColor;
}

.subpage-main {
  min-height: 70vh;
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding-block: 70px;
}

.not-found > img {
  width: 120px;
  margin-bottom: 42px;
}

.not-found h1 {
  max-width: 850px;
}

.not-found > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted-ink);
}

.not-found > .button {
  width: fit-content;
  margin-top: 20px;
}

.subpage-hero {
  max-width: 1000px;
  padding-block: clamp(88px, 11vw, 150px) clamp(76px, 9vw, 120px);
  text-align: center;
}

.subpage-hero .eyebrow {
  justify-content: center;
}

.subpage-hero h1 {
  max-width: 950px;
  margin-inline: auto;
}

.subpage-hero > p:not(.eyebrow):not(.policy-date) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted-ink);
  font-size: clamp(18px, 2vw, 21px);
}

.subpage-hero > .button {
  width: fit-content;
  margin-top: 24px;
}

.subpage-section {
  padding-block: clamp(78px, 9vw, 126px);
}

.subpage-tinted {
  background: var(--pale-sage);
  border-block: 1px solid var(--line);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.support-card {
  min-height: 420px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--pale-sage);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.support-card:nth-child(2) { background: var(--oat); }
.support-card:nth-child(3) { background: var(--sage); }
.support-card:nth-child(4) { background: var(--clay); }

.support-number {
  display: block;
  margin-bottom: 46px;
  color: var(--deep-moss);
  font-size: 12px;
  font-weight: 800;
}

.support-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted-ink);
  list-style: none;
}

.support-card li {
  position: relative;
  padding: 10px 0 0 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.support-card li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--deep-moss);
  border-radius: 50%;
}

.two-column-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.requirements-list {
  margin: 0;
}

.requirements-list > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line-strong);
}

.requirements-list > div:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.requirements-list dt {
  font-size: 13px;
  font-weight: 800;
}

.requirements-list dd {
  margin: 0;
  color: var(--muted-ink);
  font-size: 15px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin-block: clamp(46px, 7vw, 90px);
  padding: clamp(36px, 6vw, 68px);
  background: var(--sage);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-panel p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted-ink);
}

.contact-panel > .button {
  width: fit-content;
}

.compact-footer {
  padding-block: 20px 28px;
}

.compact-footer .footer-bottom {
  grid-column: auto;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.compact-footer a {
  color: var(--sand);
}

.policy-date {
  margin: 28px 0 0;
  color: var(--deep-moss);
  font-size: 13px;
  font-weight: 800;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: clamp(46px, 9vw, 120px);
  align-items: start;
  justify-content: center;
  padding-bottom: clamp(90px, 11vw, 150px);
}

.policy-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--pale-sage);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.policy-toc strong {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.policy-toc a {
  color: var(--muted-ink);
  font-size: 12px;
  font-weight: 650;
  text-decoration-color: transparent;
}

.policy-toc a:hover {
  color: var(--deep-moss);
  text-decoration-color: currentColor;
}

.policy-content > section {
  padding-block: 34px;
  border-top: 1px solid var(--line-strong);
  scroll-margin-top: 110px;
}

.policy-content > section:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-content h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.policy-content p,
.policy-content li {
  color: var(--muted-ink);
  font-size: 15px;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.policy-content a {
  color: var(--deep-moss);
  font-weight: 800;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 42px;
  color: var(--muted-ink);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--deep-moss);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding-block: clamp(72px, 9vw, 120px);
}

.guide-hero h1 {
  font-size: clamp(48px, 6vw, 80px);
}

.guide-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-ink);
  font-size: 18px;
}

.guide-hero-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--sage);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
}

.guide-hero-visual::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(232, 220, 199, 0.32);
  border-radius: 28px;
}

.guide-hero-visual svg {
  position: absolute;
  top: 45px;
  left: 50%;
  width: 64%;
  fill: none;
  stroke: var(--sand);
  stroke-width: 2;
  stroke-dasharray: 5 6;
  stroke-linecap: round;
  transform: translateX(-50%);
}

.guide-phone,
.guide-kindle {
  position: absolute;
  bottom: -24px;
  width: 150px;
  height: 300px;
  background: var(--ink);
  border: 2px solid var(--deep-moss);
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(40, 49, 37, 0.22);
}

.guide-phone {
  left: 42px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 8px var(--sand), 0 24px 50px rgba(40, 49, 37, 0.22);
  transform: rotate(-5deg);
}

.guide-phone img {
  width: 74px;
}

.guide-kindle {
  right: 34px;
  width: 195px;
  height: 278px;
  padding: 17px;
  border-radius: 18px;
  transform: rotate(5deg);
}

.guide-kindle span {
  display: block;
  height: 100%;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.guide-requirements {
  color: var(--sand);
  background: var(--deep-moss);
}

.guide-requirements ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-requirements li {
  display: grid;
  align-content: center;
  min-height: 138px;
  padding: 24px;
  border-left: 1px solid rgba(232, 220, 199, 0.2);
}

.guide-requirements li:last-child {
  border-right: 1px solid rgba(232, 220, 199, 0.2);
}

.guide-requirements strong {
  font-size: 14px;
}

.guide-requirements span {
  margin-top: 5px;
  color: var(--sage);
  font-size: 11px;
}

.guide-steps > ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: 420px;
  padding-block: 54px;
  border-top: 1px solid var(--line-strong);
}

.guide-step:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.guide-step-number {
  align-self: start;
  color: var(--deep-moss);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.06em;
}

.guide-step-copy p {
  color: var(--muted-ink);
}

.guide-step-copy aside {
  padding: 16px 18px;
  color: var(--deep-moss);
  background: var(--pale-sage);
  border-left: 3px solid var(--deep-moss);
  border-radius: 0 12px 12px 0;
  font-size: 12px;
  font-style: normal;
}

.guide-step-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  background: var(--pale-sage);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.guide-step:nth-child(even) .guide-step-art {
  background: var(--oat);
}

.file-guide-art i {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  height: 102px;
  color: var(--deep-moss);
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 8px 14px 14px 8px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.file-guide-art i:nth-child(1) { left: 24px; transform: rotate(-8deg); }
.file-guide-art i:nth-child(2) { left: 48px; transform: rotate(2deg); }
.file-guide-art i:nth-child(3) { left: 75px; transform: rotate(10deg); }

.file-guide-art span {
  position: absolute;
  right: 28px;
  display: grid;
  place-items: center;
  width: 100px;
  height: 164px;
  background: var(--ink);
  border-radius: 20px;
  box-shadow: inset 0 0 0 6px var(--sand);
}

.file-guide-art img {
  width: 50px;
}

.format-guide-art {
  gap: 10px;
}

.format-guide-art span,
.format-guide-art strong {
  display: grid;
  place-items: center;
  width: 88px;
  height: 112px;
  color: var(--deep-moss);
  background: var(--sand);
  border: 1px solid var(--line-strong);
  border-radius: 10px 16px 16px 10px;
  font-size: 10px;
}

.format-guide-art strong {
  color: var(--sand);
  background: var(--deep-moss);
}

.format-guide-art svg {
  width: 56px;
  fill: none;
  stroke: var(--deep-moss);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.network-guide-art {
  gap: 10px;
}

.network-guide-art span,
.network-guide-art i {
  display: block;
  width: 66px;
  height: 130px;
  background: var(--ink);
  border-radius: 14px;
  box-shadow: inset 0 0 0 6px var(--sand);
}

.network-guide-art i {
  width: 82px;
  height: 116px;
  border-radius: 10px;
}

.network-guide-art svg {
  width: 76px;
  fill: none;
  stroke: var(--deep-moss);
  stroke-width: 5;
  stroke-linecap: round;
}

.address-guide-art {
  flex-direction: column;
  gap: 13px;
}

.address-guide-art span {
  padding: 7px 10px;
  color: var(--deep-moss);
  background: var(--sand);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
}

.address-guide-art strong {
  padding: 14px;
  color: var(--sand);
  background: var(--deep-moss);
  border-radius: 12px;
  font-size: 12px;
}

.address-guide-art i {
  width: 10px;
  height: 10px;
  background: var(--deep-moss);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(70, 82, 47, 0.12), 0 0 0 14px rgba(70, 82, 47, 0.07);
}

.browser-guide-art > div {
  width: 86%;
  padding: 20px;
  background: var(--sand);
  border: 2px solid var(--deep-moss);
  border-radius: 12px;
  box-shadow: 8px 8px 0 rgba(70, 82, 47, 0.16);
}

.browser-guide-art span {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
}

.browser-guide-art i {
  display: block;
  margin-top: 18px;
  color: var(--muted-ink);
  font-size: 9px;
  font-style: normal;
}

.browser-guide-art strong {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 10px;
  color: var(--sand);
  background: var(--deep-moss);
  border-radius: 7px;
  font-size: 8px;
}

.guide-checks > p {
  margin-bottom: 18px;
  font-weight: 750;
}

.guide-checks ol {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 22px;
  color: var(--muted-ink);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  }

  .site-nav {
    gap: 22px;
  }

  .feature-clippings,
  .feature-wallpaper,
  .feature-widgets,
  .feature-backup {
    grid-column: span 6;
  }

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

  .rhythm-heading {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 920px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    visibility: hidden;
    background: var(--sand);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    box-shadow: 0 24px 56px rgba(70, 82, 47, 0.2);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 11px;
  }

  .site-nav a:not(.nav-download)::after {
    display: none;
  }

  .nav-download {
    margin-top: 8px;
  }

  .nav-toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    position: absolute;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 220ms ease;
  }

  .nav-toggle span:nth-child(2) { transform: translateY(-4px); }
  .nav-toggle span:nth-child(3) { transform: translateY(4px); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

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

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

  .transfer-demo {
    max-width: 690px;
    margin-inline: auto;
  }

  .format-band-inner {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-block: 28px;
    text-align: center;
  }

  .format-band p:last-child {
    text-align: center;
  }

  .format-list {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .step-card {
    display: grid;
    grid-template-columns: 56px minmax(280px, 0.85fr) 1fr;
    gap: 18px 26px;
    align-items: center;
    min-height: 280px;
  }

  .step-number {
    align-self: start;
  }

  .step-visual {
    grid-row: span 2;
    height: 225px;
    margin-top: 0;
  }

  .step-card h3 {
    align-self: end;
    margin: 0;
  }

  .step-card > p {
    align-self: start;
  }

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

  .conversion-panel {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .privacy-grid {
    grid-template-columns: minmax(220px, 0.6fr) 1fr;
    gap: 54px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .final-cta > .button {
    width: fit-content;
  }

  .two-column-copy {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .policy-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 44px;
  }

  .guide-hero {
    grid-template-columns: 1fr;
  }

  .guide-hero-copy {
    max-width: 780px;
  }

  .guide-hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .guide-requirements ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-requirements li:nth-child(3) {
    border-top: 1px solid rgba(232, 220, 199, 0.2);
  }

  .guide-requirements li:last-child {
    border-top: 1px solid rgba(232, 220, 199, 0.2);
  }

  .guide-step {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .guide-step-art {
    grid-column: 2;
    width: min(100%, 520px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

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

  .section {
    padding-block: 84px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .hero {
    gap: 54px;
    padding-top: 46px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .app-store-button {
    justify-content: center;
  }

  .hero-facts {
    gap: 8px 20px;
  }

  .transfer-demo {
    min-height: 0;
    border-radius: 30px;
  }

  .demo-note {
    top: 25px;
    left: 25px;
  }

  .demo-note strong {
    font-size: 16px;
  }

  .demo-note span {
    font-size: 9px;
  }

  .phone-device {
    bottom: -35px;
    padding: 5px;
    border-radius: 24px;
  }

  .phone-screen {
    padding: 25px 8px 10px;
    border-radius: 18px;
  }

  .device-speaker {
    top: 7px;
    height: 11px;
  }

  .mini-appbar {
    font-size: 8px;
  }

  .mini-appbar img {
    width: 15px;
  }

  .mini-add {
    width: 15px;
    height: 15px;
    font-size: 11px;
    border-radius: 5px;
  }

  .server-card {
    gap: 5px;
    margin-top: 8px;
    padding: 7px;
    border-radius: 8px;
  }

  .server-card small { font-size: 5px; }
  .server-card strong { font-size: 7px; }
  .server-wave { transform: scale(0.7); }
  .mini-heading { margin-top: 10px; }
  .mini-heading strong { font-size: 7px; }
  .mini-heading span { font-size: 6px; }
  .book-grid { gap: 5px; margin-top: 6px; }
  .book-cover { border-radius: 3px 5px 5px 3px; }

  .kindle-device {
    padding: 10px 10px 23px;
    border-radius: 14px;
  }

  .kindle-logo {
    bottom: 4px;
    font-size: 7px;
  }

  .browser-bar {
    height: 17px;
    padding: 0 4px;
  }

  .kindle-page {
    padding: 10px 7px;
  }

  .kindle-brand {
    gap: 4px;
    font-size: 7px;
  }

  .kindle-brand img { width: 14px; }
  .kindle-page > small { margin: 7px 0 5px; font-size: 5px; }
  .download-row { grid-template-columns: 18px 1fr auto; gap: 4px; margin-bottom: 4px; padding: 4px; border-radius: 5px; }
  .download-cover { width: 18px; height: 25px; }
  .download-row strong { font-size: 4px; }
  .download-row small { font-size: 4px; }
  .download-row b { padding: 3px; font-size: 4px; }

  .route-label {
    top: 22%;
    padding: 5px 7px;
    font-size: 6px;
  }

  .route-label svg {
    width: 10px;
    height: 10px;
  }

  .travelling-book {
    width: 23px;
    height: 30px;
    border-width: 1px;
  }

  .travelling-book span { margin: 12px 2px 0 5px; }
  .travelling-book i { margin: 3px 2px 0 5px; }

  .step-card {
    display: block;
    min-height: 0;
    padding: 22px;
  }

  .step-visual {
    height: 200px;
    margin-top: 18px;
  }

  .step-card h3 {
    margin-top: 24px;
  }

  .feature-library,
  .feature-stats,
  .feature-clippings,
  .feature-wallpaper,
  .feature-widgets,
  .feature-backup {
    grid-column: 1 / -1;
  }

  .feature-card {
    min-height: 470px;
  }

  .feature-clippings,
  .feature-wallpaper,
  .feature-widgets,
  .feature-backup {
    min-height: 450px;
  }

  .library-shelf {
    gap: 10px;
  }

  .library-shelf i {
    width: 58px;
  }

  .stats-ui {
    grid-template-columns: 1fr;
  }

  .radar-chart {
    display: none;
  }

  .rhythm-cards {
    grid-template-columns: 1fr;
  }

  .rhythm-card,
  .rhythm-card:nth-child(2),
  .rhythm-card:nth-child(3) {
    min-height: 0;
    margin-top: 0;
  }

  .rhythm-card img {
    height: 180px;
  }

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

  .privacy-seal {
    width: min(72vw, 310px);
    margin-inline: auto;
  }

  .faq-item summary {
    min-height: 82px;
    font-size: 18px;
  }

  .faq-item > div {
    padding-right: 8px;
  }

  .final-cta {
    width: min(calc(100% - 20px), var(--shell));
    padding: 34px 24px;
    border-radius: 28px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .footer-bottom p:last-child {
    text-align: left;
  }

  .subpage-nav {
    gap: 12px;
  }

  .subpage-nav > a:not(.nav-download) {
    display: none;
  }

  .subpage-nav .nav-download {
    min-height: 38px;
    padding: 8px 14px;
  }

  .subpage-hero {
    padding-block: 70px 74px;
    text-align: left;
  }

  .subpage-hero .eyebrow {
    justify-content: flex-start;
  }

  .subpage-hero > p:not(.eyebrow):not(.policy-date) {
    margin-inline: 0;
  }

  .subpage-hero > .button {
    width: 100%;
  }

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

  .support-card {
    min-height: 0;
  }

  .support-number {
    margin-bottom: 30px;
  }

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

  .contact-panel {
    width: min(calc(100% - 20px), var(--shell));
    padding: 34px 24px;
    border-radius: 28px;
  }

  .contact-panel > .button {
    width: 100%;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }

  .guide-hero {
    gap: 50px;
    padding-block: 60px 72px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .guide-hero-visual {
    min-height: 390px;
  }

  .guide-phone {
    left: 25px;
    width: 120px;
    height: 240px;
  }

  .guide-kindle {
    right: 20px;
    width: 160px;
    height: 228px;
  }

  .guide-requirements ul {
    grid-template-columns: 1fr;
  }

  .guide-requirements li,
  .guide-requirements li:nth-child(3),
  .guide-requirements li:last-child {
    min-height: 105px;
    border-top: 1px solid rgba(232, 220, 199, 0.2);
    border-right: 1px solid rgba(232, 220, 199, 0.2);
  }

  .guide-requirements li:first-child {
    border-top: 0;
  }

  .guide-step {
    display: block;
    min-height: 0;
    padding-block: 46px;
  }

  .guide-step-number {
    margin-bottom: 28px;
  }

  .guide-step-art {
    width: 100%;
    min-height: 230px;
    margin-top: 30px;
  }
}

@media (max-width: 420px) {
  .hero-facts li:not(:last-child)::after {
    display: none;
  }

  .hero-facts {
    display: grid;
    gap: 5px;
  }

  .format-list li {
    padding-inline: 8px;
  }

  .conversion-body {
    padding: 20px;
  }

  .conversion-book {
    grid-template-columns: 70px 1fr;
  }

  .conversion-cover {
    height: 100px;
  }

  .segmented b,
  .segmented i {
    padding: 6px;
    font-size: 8px;
  }

  .conversion-badge {
    top: 75px;
    right: 15px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

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