@charset "UTF-8";

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

:root {
  --orange: #ff682f;
  --orange-dark: #e94c18;
  --orange-soft: #fff0e9;
  --cyan: #18a9d4;
  --cyan-soft: #edf9fc;
  --ink: #17191e;
  --text: #333842;
  --muted: #69717d;
  --line: #dfe3e7;
  --paper: #ffffff;
  --soft: #f6f7f8;
  --dark: #17191c;
  --content: 1200px;
  --header-height: 76px;
}

*,
*::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(--text);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  border: 0;
}

button,
summary {
  cursor: pointer;
}

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

ul,
ol,
dl,
dd,
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.section-inner,
.footer-inner,
.hero-inner {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

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

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

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

.brand-copy strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

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

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 26px 0 23px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-current {
  color: var(--orange-dark);
}

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

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

.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--orange);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--ink);
}

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero {
  overflow: hidden;
  min-height: 720px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 63%, #fff8f4 63%, #fff8f4 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  min-height: 650px;
}

.hero-copy {
  max-width: 690px;
  padding: 80px 40px 80px 0;
}

.eyebrow,
.section-heading > p,
.section-heading > div > p,
.plan-title p,
.download-copy > p {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(76px, 7vw, 112px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
  white-space: nowrap;
}

.hero h1::first-letter {
  color: var(--orange);
}

.hero-slogan {
  margin-top: 34px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-description {
  max-width: 610px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-features i {
  width: 18px;
  height: 18px;
}

.hero-download {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 36px;
}

.primary-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 224px;
  min-height: 58px;
  padding: 0 26px;
  color: #ffffff;
  background: var(--orange);
  border: 2px solid var(--orange);
  font-size: 17px;
  font-weight: 800;
  transition: color 150ms ease, background-color 150ms ease;
}

.primary-download:hover,
.primary-download:focus-visible {
  color: var(--orange-dark);
  background: #ffffff;
}

.primary-download:hover .icon-download,
.primary-download:focus-visible .icon-download {
  background-image: url("../icons/download-orange.svg");
}

.update-label {
  color: var(--muted);
  font-size: 13px;
}

.auth-phone {
  position: relative;
  justify-self: end;
  width: 320px;
  padding: 10px;
  background: #111317;
  border: 2px solid #111317;
  border-radius: 34px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 50%;
  width: 74px;
  height: 20px;
  background: #111317;
  border-radius: 0 0 13px 13px;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 475px;
  padding: 13px 14px 15px;
  background: #ffffff;
  border-radius: 26px;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.status-icons {
  letter-spacing: 0.08em;
}

.phone-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}

.phone-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.phone-brand strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.auth-heading {
  margin-top: 10px;
  text-align: center;
}

.auth-heading p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.auth-heading span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
  border-bottom: 1px solid var(--line);
}

.auth-tabs button {
  position: relative;
  padding: 7px 4px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.auth-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
}

.auth-tabs button.is-active {
  color: var(--orange-dark);
}

.auth-tabs button.is-active::after {
  transform: scaleX(1);
}

.auth-form {
  margin-top: 10px;
}

.auth-field {
  display: block;
  margin-top: 7px;
}

.auth-field > span:first-child {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.field-control {
  display: flex;
  align-items: center;
  min-height: 39px;
  padding: 0 12px;
  background: #f7f8f9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field-control i {
  width: 17px;
  height: 17px;
}

.field-control input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 9px;
  color: var(--ink);
  outline: 0;
  background: transparent;
  font-size: 12px;
}

.field-control:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.password-toggle {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  background: transparent;
}

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
}

.auth-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.auth-options input {
  accent-color: var(--orange);
}

.auth-options a {
  color: var(--cyan);
}

.auth-submit,
.auth-secondary {
  width: 100%;
  min-height: 38px;
  margin-top: 8px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
}

.auth-submit {
  color: #ffffff;
  background: var(--orange);
}

.auth-secondary {
  color: var(--orange-dark);
  background: #ffffff;
  border: 1px solid var(--orange);
}

.auth-policy {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.section-inner {
  padding: 100px 0;
}

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

.section-heading h2 {
  margin-top: 7px;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.section-heading > span,
.section-heading > div + span {
  color: var(--muted);
  font-size: 15px;
}

.section-heading-left > span {
  display: block;
  margin-top: 10px;
}

.section-heading-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-split > span {
  max-width: 520px;
  padding-bottom: 8px;
  text-align: right;
}

.archive-section {
  background: #ffffff;
}

.archive-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 40px;
}

.archive-route {
  position: relative;
  padding: 4px 0;
}

.archive-route::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 29px;
  width: 2px;
  background: var(--line);
  content: "";
}

