@charset "UTF-8";
/* 作者：搭客佬
官网： */

:root {
  --orange: #ff8a4c;
  --orange-deep: #ed6536;
  --cream: #fff7e9;
  --paper: #fffcf6;
  --mint: #79cda5;
  --mint-soft: #e2f6eb;
  --blush: #f39487;
  --blush-soft: #fff0ed;
  --cocoa: #49352e;
  --ink: #2d2927;
  --muted: #776d68;
  --line: #e8d5c3;
  --white: #ffffff;
  --shell: 1200px;
  --header-height: 72px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

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

.content-section {
  padding: 94px 0;
  scroll-margin-top: var(--header-height);
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-menu { background-image: url("../icons/menu.svg"); }
.icon-search { background-image: url("../icons/search.svg"); }
.icon-spark { background-image: url("../icons/spark.svg"); }
.icon-books { background-image: url("../icons/books.svg"); }
.icon-download { background-image: url("../icons/download.svg"); }
.icon-arrow { background-image: url("../icons/arrow-right.svg"); }
.icon-bell { background-image: url("../icons/bell.svg"); }
.icon-pocket { background-image: url("../icons/pocket.svg"); }
.icon-globe { background-image: url("../icons/globe.svg"); }
.icon-mail { background-image: url("../icons/mail.svg"); }
.icon-top { background-image: url("../icons/top.svg"); }

.postal-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(255, 252, 246, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(73, 53, 46, 0.07);
}

.header-row {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.site-brand img {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.brand-words {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.12;
}

.brand-words strong {
  color: var(--cocoa);
  font-size: 19px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand-words span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  display: block;
  padding: 23px 0 22px;
  color: #655a55;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.18s ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: var(--orange);
  border-radius: 4px 4px 0 0;
  transform: scaleX(0);
  transition: transform 0.18s ease;
}

.primary-nav a:hover,
.primary-nav a.is-current {
  color: var(--orange-deep);
}

.primary-nav a:hover::after,
.primary-nav a.is-current::after {
  transform: scaleX(1);
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-download {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  background: var(--cocoa);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 22px;
  height: 22px;
}

.parcel-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(255, 138, 76, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 76, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.parcel-hero::before,
.parcel-hero::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(243, 148, 135, 0.35);
  border-radius: 50%;
}

.parcel-hero::before {
  top: 58px;
  left: -70px;
  width: 210px;
  height: 210px;
}

.parcel-hero::after {
  right: -90px;
  bottom: 50px;
  width: 260px;
  height: 260px;
  box-shadow: inset 0 0 0 18px rgba(121, 205, 165, 0.12);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  min-height: 720px;
  align-items: center;
}

.hero-label-card {
  position: relative;
  width: min(100%, 720px);
  padding: 58px 64px 48px;
  color: var(--cocoa);
  background: #f5a077;
  border: 2px solid #e97e51;
  border-radius: 28px;
  box-shadow: 14px 14px 0 rgba(121, 205, 165, 0.7);
}

.hero-label-card::before {
  position: absolute;
  inset: 13px;
  content: "";
  pointer-events: none;
  border: 1px dashed rgba(73, 53, 46, 0.48);
  border-radius: 21px;
}

.paper-tape {
  position: absolute;
  z-index: 2;
  top: -16px;
  left: 46%;
  width: 116px;
  height: 33px;
  background: rgba(255, 235, 190, 0.88);
  transform: rotate(3deg);
}

.postal-mark {
  position: absolute;
  top: 35px;
  right: 38px;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  color: rgba(73, 53, 46, 0.62);
  border: 2px solid rgba(73, 53, 46, 0.5);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transform: rotate(9deg);
}

.hero-kicker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  color: var(--white);
  background: var(--orange-deep);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.hero-kicker .icon {
  width: 17px;
  height: 17px;
}

.hero-label-card h1 {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-shadow: 3px 3px 0 var(--cream);
}

.hero-slogan {
  position: relative;
  z-index: 2;
  margin-top: 15px;
  color: var(--orange-deep);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.2;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 530px;
  margin-top: 14px;
  font-size: 16px;
}

.hero-chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-chips span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  color: var(--cocoa);
  background: rgba(255, 252, 246, 0.77);
  border: 1px solid rgba(73, 53, 46, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-chips .icon {
  width: 16px;
  height: 16px;
  filter: brightness(0.28) sepia(0.4);
}

.hero-download {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 250px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 29px;
  padding: 0 27px;
  color: var(--white);
  background: var(--cocoa);
  border: 2px solid var(--cocoa);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}

.hero-download:hover {
  color: var(--cocoa);
  background: var(--cream);
}

.hero-download .icon,
.delivery-download .icon {
  width: 18px;
  height: 18px;
}

.age-label {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 17px;
  color: #674d43;
  font-size: 13px;
}

.parcel-code {
  position: absolute;
  right: 48px;
  bottom: 25px;
  color: rgba(73, 53, 46, 0.48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.phone-showcase {
  position: relative;
  display: flex;
  min-width: 0;
  align-self: stretch;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 52px;
}

.phone-device {
  position: relative;
  z-index: 4;
  width: 348px;
  height: 650px;
  margin-left: auto;
  overflow: hidden;
  background: var(--cocoa);
  border: 10px solid var(--cocoa);
  border-bottom: 0;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 28px 60px rgba(73, 53, 46, 0.32);
}

.phone-notch {
  position: absolute;
  z-index: 5;
  top: 9px;
  left: 50%;
  width: 86px;
  height: 22px;
  background: var(--cocoa);
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  color: #2c2927;
  background: var(--white);
  border-radius: 34px 34px 0 0;
}

.phone-status {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  font-size: 10px;
  font-weight: 900;
}

.phone-tabs {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 13px 12px;
  color: #746b67;
  font-size: 11px;
}

.phone-tabs strong {
  color: var(--orange-deep);
  font-size: 18px;
}

.phone-banner {
  position: relative;
  height: 205px;
  margin: 0 12px;
  overflow: hidden;
  border-radius: 10px;
}

.phone-banner::after {
  position: absolute;
  inset: 44% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(48, 32, 27, 0.9));
}

.phone-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-banner > div {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 12px;
  left: 13px;
  color: var(--white);
}

.phone-banner strong,
.phone-banner span {
  display: block;
}

.phone-banner strong { font-size: 14px; }
.phone-banner span { margin-top: 2px; font-size: 10px; }

.phone-tools {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 18px 7px 15px;
}

.phone-tools span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
}

.phone-tools i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--cocoa);
  background: var(--cream);
  border: 1px solid var(--orange);
  border-radius: 10px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.phone-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 13px 9px;
}

.phone-title strong { font-size: 14px; }
.phone-title span { color: #958d89; font-size: 10px; }

.phone-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 13px 58px;
}

.phone-covers img {
  width: 100%;
  height: 122px;
  object-fit: cover;
  border-radius: 6px;
}

.phone-covers figcaption {
  margin-top: 4px;
  overflow: hidden;
  font-size: 9px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-footer-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 12px 5px 14px;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid #ece2dc;
  text-align: center;
}

.phone-footer-nav span {
  color: #837b77;
  font-size: 10px;
}

.phone-footer-nav .active {
  color: var(--orange-deep);
  font-weight: 900;
}

.cat-peek {
  position: absolute;
  z-index: 5;
  right: 287px;
  bottom: 34px;
  width: 126px;
  padding: 8px;
  background: var(--white);
  border: 4px solid var(--orange);
  border-radius: 50%;
  box-shadow: 7px 7px 0 var(--mint);
}

.cat-peek img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.postcard-note {
  position: absolute;
  top: 110px;
  right: 320px;
  color: var(--orange-deep);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  transform: rotate(-8deg);
}

.postcard-note::after {
  display: block;
  width: 58px;
  height: 2px;
  margin: 8px auto 0;
  content: "";
  background: var(--mint);
}

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

.section-number {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.section-heading h2 {
  color: var(--cocoa);
  font-size: clamp(31px, 3.6vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

.selection-heading,
.calendar-heading,
.atlas-heading,
.letters-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.selection-section {
  background: var(--paper);
}

.edition-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.edition-tabs button,
.keyword-list button {
  min-height: 38px;
  padding: 0 16px;
  color: #6b615c;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.edition-tabs button:hover,
.edition-tabs button.is-active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.edition-feedback {
  min-height: 22px;
  margin: -20px 0 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.selection-board {
  display: grid;
  grid-template-columns: 1.08fr repeat(4, 0.72fr);
  grid-template-rows: 150px 310px;
  gap: 14px;
}

.selection-item[hidden] {
  display: none;
}

.cover-feature {
  position: relative;
  grid-row: 1 / 3;
  overflow: hidden;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: 9px 9px 0 var(--cream);
}

.cover-feature::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(63, 43, 37, 0.93));
}

.cover-feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-feature > div {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 21px;
  left: 22px;
  color: var(--white);
}

.cover-feature > div span {
  display: inline-flex;
  padding: 4px 9px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.cover-feature h3 {
  margin-top: 8px;
  font-size: 27px;
}

.cover-feature p {
  margin-top: 6px;
  color: #f4e8e1;
  font-size: 13px;
}

.editor-note {
  display: flex;
  grid-column: 2 / 6;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 28px;
  overflow: hidden;
  background: var(--mint-soft);
  border: 1px dashed #55aa82;
  border-radius: var(--radius);
}

.editor-note span {
  color: #2a8c64;
  font-size: 13px;
  font-weight: 900;
}

.editor-note p {
  margin-top: 7px;
  color: var(--cocoa);
  font-size: 20px;
  font-weight: 800;
}

.editor-note img {
  width: 95px;
  height: 95px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 50%;
}

.mini-edition {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mini-edition img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.mini-edition > div {
  padding: 13px;
}

.mini-edition > div span {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
}

.mini-edition h3 {
  margin-top: 2px;
  font-size: 17px;
}

.mini-edition p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.calendar-section {
  position: relative;
  overflow: hidden;
  background: var(--mint-soft);
}

.calendar-section::before {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 330px;
  height: 330px;
  content: "";
  border: 3px dashed rgba(73, 53, 46, 0.18);
  border-radius: 50%;
}

.calendar-section .page-wrap {
  position: relative;
  z-index: 2;
}

.calendar-actions {
  display: flex;
  gap: 9px;
}

.calendar-actions button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  color: var(--cocoa);
  background: var(--white);
  border: 1px solid var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.calendar-actions button:hover,
.calendar-actions button[aria-pressed="true"] {
  color: var(--white);
  background: var(--orange);
}

.calendar-actions .icon {
  width: 17px;
  height: 17px;
  filter: brightness(0.45) sepia(0.4);
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(370px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.week-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.week-tabs button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 288px;
  align-items: center;
  flex-direction: column;
  padding: 28px 8px 20px;
  background: var(--paper);
  border: 1px solid #b9dfcb;
  border-radius: 14px;
  box-shadow: 4px 4px 0 rgba(73, 53, 46, 0.08);
  cursor: pointer;
}

.week-tabs button::after {
  position: absolute;
  bottom: 22px;
  width: 17px;
  height: 17px;
  content: "";
  background: var(--blush);
  border-radius: 55% 45% 58% 42%;
  box-shadow: -9px -6px 0 -4px var(--blush), 9px -6px 0 -4px var(--blush);
}

.week-tabs strong {
  font-size: 15px;
}

.week-tabs span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.week-tabs i {
  margin-top: 48px;
  color: #b1a39c;
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
}

.week-tabs button:hover,
.week-tabs button.is-active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange-deep);
}

.week-tabs button.is-active span,
.week-tabs button.is-active i,
.week-tabs button:hover span,
.week-tabs button:hover i {
  color: var(--white);
}

.week-tabs button.is-active::after,
.week-tabs button:hover::after {
  background: var(--white);
  box-shadow: -9px -6px 0 -4px var(--white), 9px -6px 0 -4px var(--white);
}

.update-notebook {
  position: relative;
  padding: 27px 25px 23px 43px;
  background: var(--paper);
  border: 1px solid #b9dfcb;
  border-radius: 12px;
  box-shadow: 7px 7px 0 rgba(73, 53, 46, 0.12);
}

.update-notebook::before {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 18px;
  width: 10px;
  content: "";
  background: repeating-linear-gradient(to bottom, var(--cocoa) 0 3px, transparent 3px 16px);
  opacity: 0.35;
}

.notebook-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--line);
}

.notebook-heading span {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
}

.notebook-heading strong {
  font-size: 19px;
}

.update-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #eee1d8;
}

.update-list img {
  width: 52px;
  height: 64px;
  object-fit: cover;
  border-radius: 7px;
}

.update-list strong,
.update-list span {
  display: block;
}

.update-list strong { font-size: 14px; }
.update-list span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.update-list em { color: #31946d; font-size: 12px; font-style: normal; font-weight: 900; white-space: nowrap; }

.update-notebook > p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
}

.storage-section {
  background: var(--cream);
}

.storage-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.85fr;
  gap: 16px;
  align-items: stretch;
}

.storage-drawer {
  position: relative;
  padding: 27px;
  background: var(--paper);
  border: 2px solid #d9b58f;
  border-radius: 8px 8px 18px 18px;
  box-shadow: inset 0 8px 0 #f0c899, 6px 7px 0 rgba(73, 53, 46, 0.09);
}

.storage-drawer::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 66px;
  height: 7px;
  content: "";
  background: #c38c5f;
  border-radius: 999px;
  transform: translateX(-50%);
}

.drawer-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
  padding-bottom: 17px;
  border-bottom: 1px dashed #d9c4b4;
}

.drawer-label > .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  background-color: var(--orange);
  background-size: 21px;
  border-radius: 10px;
}

.drawer-label span {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.drawer-label h3 {
  margin-top: 1px;
  font-size: 21px;
}

.search-form {
  margin-top: 20px;
}

.search-form label {
  display: block;
  margin-bottom: 7px;
  color: #675d58;
  font-size: 13px;
  font-weight: 800;
}

.search-form > div {
  display: flex;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.search-form input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 13px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 13px;
}

.search-form button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.keyword-list button {
  min-height: 31px;
  padding: 0 11px;
  background: var(--cream);
  font-size: 12px;
}

.keyword-list button:hover {
  color: var(--white);
  background: var(--cocoa);
  border-color: var(--cocoa);
}

.search-drawer > p,
.shelf-drawer > p,
.offline-drawer > p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 12px;
}

.shelf-options {
  margin-top: 15px;
}

.shelf-options button {
  display: grid;
  width: 100%;
  grid-template-columns: 34px minmax(0, 1fr) auto 16px;
  gap: 8px;
  align-items: center;
  padding: 11px 6px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #eadfd7;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.shelf-options button:hover,
.shelf-options button.is-active {
  background: var(--mint-soft);
}

.shelf-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.shelf-options strong { font-size: 13px; }
.shelf-options span { color: var(--muted); font-size: 12px; }
.shelf-options .icon { width: 15px; height: 15px; filter: brightness(0.35) sepia(0.4); }

.line-options {
  margin-top: 15px;
}

.line-options button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #eadfd7;
  font-size: 13px;
  cursor: pointer;
}

.line-options span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.line-options span i {
  width: 11px;
  height: 11px;
  background: #d5cac4;
  border: 3px solid #d5cac4;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--paper);
}

.line-options button.is-active span i {
  background: var(--mint);
  border-color: var(--mint);
}

.line-options em {
  color: #32956c;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.offline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 13px;
  background: var(--mint-soft);
  border-radius: 10px;
}

.offline-row strong,
.offline-row small {
  display: block;
}

.offline-row strong { font-size: 13px; }
.offline-row small { margin-top: 2px; color: var(--muted); font-size: 12px; }

.offline-row button {
  position: relative;
  width: 44px;
  height: 24px;
  flex: 0 0 auto;
  padding: 0;
  background: #b7aaa4;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.offline-row button i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.18s ease;
}

.offline-row button[aria-checked="true"] {
  background: var(--mint);
}

.offline-row button[aria-checked="true"] i {
  transform: translateX(20px);
}

.atlas-section {
  background: var(--blush-soft);
  border-top: 1px solid #f0d4ce;
  border-bottom: 1px solid #f0d4ce;
}

.atlas-stamp {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  color: var(--orange-deep);
  border: 2px dashed var(--orange);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(-2deg);
}

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

.screenshot-card {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #ebc9c2;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(98, 67, 58, 0.09);
}

.screenshot-media {
  aspect-ratio: 9 / 16;
  padding: 9px;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid #ecd7d2;
}

.screenshot-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screenshot-card figcaption {
  display: grid;
  min-height: 100px;
  grid-template-columns: 39px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-content: center;
  padding: 15px;
}

.screenshot-card figcaption > span {
  display: grid;
  width: 36px;
  height: 36px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.screenshot-card figcaption strong { font-size: 15px; }
.screenshot-card figcaption small { color: var(--muted); font-size: 12px; }

.question-section {
  padding-bottom: 80px;
  background: var(--paper);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 19px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-item > button span {
  font-size: 14px;
  font-weight: 900;
}

.faq-item > button i,
.official-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item > button i::before,
.faq-item > button i::after,
.official-toggle::before,
.official-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

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

.faq-item > button[aria-expanded="true"] {
  color: var(--white);
  background: var(--orange);
  border-radius: 11px 11px 0 0;
}

.faq-item > button[aria-expanded="true"] i::after,
.official-disclosure[open] .official-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item > div {
  padding: 16px 19px 20px;
  color: #665d58;
  border-top: 1px solid var(--line);
}

.faq-item > div p { font-size: 13px; }

.official-disclosure {
  width: 100%;
  margin-top: 14px;
  overflow: hidden;
  background: var(--cocoa);
  border: 1px solid var(--cocoa);
  border-radius: 12px;
}

.official-disclosure summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

.official-disclosure summary::-webkit-details-marker { display: none; }
.official-disclosure summary > .icon { width: 22px; height: 22px; }
.official-disclosure summary strong { flex: 1; font-size: 14px; }
.official-toggle { color: var(--orange); }

.official-answer {
  padding: 16px 20px 20px 55px;
  color: #dccfc8;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
}

.official-answer a {
  margin-left: 5px;
  color: #ffc29f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.letters-section {
  padding-top: 78px;
  background: var(--cream);
}

.paw-postmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--orange-deep);
  border: 2px dashed var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(3deg);
}

.paw-postmark .icon { width: 18px; height: 18px; filter: brightness(0.55) sepia(0.5); }

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

.review-card {
  position: relative;
  min-width: 0;
  padding: 23px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: inset 0 5px 0 var(--blush);
}

.review-card:nth-child(2n) { box-shadow: inset 0 5px 0 var(--mint); }

.review-card::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 30px;
  content: "";
  opacity: 0.35;
  background: repeating-linear-gradient(0deg, var(--orange) 0 2px, transparent 2px 6px);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.review-meta strong,
.review-meta time {
  display: block;
}

.review-meta strong { font-size: 13px; }
.review-meta time { margin-top: 2px; color: #92857e; font-size: 12px; }

.review-card > p {
  margin-top: 17px;
  color: #5f5753;
  font-size: 13px;
  line-height: 1.85;
}

.delivery-section {
  padding: 84px 0;
  scroll-margin-top: var(--header-height);
  background: var(--blush-soft);
}

.delivery-docket {
  position: relative;
  display: grid;
  grid-template-columns: 128px 1fr 1.25fr 200px;
  gap: 25px;
  align-items: center;
  min-height: 220px;
  padding: 32px 38px;
  overflow: hidden;
  color: var(--cocoa);
  background: var(--cream);
  border: 2px dashed var(--orange);
  border-radius: 18px;
  box-shadow: 12px 12px 0 var(--mint);
}

.delivery-docket::before,
.delivery-docket::after {
  position: absolute;
  top: -12px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--blush-soft);
  border-radius: 50%;
  box-shadow: 0 42px var(--blush-soft), 0 84px var(--blush-soft), 0 126px var(--blush-soft), 0 168px var(--blush-soft), 0 210px var(--blush-soft);
}

.delivery-docket::before { left: -12px; }
.delivery-docket::after { right: -12px; }

.delivery-cat {
  position: relative;
  text-align: center;
}

.delivery-cat img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--orange);
}

