@charset "UTF-8";

/* 作者：搭客佬 */
/* 链接：https://www.dmghgmax.cn/ */

:root {
  --paper: #fff8ed;
  --paper-deep: #f4ebdc;
  --ink: #17223b;
  --muted: #667087;
  --coral: #ff6657;
  --coral-dark: #d9473d;
  --gold: #f2b84b;
  --green: #bfd9cc;
  --blue: #a8c8ed;
  --line: #d8d1c6;
  --white: #ffffff;
  --dark-screen: #222a3a;
  --content-width: 1200px;
  --header-height: 82px;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(255, 102, 87, 0.42);
  outline-offset: 4px;
}

.shell {
  width: calc(100% - 48px);
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1200;
  padding: 9px 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  transform: translateY(-160%);
}

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

.icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  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--grid {
  background-image: url("../icons/grid.svg");
}

.icon--bell {
  background-image: url("../icons/bell.svg");
}

.icon--heart {
  background-image: url("../icons/heart.svg");
}

.icon--download {
  background-image: url("../icons/download.svg");
}

.icon--user {
  background-image: url("../icons/user.svg");
}

.icon--discover {
  background-image: url("../icons/discover.svg");
}

.icon--globe {
  background-image: url("../icons/globe.svg");
}

.icon--top {
  background-image: url("../icons/top.svg");
}

.masthead {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(23, 34, 59, 0.12);
  background: rgba(255, 248, 237, 0.98);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-lockup,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand-lockup__logo {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23, 34, 59, 0.12);
  border-radius: 13px;
  background: var(--white);
  object-fit: contain;
}

.brand-lockup__copy,
.footer-brand span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
}

.brand-lockup__copy strong,
.footer-brand strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.brand-lockup__copy small,
.footer-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

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

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  color: #303950;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.15s ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.15s ease;
}

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

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

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

.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--coral);
  border-radius: 999px;
  color: var(--coral-dark);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(23, 34, 59, 0.24);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

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

main > section,
.hero {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.hero {
  position: relative;
  min-height: 700px;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
  background-image: linear-gradient(rgba(23, 34, 59, 0.018) 1px, transparent 1px);
  background-size: 100% 34px;
}

.hero::before,
.hero::after {
  position: absolute;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: rgba(255, 102, 87, 0.45);
  content: "";
}

.hero::before {
  left: max(20px, calc((100vw - var(--content-width)) / 2 - 28px));
}

.hero::after {
  right: max(20px, calc((100vw - var(--content-width)) / 2 - 28px));
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.85fr);
  align-items: center;
  min-height: 700px;
}

.hero__copy {
  padding: 72px 72px 72px 0;
}

.issue-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.issue-label span {
  color: var(--coral-dark);
  font-weight: 900;
}