.archive-route li {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  min-height: 92px;
  padding: 12px 16px 12px 0;
}

.archive-route li > span {
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--muted);
  background: #ffffff;
  border: 2px solid var(--line);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.archive-route li.is-active > span {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
}

.archive-route li div {
  padding-left: 18px;
}

.archive-route strong {
  color: var(--ink);
  font-size: 19px;
}

.archive-route p {
  color: var(--muted);
  font-size: 13px;
}

.reading-plan {
  padding: 34px 38px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.plan-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.plan-title h3 {
  margin-top: 4px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
}

.plan-title > i {
  width: 38px;
  height: 38px;
}

.plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.plan-row > span,
.plan-row strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.plan-row p {
  color: var(--muted);
  font-size: 12px;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.choice-group button {
  min-width: 68px;
  min-height: 36px;
  padding: 0 14px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
}

.choice-group button.is-active {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
}

.switch {
  position: relative;
  width: 52px;
  height: 28px;
  padding: 0;
  background: #c9ced3;
  border-radius: 20px;
}

.switch span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: left 150ms ease;
}

.switch.is-on {
  background: var(--orange);
}

.switch.is-on span {
  left: 28px;
}

.plan-progress {
  padding: 23px 0 0;
}

.plan-progress > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 14px;
}

.progress-track {
  height: 9px;
  margin-top: 12px;
  overflow: hidden;
  background: #dde1e4;
  border-radius: 6px;
}

.progress-track span {
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ff996f);
  border-radius: inherit;
}