.delivery-cat span {
  position: absolute;
  right: -2px;
  bottom: -3px;
  padding: 4px 8px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.delivery-copy > span {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.delivery-copy h2 {
  margin-top: 7px;
  font-size: clamp(25px, 2.4vw, 35px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.delivery-copy p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.delivery-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.delivery-steps li {
  position: relative;
  display: flex;
  min-width: 78px;
  align-items: center;
  flex-direction: column;
}

.delivery-steps li:not(:last-child)::after {
  position: absolute;
  top: 13px;
  right: -18px;
  color: var(--orange);
  content: "→";
  font-size: 17px;
}

.delivery-steps strong {
  color: var(--orange-deep);
  font-size: 22px;
  line-height: 1;
}

.delivery-steps span {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.delivery-download {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 21px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 0.18s ease;
}

.delivery-download:hover { background: var(--orange-deep); }

.site-footer {
  color: var(--white);
  background: var(--cocoa);
}

.footer-main {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.84);
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.footer-brand span,
.footer-brand strong,
.footer-brand small { display: block; }
.footer-brand strong { font-size: 17px; }
.footer-brand small { margin-top: 2px; color: #d1c3bc; font-size: 12px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 25px;
}

.footer-nav a {
  color: #e5d9d3;
  font-size: 12px;
}

.footer-nav a:hover { color: #ffc29f; }

.footer-bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: #c7b7b0;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: max(18px, calc((100vw - var(--shell)) / 2 - 68px));
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--orange);
  border: 2px solid var(--cocoa);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--mint);
  cursor: pointer;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.back-top.is-visible {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1080px) {
  .primary-nav ul { gap: 21px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 370px; }
  .hero-label-card { padding-inline: 45px; }
  .phone-device { width: 328px; }
  .cat-peek { right: 270px; width: 108px; }
  .postcard-note { display: none; }
  .selection-board { grid-template-columns: 1fr repeat(2, 0.8fr); grid-template-rows: 145px repeat(2, 260px); }
  .cover-feature { grid-row: 1 / 4; }
  .editor-note { grid-column: 2 / 4; }
  .mini-edition img { height: 162px; }
  .storage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offline-drawer { grid-column: 1 / 3; }
  .delivery-docket { grid-template-columns: 112px 1fr 1.2fr; }
  .delivery-download { grid-column: 1 / 4; width: min(270px, 100%); justify-self: center; }
}

@media (max-width: 900px) {
  :root { --header-height: 64px; }
  .page-wrap { width: min(calc(100% - 32px), var(--shell)); }
  .mobile-actions { display: flex; }
  .primary-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 2px solid var(--orange);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: block; width: min(calc(100% - 32px), var(--shell)); margin-inline: auto; padding: 10px 0 16px; }
  .primary-nav a { padding: 13px 10px; border-bottom: 1px solid #eee1d7; }
  .primary-nav a::after { display: none; }
  .site-brand img { width: 42px; height: 42px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 340px; }
  .hero-label-card { padding: 48px 35px 43px; }
  .postal-mark { display: none; }
  .phone-device { width: 305px; }
  .cat-peek { right: 248px; width: 96px; }
  .calendar-layout { grid-template-columns: 1fr; }
  .week-tabs button { min-height: 210px; }
  .week-tabs i { margin-top: 26px; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .content-section { padding: 72px 0; }
  .hero-layout { display: block; }
  .hero-label-card { width: 100%; margin-top: 48px; padding: 49px 30px 43px; text-align: center; }
  .hero-kicker { justify-content: center; }
  .hero-label-card h1 { font-size: clamp(55px, 18vw, 88px); }
  .hero-copy { margin-inline: auto; }
  .hero-chips { justify-content: center; }
  .parcel-code { display: none; }
  .phone-showcase { min-height: 590px; align-items: flex-end; justify-content: center; padding-top: 38px; }
  .phone-device { width: 310px; height: 570px; margin: 0 auto; }
  .phone-banner { height: 180px; }
  .cat-peek { right: calc(50% + 103px); bottom: 38px; width: 87px; }
  .selection-heading,
  .calendar-heading,
  .atlas-heading,
  .letters-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .edition-tabs { justify-content: flex-start; }
  .edition-feedback { margin-top: 0; text-align: left; }
  .selection-board { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 420px 145px repeat(2, 250px); }
  .cover-feature { grid-column: 1 / 3; grid-row: auto; }
  .editor-note { grid-column: 1 / 3; }
  .calendar-actions { flex-wrap: wrap; }
  .week-tabs { overflow-x: auto; padding-bottom: 7px; scroll-snap-type: x mandatory; }
  .week-tabs button { min-width: 82px; min-height: 200px; scroll-snap-align: start; }
  .storage-grid { grid-template-columns: 1fr; }
  .offline-drawer { grid-column: auto; }
  .screenshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .screenshot-media { padding: 6px; }
  .screenshot-card figcaption { min-height: 92px; grid-template-columns: 31px 1fr; column-gap: 7px; padding: 11px 9px; }
  .screenshot-card figcaption > span { width: 29px; height: 29px; }
  .screenshot-card figcaption strong { font-size: 13px; }
  .screenshot-card figcaption small { font-size: 12px; line-height: 1.35; }
  .faq-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .delivery-docket { grid-template-columns: 1fr; gap: 24px; padding: 34px 26px; text-align: center; box-shadow: 8px 8px 0 var(--mint); }
  .delivery-cat { width: 112px; margin-inline: auto; }
  .delivery-steps { flex-wrap: wrap; }
  .delivery-download { grid-column: auto; width: min(270px, 100%); }
  .footer-main { align-items: center; flex-direction: column; padding: 28px 0; }
  .footer-nav { justify-content: center; }
  .footer-bottom { justify-content: center; flex-direction: column; padding: 20px 0; text-align: center; }
}

@media (max-width: 520px) {
  .page-wrap { width: min(calc(100% - 24px), var(--shell)); }
  .content-section { padding: 62px 0; }
  .section-heading { margin-bottom: 26px; }
  .section-heading h2 { font-size: 32px; }
  .section-heading p { font-size: 14px; }
  .site-brand { gap: 6px; }
  .site-brand img { width: 38px; height: 38px; }
  .brand-words strong { font-size: 15px; }
  .brand-words span { margin-top: 2px; font-size: 12px; }
  .mobile-download { min-height: 34px; padding-inline: 10px; }
  .nav-toggle { width: 38px; height: 38px; }
  .hero-label-card { margin-top: 36px; padding: 44px 20px 38px; border-radius: 22px; box-shadow: 8px 8px 0 rgba(121, 205, 165, 0.7); }
  .paper-tape { width: 92px; }
  .hero-label-card h1 { font-size: 57px; }
  .hero-slogan { font-size: 26px; }
  .hero-copy { font-size: 14px; }
  .hero-chips { gap: 6px; }
  .hero-chips span { padding-inline: 9px; }
  .hero-download { min-width: 220px; }
  .phone-showcase { min-height: 555px; }
  .phone-device { width: min(294px, calc(100vw - 46px)); height: 535px; }
  .phone-banner { height: 165px; }
  .phone-covers img { height: 105px; }
  .cat-peek { right: calc(50% + 89px); width: 76px; }
  .selection-board { grid-template-rows: 380px 140px repeat(2, 230px); }
  .editor-note { padding: 15px 18px; }
  .editor-note p { font-size: 16px; }
  .editor-note img { width: 74px; height: 74px; }
  .mini-edition img { height: 145px; }
  .mini-edition > div { padding: 10px; }
  .mini-edition h3 { font-size: 15px; }
  .calendar-actions button { padding-inline: 12px; }
  .update-notebook { padding: 23px 18px 20px 35px; }
  .update-list article { grid-template-columns: 46px minmax(0, 1fr) auto; gap: 8px; }
  .update-list img { width: 46px; height: 58px; }
  .storage-drawer { padding: 22px; }
  .atlas-stamp { white-space: normal; }
  .official-answer { padding-left: 20px; }
  .review-card { padding: 21px; }
  .delivery-section { padding: 66px 0; }
  .delivery-copy h2 { font-size: clamp(23px, 7vw, 33px); }
  .delivery-steps { gap: 13px; }
  .delivery-steps li { min-width: 72px; }
  .delivery-steps li:not(:last-child)::after { right: -13px; }
  .footer-nav { gap: 10px 20px; }
  .back-top { right: 14px; bottom: 16px; width: 44px; height: 44px; }
}

@media (max-width: 380px) {
  .header-row { gap: 5px; }
  .brand-words strong { font-size: 14px; }
  .brand-words span { font-size: 12px; transform: scale(0.92); transform-origin: left center; }
  .mobile-actions { gap: 5px; }
  .mobile-download { padding-inline: 8px; }
  .nav-toggle { width: 36px; height: 36px; }
  .hero-label-card h1 { font-size: 52px; }
  .hero-slogan { font-size: 23px; }
  .phone-showcase { min-height: 525px; }
  .phone-device { height: 505px; }
  .phone-banner { height: 150px; }
  .phone-covers img { height: 92px; }
  .cat-peek { right: calc(50% + 79px); width: 69px; }
  .selection-board { grid-template-rows: 350px 130px repeat(2, 210px); }
  .editor-note p { font-size: 14px; }
  .editor-note img { width: 64px; height: 64px; }
  .mini-edition img { height: 132px; }
  .edition-tabs button { padding-inline: 12px; }
  .screenshot-card figcaption { display: block; min-height: 104px; }
  .screenshot-card figcaption > span { margin-bottom: 7px; }
  .screenshot-card figcaption small { display: block; margin-top: 3px; }
  .delivery-steps { gap: 8px; }
  .delivery-steps li { min-width: 68px; }
  .delivery-steps li:not(:last-child)::after { right: -8px; }
}

@media (max-width: 900px) {
  a,
  button,
  summary,
  .offline-row button i {
    transition: none !important;
    animation: none !important;
  }
}