.hero h1 {
  margin-bottom: 8px;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: clamp(58px, 6vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.hero__slogan {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-family: "KaiTi", "STKaiti", serif;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.35;
}

.hero__slogan::after {
  position: absolute;
  right: -14px;
  bottom: -3px;
  left: -4px;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: rotate(-1.5deg);
}

.hero__intro {
  max-width: 610px;
  margin-bottom: 22px;
  color: #4f596e;
  font-size: 16px;
  line-height: 1.9;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 34, 59, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

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

.hero__action {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.primary-button,
.download-folio__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.primary-button {
  min-width: 210px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 5px;
  box-shadow: 7px 7px 0 rgba(23, 34, 59, 0.12);
  font-size: 17px;
}

.primary-button:hover,
.download-folio__button:hover {
  background: var(--coral-dark);
}

.primary-button .icon,
.download-folio__button .icon {
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}

.age-label {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.phone-stage {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  min-height: 620px;
  padding-left: 54px;
  border-left: 1px dashed rgba(255, 102, 87, 0.42);
}

.phone-device {
  position: relative;
  width: 318px;
  height: 632px;
  padding: 10px;
  border: 5px solid #11192b;
  border-radius: 42px;
  background: #11192b;
  box-shadow: 16px 24px 44px rgba(23, 34, 59, 0.18);
}

.phone-device__speaker {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 3;
  width: 86px;
  height: 21px;
  border-radius: 0 0 14px 14px;
  background: #11192b;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  padding: 16px 14px 70px;
  border-radius: 29px;
  color: #f6f8ff;
  background: var(--dark-screen);
  overflow: hidden;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.phone-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.phone-appbar div {
  display: flex;
  flex-direction: column;
}

.phone-appbar small {
  color: #9da8be;
  font-size: 12px;
}

.phone-appbar strong {
  margin-top: 2px;
  font-size: 22px;
  line-height: 1.25;
}

.phone-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral);
}

.phone-avatar .icon {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.phone-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  color: #9ea8ba;
  background: #30394b;
  font-size: 12px;
}

.phone-search .icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(0.8);
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ea8ba;
  font-size: 12px;
  text-align: center;
}

.phone-tabs span {
  padding-bottom: 8px;
}

.phone-tabs .is-active {
  border-bottom: 2px solid var(--coral);
  color: var(--white);
  font-weight: 800;
}

.phone-feature {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  min-height: 114px;
  border-radius: 12px;
  background: #30394b;
  overflow: hidden;
}

.phone-feature__art {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d2432;
}

.phone-feature__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
}

.phone-feature__copy small {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.phone-feature__copy strong {
  margin: 3px 0;
  font-size: 16px;
}

.phone-feature__copy span {
  color: #b6bed0;
  font-size: 12px;
}

.phone-list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 0 8px;
  font-size: 12px;
}

.phone-list-heading strong {
  font-size: 14px;
}

.phone-list-heading span {
  color: #9ea8ba;
}

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

.phone-comics article {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.phone-comics__cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 5px;
  border-radius: 8px;
  background: #30394b;
  overflow: hidden;
}

.phone-comics__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-comics strong {
  font-size: 12px;
  line-height: 1.35;
}

.phone-comics small {
  color: #aeb7c8;
  font-size: 12px;
  line-height: 1.35;
}

.phone-dock {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 64px;
  padding: 8px 7px 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #1d2432;
}

.phone-dock span {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  color: #8792a7;
  font-size: 12px;
  line-height: 1;
}

.phone-dock .icon {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(0.7);
}

.phone-dock .is-active {
  color: var(--coral);
}

.phone-dock .is-active .icon {
  filter: none;
}

.section {
  padding: 94px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading > div {
  position: relative;
  padding-left: 17px;
}

.section-heading > div::before {
  position: absolute;
  top: 2px;
  bottom: 3px;
  left: 0;
  width: 3px;
  background: var(--coral);
  content: "";
}

.section-index {
  margin-bottom: 4px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.section-heading h2,
.download-folio h2 {
  margin-bottom: 0;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.18;
}

.section-heading > p {
  max-width: 440px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.editorial {
  background: #fffdf8;
}

.editorial-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  gap: 18px;
}

.editorial-lead {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(230px, 1fr);
  min-height: 390px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.editorial-lead__art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  background: #0f1729;
  overflow: hidden;
}

.editorial-lead__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.editorial-lead__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 42px 36px;
}

.story-kicker {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.editorial-lead h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: 36px;
  line-height: 1.2;
}

.editorial-lead p {
  margin-bottom: 22px;
  color: #c9cfdb;
  font-size: 14px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.editorial-index {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.index-row {
  display: grid;
  grid-template-columns: 34px 108px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 15px;
  min-height: 130px;
  padding: 13px 16px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: var(--paper);
}

.index-row__number {
  align-self: start;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.index-row__art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 100px;
  background: var(--paper-deep);
  overflow: hidden;
}

.index-row__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.index-row__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.index-row__copy strong {
  margin-bottom: 4px;
  font-size: 17px;
}

.index-row__copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.index-row__arrow {
  font-size: 21px;
  font-style: normal;
  text-align: right;
}

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

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

.shelf-card {
  min-width: 0;
  padding: 10px 10px 13px;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.shelf-card__cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
  background: #edf0f3;
  overflow: hidden;
}

.shelf-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shelf-card h3 {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
}

.shelf-card p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.shelf-card small {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: #3d584c;
  background: var(--green);
  font-size: 12px;
  white-space: nowrap;
}

.workshop {
  background: #fffdf8;
}

.workbench {
  display: grid;
  grid-template-columns: 330px 180px minmax(0, 1fr);
  min-height: 330px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.workbench__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  border-right: 1px solid var(--ink);
  background: #f2eadf;
  overflow: hidden;
}

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

.workbench__art span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.workbench__note {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-right: 1px dashed var(--line);
  font-family: "KaiTi", "STKaiti", serif;
  text-align: center;
}

.workbench__note strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}

.workbench__note small {
  margin-top: 16px;
  color: var(--coral-dark);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 12px;
}

.tool-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  padding: 28px 18px;
}

.tool-entry {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 26px 12px;
  text-align: center;
}

.tool-entry .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 17px;
}

.tool-entry h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.tool-entry p {
  margin-bottom: 0;
  color: #596378;
  font-size: 12px;
  line-height: 1.65;
}

.tool-entry--coral {
  background: #ffe5df;
}

.tool-entry--gold {
  background: #fff0c9;
}

.tool-entry--green {
  background: #dbefe6;
}

.tool-entry--blue {
  background: #dfeafb;
}

.showcase {
  background: var(--paper);
}

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

.screen-card {
  display: flex;
  width: 100%;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  justify-self: stretch;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.screen-card__viewport {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #eef0f4;
  overflow: hidden;
}

.screen-card__viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen-card figcaption {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  padding: 15px 16px;
}

.screen-card figcaption strong {
  font-size: 17px;
}

.screen-card figcaption span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: #fffdf8;
}

.faq-list {
  width: 100%;
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.faq-item h3 {
  margin: 0;
  font-size: 16px;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 64px;
  padding: 14px 20px;
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button:hover {
  background: rgba(255, 102, 87, 0.06);
}

.faq-item button span {
  display: inline-flex;
  align-items: center;
  gap: 17px;
}

.faq-item button b {
  color: var(--coral-dark);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.faq-item button > i,
.site-disclosure__state {
  position: relative;
  display: inline-block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-item button > i::before,
.faq-item button > i::after,
.site-disclosure__state::before,
.site-disclosure__state::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

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

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

.faq-answer {
  padding: 0 74px 22px;
}

.faq-answer p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-disclosure {
  width: 100%;
  margin-top: 22px;
  border: 1px solid var(--coral);
  background: var(--paper);
}

.site-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.site-disclosure summary::-webkit-details-marker {
  display: none;
}

.site-disclosure summary > span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.site-disclosure summary .icon {
  width: 24px;
  height: 24px;
}

.site-disclosure__body {
  padding: 0 58px 23px;
  color: var(--muted);
  font-size: 14px;
}

.site-disclosure__body p {
  margin-bottom: 0;
}

.site-disclosure__body a {
  color: var(--coral-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews {
  background: var(--paper);
}

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

.review-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 18px;
  border-bottom: 1px dashed var(--line);
}

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

.review-avatar {
  display: inline-block;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e7eef8;
  background-image: url("../icons/avatar.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}

.review-card__user strong {
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.review-card__rating {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 3px;
  min-width: 80px;
}

.review-card__rating .fa {
  display: inline-block;
  width: 13px;
  height: 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.review-card__rating .fa-star {
  background-image: url("../icons/star.svg");
}

.review-card__rating .fa-star-o {
  background-image: url("../icons/star-outline.svg");
}

.review-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px 18px 16px;
}

.review-card__body p {
  margin-bottom: 18px;
  color: #525c70;
  font-size: 14px;
  line-height: 1.8;
}

.review-card__body time {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.download-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: #fffdf8;
}

.download-folio {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.85fr) auto;
  align-items: center;
  gap: 38px;
  min-height: 230px;
  padding: 38px 46px;
  border: 1px solid var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(23, 34, 59, 0.06) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
  box-shadow: 9px 9px 0 var(--paper-deep);
}

.download-folio::after {
  position: absolute;
  top: 18px;
  right: 235px;
  bottom: 18px;
  border-left: 1px dashed rgba(23, 34, 59, 0.35);
  content: "";
}

.download-folio__copy .section-index {
  margin-bottom: 8px;
}

.download-folio h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.1vw, 42px);
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.download-folio__copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.download-folio__list {
  margin: 0;
}

.download-folio__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 14px;
  white-space: nowrap;
}

.download-folio__list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  color: var(--white);
  background: var(--coral);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.download-folio__button {
  position: relative;
  z-index: 1;
  min-width: 180px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 4px;
  font-size: 18px;
}

.site-footer {
  color: #e9edf5;
  background: var(--ink);
}

.site-footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 126px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
}

.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand small {
  color: #b9c2d3;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 26px;
  margin: 0;
}

.footer-nav a {
  color: #cdd4e0;
  font-size: 13px;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.site-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  text-align: center;
}

.site-footer__copyright p {
  margin-bottom: 0;
  color: #b9c2d3;
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 8px 22px rgba(23, 34, 59, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--coral-dark);
}

.back-to-top .icon {
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}

@media (max-width: 1100px) {
  .primary-nav ul {
    gap: 20px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  }

  .hero__copy {
    padding-right: 40px;
  }

  .phone-stage {
    padding-left: 30px;
  }

  .editorial-spread {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
  }

  .editorial-lead {
    grid-template-columns: minmax(220px, 0.85fr) minmax(220px, 1fr);
  }

  .workbench {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .workbench__note {
    border-right: 0;
  }

  .tool-ledger {
    grid-column: 1 / -1;
    border-top: 1px dashed var(--line);
  }

  .download-folio {
    grid-template-columns: minmax(340px, 1fr) minmax(260px, 0.8fr) auto;
    gap: 25px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .download-folio::after {
    right: 213px;
  }
}

@media (max-width: 900px) {
  .primary-nav ul {
    gap: 14px;
  }

  .primary-nav a {
    font-size: 13px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .editorial-spread {
    grid-template-columns: 1fr;
  }

  .editorial-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    border-left: 1px solid var(--ink);
  }

  .index-row {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: auto;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .index-row__art {
    grid-column: 1 / -1;
    width: 100%;
    height: 150px;
  }

  .index-row__copy {
    grid-column: 1 / -1;
  }

  .index-row__arrow {
    display: none;
  }

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

  .download-folio {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .download-folio__list {
    grid-column: 1 / 2;
  }

  .download-folio__button {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }

  .download-folio::after {
    right: 220px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 82px;
  }

  body {
    padding-top: var(--header-height);
  }

  .shell {
    width: calc(100% - 32px);
  }

  .masthead {
    height: var(--header-height);
  }

  .masthead__actions {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    z-index: 1001;
    padding: 10px;
    border: 1px solid var(--line);
    background: #fffdf8;
    box-shadow: 0 18px 34px rgba(23, 34, 59, 0.16);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .primary-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav li + li {
    border-top: 1px solid var(--line);
  }

  .primary-nav a {
    justify-content: center;
    height: 48px;
    font-size: 15px;
  }

  .primary-nav a::after {
    display: none;
  }

  .brand-lockup {
    gap: 9px;
  }

  .brand-lockup__logo {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .brand-lockup__copy strong {
    font-size: 16px;
  }

  .brand-lockup__copy small {
    font-size: 12px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .hero__copy {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 68px);
    white-space: normal;
  }

  .hero__slogan {
    font-size: clamp(24px, 6vw, 32px);
  }

  .hero__intro {
    max-width: 620px;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero__action {
    align-items: center;
  }

  .phone-stage {
    justify-content: center;
    min-height: auto;
    margin-top: 50px;
    padding: 42px 0 0;
    border-top: 1px dashed rgba(255, 102, 87, 0.42);
    border-left: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .section-heading > p {
    max-width: none;
    margin-left: 17px;
    text-align: left;
  }

  .editorial-index {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--ink);
  }

  .index-row {
    grid-template-columns: 34px 108px minmax(0, 1fr) 24px;
    border-right: 0;
  }

  .index-row__art {
    grid-row: auto;
    grid-column: auto;
    width: 108px;
    height: 100px;
  }

  .index-row__copy {
    grid-column: auto;
  }

  .index-row__arrow {
    display: block;
  }

  .screen-card figcaption {
    min-height: 82px;
    padding: 13px;
  }

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

  .download-folio {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 30px;
    text-align: center;
  }

  .download-folio__copy,
  .download-folio__list,
  .download-folio__button {
    grid-row: auto;
    grid-column: auto;
  }

  .download-folio__list {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .download-folio__button {
    justify-self: center;
  }

  .download-folio::after {
    display: none;
  }

  .site-footer__main {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 34px 0;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero__grid {
    padding-top: 44px;
  }

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

  .hero__intro {
    font-size: 15px;
  }

  .phone-device {
    width: min(318px, 100%);
    height: 620px;
  }

  .editorial-lead {
    grid-template-columns: 1fr;
  }

  .editorial-lead__art {
    height: 360px;
  }

  .editorial-lead__copy {
    padding: 30px 26px 34px;
  }

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

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

  .workbench__art {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .workbench__note {
    padding: 30px 22px;
    border-bottom: 1px dashed var(--line);
  }

  .tool-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

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

  .screen-card figcaption strong {
    font-size: 15px;
  }

  .faq-item button {
    min-height: 60px;
    padding: 13px 15px;
    font-size: 14px;
  }

  .faq-item button span {
    gap: 10px;
  }

  .faq-answer {
    padding: 0 51px 20px;
  }

  .site-disclosure summary {
    padding: 14px 15px;
    font-size: 14px;
  }

  .site-disclosure__body {
    padding: 0 50px 20px;
  }

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

  .review-card {
    min-height: 190px;
  }

  .download-folio h2 {
    font-size: clamp(22px, 7vw, 32px);
  }

  .footer-nav ul {
    gap: 12px 20px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 430px) {
  .shell {
    width: calc(100% - 24px);
  }

  .brand-lockup__logo {
    width: 40px;
    height: 40px;
  }

  .brand-lockup__copy strong {
    font-size: 15px;
  }

  .brand-lockup__copy small {
    margin-top: 2px;
    font-size: 12px;
  }

  .mobile-download {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .masthead__actions {
    gap: 6px;
  }

  .primary-nav {
    right: 12px;
    left: 12px;
  }

  .issue-label {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__slogan {
    font-size: 25px;
  }

  .hero-tags {
    gap: 7px;
  }

  .hero-tags li {
    padding: 7px 10px;
    font-size: 12px;
  }

  .phone-device {
    height: 600px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .index-row {
    grid-template-columns: 28px 82px minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
  }

  .index-row__art {
    width: 82px;
    height: 86px;
  }

  .index-row__arrow {
    display: none;
  }

  .index-row__copy strong {
    font-size: 15px;
  }

  .shelf-card {
    padding: 8px 8px 11px;
  }

  .shelf-card h3 {
    font-size: 14px;
  }

  .tool-ledger {
    gap: 8px;
    padding: 12px;
  }

  .tool-entry {
    padding: 20px 8px;
  }

  .screen-card figcaption {
    min-height: 76px;
    padding: 11px 9px;
  }

  .screen-card figcaption span {
    line-height: 1.5;
  }

  .faq-item button {
    gap: 10px;
    font-size: 13px;
  }

  .faq-answer {
    padding-right: 42px;
    padding-left: 42px;
  }

  .site-disclosure summary > span {
    gap: 9px;
  }

  .site-disclosure summary .icon {
    width: 21px;
    height: 21px;
  }

  .site-disclosure__body {
    padding-right: 42px;
    padding-left: 42px;
  }

  .download-folio {
    padding: 32px 18px;
  }

  .download-folio__list li {
    font-size: 13px;
  }

  .footer-brand {
    gap: 10px;
  }

  .footer-nav ul {
    gap: 10px 16px;
  }
}

@media (max-width: 360px) {
  .brand-lockup {
    gap: 7px;
  }

  .brand-lockup__logo {
    width: 38px;
    height: 38px;
  }

  .brand-lockup__copy strong {
    font-size: 14px;
  }

  .mobile-download {
    padding: 0 10px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero__slogan {
    font-size: 22px;
  }

  .phone-device {
    height: 578px;
  }

  .phone-screen {
    padding-right: 12px;
    padding-left: 12px;
  }

  .download-folio h2 {
    font-size: 21px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  summary,
  .primary-nav a,
  .primary-nav a::after,
  .primary-button,
  .download-folio__button,
  .footer-nav a,
  .back-to-top {
    transition: none;
    animation: none;
  }

  .primary-nav a:active,
  .primary-button:active,
  .download-folio__button:active,
  .footer-nav a:active,
  .back-to-top:active {
    filter: none;
    opacity: 1;
    transform: none;
  }
}

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

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