.plan-progress p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.save-plan {
  min-width: 150px;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.save-plan:hover,
.save-plan:focus-visible {
  background: var(--orange);
}

.save-feedback {
  margin-left: 12px;
  color: var(--cyan);
  font-size: 12px;
}

.schedule-section {
  background: var(--cyan-soft);
}

.schedule-days {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 28px;
}

.schedule-days::before {
  position: absolute;
  top: 50%;
  right: 6%;
  left: 6%;
  height: 1px;
  background: #b8dce7;
  content: "";
}

.schedule-days button {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-height: 62px;
  padding: 9px 4px;
  color: var(--muted);
  background: transparent;
  border-radius: 8px;
  font-size: 12px;
}

.schedule-days button span,
.schedule-days button strong {
  padding: 0 7px;
  background: var(--cyan-soft);
}

.schedule-days button.is-active {
  color: var(--orange-dark);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(32, 80, 95, 0.08);
}

.schedule-days button.is-active span,
.schedule-days button.is-active strong {
  background: #ffffff;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
}

.schedule-list,
.weekly-summary {
  background: #ffffff;
  border: 1px solid #cde3e9;
  border-radius: 12px;
}

.schedule-list article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 110px;
  align-items: center;
  gap: 18px;
  min-height: 105px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.schedule-list article:last-child {
  border-bottom: 0;
}

.schedule-list article[hidden] {
  display: none;
}

.schedule-list time {
  color: var(--orange-dark);
  font-size: 18px;
  font-weight: 900;
}

.schedule-list h3 {
  color: var(--ink);
  font-size: 18px;
}

.schedule-list p {
  color: var(--muted);
  font-size: 12px;
}

.reminder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.reminder i {
  width: 15px;
  height: 15px;
}

.reminder.is-on {
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-color: #ffc7b0;
}

.weekly-summary {
  padding: 25px;
}

.summary-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.summary-title h3 {
  color: var(--ink);
  font-size: 19px;
}

.weekly-summary dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.weekly-summary dt {
  color: var(--muted);
  font-size: 12px;
}

.weekly-summary dd {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.weekly-summary button {
  width: 100%;
  min-height: 42px;
  margin-top: 20px;
  color: var(--orange-dark);
  background: #ffffff;
  border: 1px solid var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.screens-section {
  background: #ffffff;
}

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

.screens-grid figure {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

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

.screen-window img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.screens-grid figcaption {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.screens-grid figcaption > span {
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.screens-grid figcaption strong {
  color: var(--ink);
  font-size: 17px;
}

.screens-grid figcaption p {
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: #f8f8f7;
}

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

.faq-list details {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 30px;
  align-items: center;
  min-height: 76px;
  padding: 0 20px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker,
.official-site summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}

.faq-list summary strong {
  color: var(--ink);
  font-size: 16px;
}

.faq-list summary > i,
.official-state {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-list summary > i::before,
.faq-list summary > i::after,
.official-state::before,
.official-state::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary > i::before,
.official-state::before {
  width: 14px;
  height: 1px;
}

.faq-list summary > i::after,
.official-state::after {
  width: 1px;
  height: 14px;
}

.faq-list details[open] summary > i::after,
.official-site[open] .official-state::after {
  display: none;
}

.faq-list details > p {
  padding: 0 70px 24px;
  color: var(--muted);
  font-size: 14px;
}

.official-site {
  width: 100%;
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--orange);
}

.official-site summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 22px;
  list-style: none;
}

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

.official-site summary strong {
  color: var(--ink);
  font-size: 15px;
}

.official-site > div {
  padding: 0 54px 22px;
}

.official-site > div a {
  color: var(--orange-dark);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reviews-section {
  background: #ffffff;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 8px;
}

.review-card:nth-child(3n + 2) {
  border-top-color: var(--cyan);
}

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

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

.review-user .icon-avatar {
  width: 38px;
  height: 38px;
  padding: 8px;
  background-color: var(--orange-soft);
  background-size: 22px 22px;
  border-radius: 50%;
}

.review-user strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 14px;
}

.review-rating {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--orange);
  font-size: 13px;
  white-space: nowrap;
}

.review-rating .aiarticle-comment-rating-icon {
  display: inline-block;
  margin-left: 2px;
  font-style: normal;
}

.review-rating .fa-star::before {
  content: "★";
}

.review-rating .fa-star-o::before {
  content: "☆";
}

.review-content {
  flex: 1 1 auto;
  margin-top: 18px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.review-card time {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.download-section {
  padding: 90px 0;
  background: #fff3ed;
}

.download-section .section-inner {
  padding: 0;
}

.download-panel {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) 250px;
  align-items: stretch;
  min-height: 190px;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
  border-radius: 16px;
}

.download-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  background: #23262b;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.download-number strong {
  color: var(--orange);
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
}

.download-number span {
  margin-top: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.download-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 42px;
}

.download-copy h2 {
  margin-top: 7px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.3;
  white-space: nowrap;
}

.download-copy > span {
  margin-top: 8px;
  color: #bfc4ca;
  font-size: 13px;
}

.download-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 100%;
  padding: 25px;
  color: #ffffff;
  background: var(--orange);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
  transition: background-color 150ms ease;
}

.download-action:hover,
.download-action:focus-visible {
  background: var(--orange-dark);
}

.download-action .icon-arrow {
  width: 18px;
  height: 18px;
}

.site-footer {
  color: #ffffff;
  background: #111316;
}

.footer-inner {
  padding: 52px 0 26px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand .brand-copy strong {
  color: #ffffff;
}

.footer-brand .brand-copy span {
  color: #a8afb7;
}

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

.footer-nav a {
  color: #cfd4d9;
  font-size: 13px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #939aa2;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  color: #ffffff;
  background: var(--orange);
  border: 1px solid var(--orange);
  transition: opacity 150ms ease, visibility 150ms ease, background-color 150ms ease;
}

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

.back-top:hover,
.back-top:focus-visible {
  background: var(--orange-dark);
}

:focus-visible {
  outline: 3px solid rgba(24, 169, 212, 0.45);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .main-nav > ul {
    gap: 24px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .hero-copy {
    padding-right: 30px;
  }

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

  .archive-layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .download-panel {
    grid-template-columns: 150px minmax(0, 1fr) 220px;
  }

  .download-copy {
    padding-right: 24px;
    padding-left: 24px;
  }

  .download-copy h2 {
    font-size: 25px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

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

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

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    font-size: 12px;
  }

  .mobile-actions {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    visibility: hidden;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    opacity: 0;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .main-nav > ul {
    display: block;
    width: min(calc(100% - 32px), var(--content));
    margin: 0 auto;
  }

  .main-nav li {
    border-bottom: 1px solid var(--line);
  }

  .main-nav li:last-child {
    border-bottom: 0;
  }

  .main-nav a {
    padding: 16px 2px;
    font-size: 14px;
  }

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

  .hero {
    background: #ffffff;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 0;
  }

  .hero-copy {
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(66px, 16vw, 96px);
  }

  .hero-slogan {
    font-size: 32px;
  }

  .hero-features,
  .hero-download {
    justify-content: center;
    align-items: center;
  }

  .auth-phone {
    justify-self: center;
    margin-top: 56px;
  }

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

  .archive-route {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .archive-route::before {
    top: 32px;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 2px;
  }

  .archive-route li {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 6px;
    text-align: center;
  }

  .archive-route li div {
    padding: 12px 0 0;
  }

  .archive-route p {
    display: none;
  }

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

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

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

  .download-panel {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .download-action {
    grid-column: 1 / -1;
    min-height: 74px;
  }

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

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

@media (max-width: 620px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 14px;
  }

  .header-inner,
  .section-inner,
  .footer-inner,
  .hero-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    gap: 8px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

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

  .brand-copy span {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-actions {
    gap: 6px;
  }

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

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

  .hero-inner {
    padding: 56px 0 70px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(56px, 17vw, 78px);
  }

  .hero-slogan {
    margin-top: 24px;
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-features {
    gap: 7px;
    margin-top: 24px;
  }

  .hero-features li {
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-download {
    margin-top: 28px;
  }

  .primary-download {
    min-width: 210px;
    min-height: 54px;
    font-size: 15px;
  }

  .auth-phone {
    width: min(100%, 250px);
    margin-top: 36px;
  }

  .phone-screen {
    min-height: 455px;
  }

  .section-inner {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 32px;
    text-align: center;
  }

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

  .section-heading-split {
    display: block;
  }

  .section-heading-split > span,
  .section-heading > div + span {
    display: block;
    margin-top: 8px;
    padding-bottom: 0;
    font-size: 13px;
    text-align: center;
  }

  .archive-route {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 8px;
  }

  .archive-route::before {
    display: none;
  }

  .archive-route li {
    min-height: 128px;
    padding: 16px 8px;
    background: var(--soft);
    border: 1px solid var(--line);
  }

  .archive-route p {
    display: block;
  }

  .archive-route strong {
    font-size: 16px;
  }

  .reading-plan {
    padding: 24px 18px;
  }

  .plan-title h3 {
    font-size: 23px;
  }

  .plan-categories {
    display: block;
  }

  .plan-categories > span {
    display: block;
    margin-bottom: 12px;
  }

  .choice-group {
    justify-content: flex-start;
  }

  .choice-group button {
    flex: 1 1 calc(33.333% - 8px);
  }

  .save-plan {
    width: 100%;
  }

  .save-feedback {
    display: block;
    margin: 8px 0 0;
    text-align: center;
  }

  .schedule-days {
    grid-template-columns: repeat(7, 72px);
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px 12px;
    overflow-x: auto;
  }

  .schedule-days::before {
    display: none;
  }

  .schedule-list article {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .schedule-list time {
    font-size: 15px;
  }

  .schedule-list h3 {
    font-size: 16px;
  }

  .reminder {
    grid-column: 2;
    justify-self: start;
  }

  .screens-grid {
    gap: 10px;
  }

  .screens-grid figcaption {
    grid-template-columns: 27px minmax(0, 1fr);
    min-height: 78px;
    padding: 12px 10px;
  }

  .screens-grid figcaption strong {
    font-size: 14px;
  }

  .screens-grid figcaption p {
    font-size: 12px;
    line-height: 1.45;
  }

  .faq-list summary {
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    min-height: 70px;
    padding: 0 14px;
  }

  .faq-list summary strong {
    font-size: 14px;
  }

  .faq-list details > p {
    padding: 0 52px 20px;
    font-size: 13px;
  }

  .official-site summary {
    min-height: 66px;
    padding: 0 15px;
  }

  .official-site summary strong {
    font-size: 13px;
  }

  .official-site > div {
    padding: 0 47px 20px;
  }

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

  .review-card {
    min-height: 240px;
    padding: 20px;
  }

  .download-section {
    padding: 72px 0;
  }

  .download-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-number {
    align-items: center;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .download-number strong {
    font-size: 48px;
  }

  .download-copy {
    align-items: center;
    padding: 34px 20px;
  }

  .download-copy h2 {
    font-size: 22px;
    white-space: normal;
  }

  .download-copy > span {
    max-width: 310px;
  }

  .download-action {
    min-height: 68px;
  }

  .footer-inner {
    padding-top: 46px;
    text-align: center;
  }

  .footer-row,
  .footer-bottom {
    flex-direction: column;
  }

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

  .footer-bottom {
    margin-top: 28px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    transition: none;
  }

  a,
  button,
  summary {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 390px) {
  .header-inner {
    width: calc(100% - 20px);
  }

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

  .brand-copy span {
    font-size: 12px;
  }

  .mobile-download {
    padding: 0 9px;
  }

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

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

  .hero-slogan {
    font-size: 25px;
  }

  .hero-features li {
    flex: 1 1 calc(33.333% - 7px);
    justify-content: center;
    padding: 0 5px;
  }

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

  .review-head {
    align-items: flex-start;
  }
}
