@charset "UTF-8";

/* 作者：搭客佬
官网：https://www.pixivpro.cn/ */

:root {
  --blue: #0096fa;
  --blue-deep: #0667b5;
  --navy: #071c31;
  --ink: #10263b;
  --muted: #667b8d;
  --line: #c9dce9;
  --ice: #edf8ff;
  --paper: #ffffff;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

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

.container,
.header-inner,
.hero-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.screen-reader {
  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: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid #dce8f0;
  background: rgba(255, 255, 255, 0.97);
}

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

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

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

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

.brand-copy strong {
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.02em;
}

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

.main-nav ul,
.footer-nav ul {
  display: flex;
  align-items: center;
}

.main-nav ul {
  gap: 36px;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 26px 0 24px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  background: var(--blue);
  content: "";
}

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

.main-nav a.is-current::after,
.main-nav a:hover::after {
  right: 0;
  left: 0;
}

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

.mobile-download {
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.menu-button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--navy);
  background: #fff;
}

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

.icon-menu { background-image: url("../icons/menu.svg"); }
.icon-arrow { background-image: url("../icons/arrow.svg"); }
.icon-picture { background-image: url("../icons/picture.svg"); }
.icon-book { background-image: url("../icons/book.svg"); }
.icon-user { background-image: url("../icons/user.svg"); }
.icon-search { background-image: url("../icons/search.svg"); }
.icon-text { background-image: url("../icons/text.svg"); }
.icon-quote { background-image: url("../icons/quote.svg"); }
.icon-globe { background-image: url("../icons/globe.svg"); }
.icon-arrow-light { background-image: url("../icons/arrow-light.svg"); }
.icon-top { background-image: url("../icons/top.svg"); }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: #fff;
  background-image:
    linear-gradient(rgba(0, 150, 250, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 150, 250, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero::before {
  position: absolute;
  top: 66px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(0, 150, 250, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) 470px;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.eyebrow,
.section-heading > p,
.section-heading > div > p {
  color: var(--blue-deep);
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow::before,
.section-heading > p::before,
.section-heading > div > p::before {
  display: inline-block;
  width: 26px;
  height: 2px;
  margin-right: 12px;
  background: var(--blue);
  content: "";
  vertical-align: middle;
}

.hero h1 {
  margin-top: 18px;
  color: var(--navy);
  font-size: clamp(78px, 8vw, 126px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.hero h2 {
  margin-top: 34px;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.hero-description {
  max-width: 620px;
  margin-top: 22px;
  color: #516b80;
  font-size: 16px;
  line-height: 1.9;
}

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

.hero-action > a {
  display: inline-flex;
  min-width: 194px;
  min-height: 54px;
  padding: 14px 19px 14px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: var(--blue);
  box-shadow: 6px 6px 0 var(--navy);
  font-weight: 700;
}

.hero-action > a .icon {
  filter: brightness(0) invert(1);
}

.age-label {
  color: var(--muted);
  font-size: 12px;
}

.hero-features {
  display: flex;
  max-width: 560px;
  margin-top: 32px;
  padding-top: 22px;
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero-features li {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
}

.hero-features li + li {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero-gallery {
  position: relative;
  display: flex;
  height: 590px;
  align-items: center;
  justify-content: flex-end;
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: 278px;
  padding: 12px;
  border: 8px solid #0c1822;
  border-radius: 42px;
  background: #0c1822;
  box-shadow: 20px 24px 0 rgba(8, 74, 119, 0.13), 0 24px 55px rgba(2, 53, 91, 0.22);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 78px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #0c1822;
  transform: translateX(-50%);
}

.phone-screen {
  height: 510px;
  overflow: hidden;
  border-radius: 27px;
  background: #fff;
}

.phone-status,
.phone-title,
.phone-tabs,
.phone-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-status {
  height: 33px;
  padding: 6px 15px 0;
  color: #172634;
  font-size: 12px;
  font-weight: 700;
}

.phone-title {
  padding: 12px 16px 8px;
}

.phone-title strong {
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.phone-title .icon {
  width: 19px;
  height: 19px;
}

.phone-search {
  display: flex;
  height: 38px;
  margin: 0 14px 6px;
  padding: 0 12px;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  color: #718698;
  background: #edf4f8;
  font-size: 12px;
}

.phone-search .icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.phone-tabs {
  padding: 0 14px 8px;
  border-bottom: 1px solid #dce8f0;
  color: #6a8092;
  font-size: 12px;
}

.phone-tabs span {
  position: relative;
  padding: 7px 2px;
}

.phone-tabs .active {
  color: var(--blue);
  font-weight: 700;
}

.phone-tabs .active::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--blue);
  content: "";
}

.phone-feature {
  position: relative;
  display: flex;
  height: 106px;
  margin: 8px 14px 0;
  padding: 16px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(132deg, transparent 0 43%, rgba(255, 255, 255, 0.84) 43% 57%, transparent 57%),
    linear-gradient(42deg, #106ca8 0 53%, #dce9f1 53% 72%, #1c83c5 72%);
}

.phone-feature::after {
  position: absolute;
  top: -42px;
  right: -32px;
  width: 108px;
  height: 108px;
  border: 17px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.phone-feature span,
.phone-feature strong,
.phone-feature p {
  position: relative;
  z-index: 1;
}

.phone-feature span {
  font-size: 12px;
}

.phone-feature strong {
  margin-top: 1px;
  font-size: 19px;
  line-height: 1.2;
}

.phone-feature p {
  margin-top: 2px;
  font-size: 12px;
}

.phone-recommend-head {
  display: flex;
  height: 35px;
  padding: 8px 14px 5px;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
}

.phone-recommend-head strong {
  font-size: 12px;
}

.phone-recommend-head span {
  color: #6a8092;
  font-size: 12px;
}

.phone-comic-grid {
  display: grid;
  height: 138px;
  padding: 0 14px 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.phone-comic-grid article {
  min-width: 0;
}

.phone-comic-grid figure {
  display: flex;
  width: 100%;
  height: 91px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  background: #eaf4fa;
}

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

.phone-comic-grid strong,
.phone-comic-grid span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-comic-grid strong {
  margin-top: 5px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.2;
}

.phone-comic-grid span {
  margin-top: 2px;
  color: #728798;
  font-size: 12px;
  line-height: 1.2;
}

.phone-nav {
  height: 49px;
  padding: 0 15px;
  color: #678093;
  background: #fff;
  font-size: 12px;
}

.frame-line {
  position: absolute;
  z-index: 1;
  background: var(--blue);
  opacity: 0.38;
}

.line-top {
  top: 84px;
  right: 16px;
  width: 390px;
  height: 1px;
}

.line-left {
  top: 84px;
  left: 26px;
  width: 1px;
  height: 430px;
}

.work-index {
  position: absolute;
  z-index: 4;
  display: flex;
  padding: 7px 9px;
  flex-direction: column;
  color: #fff;
  background: var(--navy);
  font-family: Consolas, monospace;
  font-size: 12px;
  line-height: 1.2;
}

.work-index span {
  color: #93d8ff;
  font-size: 12px;
}

.index-one { top: 122px; left: 2px; }
.index-two { top: 290px; right: -22px; }
.index-three { right: 10px; bottom: 55px; }

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

.heading-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 38px;
}

.section-heading h2 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

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

.inspiration {
  background: var(--ice);
}

.gallery-toolbar {
  display: flex;
  margin-bottom: 18px;
  gap: 8px;
}

.gallery-toolbar button {
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid #aecde1;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.gallery-toolbar button:hover,
.gallery-toolbar button.is-active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.manga-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.92fr) 250px;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 16px;
}

.manga-card {
  min-width: 0;
  border: 1px solid #b9d4e5;
  background: #fff;
}

.manga-card-main {
  display: grid;
  grid-column: 1;
  grid-row: 1 / span 2;
  grid-template-columns: minmax(250px, 1.25fr) minmax(0, 0.95fr);
}

.manga-card-side {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
}

.manga-card-side:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.manga-card-side:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.manga-cover {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #dff2fd;
}

.manga-cover img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.manga-copy {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 25px;
  flex-direction: column;
  justify-content: center;
}

.manga-card-main .manga-copy {
  padding: 38px;
}

.manga-index {
  color: var(--blue-deep);
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.manga-state {
  align-self: flex-start;
  margin-top: 20px;
  padding: 5px 10px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.manga-copy h3 {
  margin-top: 12px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.25;
}

.manga-card-main .manga-copy h3 {
  font-size: 34px;
}

.manga-genre {
  margin-top: 6px;
  color: var(--blue-deep);
  font-size: 12px;
}

.manga-summary {
  margin-top: 18px;
  color: #536b7d;
  font-size: 13px;
  line-height: 1.8;
}

.manga-card-side .manga-summary {
  margin-top: 9px;
  line-height: 1.65;
}

.manga-meta {
  display: flex;
  margin-top: auto;
  padding-top: 24px;
  gap: 18px;
  border-top: 1px solid #d3e3ed;
  color: #6b8191;
  font-size: 12px;
}

.manga-guide {
  display: flex;
  padding: 28px;
  grid-column: 3;
  grid-row: 1 / span 2;
  flex-direction: column;
  color: #fff;
  background: var(--navy);
}

.manga-guide > p {
  color: #68caff;
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.manga-guide h3 {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.35;
}

.manga-guide ol {
  margin-top: 35px;
  border-top: 1px solid #365068;
}

.manga-guide li {
  display: grid;
  min-height: 78px;
  padding: 18px 0;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 10px;
  border-bottom: 1px solid #365068;
}

.manga-guide li b {
  color: #54c5ff;
  font-family: Georgia, serif;
  font-size: 18px;
}

.manga-guide li span {
  color: #d2e5f0;
  font-size: 13px;
}

.guide-tags {
  display: flex;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 7px;
}

.guide-tags span {
  padding: 5px 9px;
  border: 1px solid #496a82;
  color: #a9d7f1;
  font-size: 12px;
}

.discovery {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.discovery::after {
  position: absolute;
  right: -190px;
  bottom: -260px;
  width: 500px;
  height: 500px;
  border: 1px solid #a6daf8;
  border-radius: 50%;
  content: "";
}

.discovery-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}

.search-workbench {
  padding: 30px;
  border: 1px solid var(--line);
  background: #f8fcff;
}

.search-box {
  display: grid;
  min-height: 58px;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid #93bdd8;
  background: #fff;
}

.search-box > .icon {
  margin-left: 18px;
}

.search-box input {
  min-width: 0;
  height: 56px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.search-box button {
  align-self: stretch;
  min-width: 126px;
  padding: 0 20px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.content-tabs {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.content-tabs button {
  display: flex;
  min-height: 132px;
  padding: 18px 14px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid #b8d1e1;
  background: #fff;
  text-align: left;
}

.content-tabs button:hover,
.content-tabs button.is-active {
  border-color: var(--blue);
  box-shadow: inset 0 -4px 0 var(--blue);
}

.content-tabs button .icon {
  width: 24px;
  height: 24px;
  margin-bottom: auto;
}

.content-tabs button span {
  font-weight: 700;
}

.content-tabs button b {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.discovery-steps {
  border: 1px solid var(--navy);
  background: var(--navy);
}

.discovery-steps li {
  display: grid;
  min-height: 112px;
  padding: 24px;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  color: #fff;
}

.discovery-steps li + li {
  border-top: 1px solid #365068;
}

.discovery-steps li > b {
  color: #54c5ff;
  font-family: Georgia, serif;
  font-size: 25px;
}

.discovery-steps li > span {
  display: flex;
  flex-direction: column;
}

.discovery-steps strong {
  font-size: 15px;
}

.discovery-steps small {
  margin-top: 5px;
  color: #b8d3e3;
  font-size: 12px;
}

.interface {
  background: var(--navy);
}

.interface .section-heading h2 {
  color: #fff;
}

.interface .section-heading > span,
.interface .section-heading > div + span {
  color: #b9cedc;
}

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

.screenshot-grid figure {
  min-width: 0;
  border: 1px solid #31526c;
  background: #fff;
}

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

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

.screenshot-grid figcaption {
  display: flex;
  min-height: 72px;
  padding: 18px;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}

.screenshot-grid figcaption b {
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 21px;
}

.screenshot-grid figcaption strong {
  font-size: 15px;
}

.help {
  background: #f8fbfd;
}

.help .section-heading {
  max-width: 700px;
}

.help .section-heading > span {
  display: block;
  margin-top: 16px;
}

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

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

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 74px;
  padding: 18px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: transparent;
  text-align: left;
}

.faq-item > button span {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 700;
}

.faq-item > button b {
  color: var(--blue);
  font-family: Consolas, monospace;
  font-size: 12px;
}

.faq-item > button i,
.official-site summary > b {
  position: relative;
  width: 18px;
  height: 18px;
}

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

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

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

.faq-answer {
  display: none;
  padding: 0 64px 22px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.official-site {
  width: 100%;
  max-width: 1200px;
  margin-top: 28px;
  border: 1px solid var(--navy);
  background: #fff;
}

.official-site summary {
  display: flex;
  min-height: 70px;
  padding: 18px 24px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
}

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

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

.official-answer {
  padding: 0 24px 22px 57px;
}

.official-answer a {
  color: var(--blue-deep);
  text-decoration: underline;
}

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

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

.review-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid #b7d3e5;
  border-top: 4px solid var(--blue);
  background: #fff;
}

.review-card:nth-child(even) {
  border-top-color: var(--navy);
}

.review-head {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.review-head strong {
  color: var(--navy);
  font-size: 14px;
}

.review-head time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.review-card > p {
  margin-top: 23px;
  padding-top: 20px;
  border-top: 1px solid #d2e1eb;
  color: #364f62;
  font-size: 14px;
  line-height: 1.9;
}

.download {
  padding: 90px 0;
  color: #fff;
  background: var(--navy);
}

.download-ticket {
  display: grid;
  min-height: 180px;
  grid-template-columns: 190px minmax(0, 1fr) 230px;
  border: 1px solid #5abdf2;
  background: #0a263e;
}

.ticket-index {
  display: flex;
  padding: 28px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px dashed #5abdf2;
  background: var(--blue);
}

.ticket-index span {
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 0.9;
}

.ticket-index b {
  font-family: Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.ticket-copy {
  display: flex;
  padding: 28px 38px;
  flex-direction: column;
  justify-content: center;
}

.ticket-copy p {
  color: #6eceff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ticket-copy h2 {
  margin-top: 6px;
  color: #fff;
  font-size: 30px;
  line-height: 1.25;
}

.ticket-copy > span {
  margin-top: 7px;
  color: #b9d2e2;
  font-size: 13px;
}

.download-ticket > a {
  display: flex;
  padding: 28px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  border-left: 1px dashed #5abdf2;
  background: #026caf;
  font-size: 17px;
  font-weight: 700;
}

.download-ticket > a .icon {
  width: 22px;
  height: 22px;
}

.site-footer {
  padding: 56px 0 30px;
  color: #c6d9e6;
  background: #04111d;
}

.footer-row {
  display: flex;
  padding-bottom: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

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

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

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

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

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  text-align: center;
}

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

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid #fff;
  opacity: 0;
  visibility: hidden;
  background: var(--blue);
  box-shadow: 4px 4px 0 var(--navy);
}

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

.back-to-top .icon {
  width: 21px;
  height: 21px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid #ffbf2f;
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .main-nav ul {
    gap: 23px;
  }

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

  .manga-showcase {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  }

  .manga-guide {
    min-height: 250px;
    grid-column: 1 / span 2;
    grid-row: 3;
  }
}

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

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

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

  .container,
  .header-inner,
  .hero-inner {
    width: calc(100% - 28px);
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
  }

  .site-brand {
    min-width: 0;
    gap: 8px;
  }

  .site-brand img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

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

  .brand-copy span {
    display: block;
    max-width: none;
    overflow: visible;
    font-size: 12px;
    text-overflow: clip;
    white-space: nowrap;
  }

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

  .main-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid #dce8f0;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: block;
    width: calc(100% - 28px);
    margin: 0 auto;
  }

  .main-nav li + li {
    border-top: 1px solid #dce8f0;
  }

  .main-nav a {
    padding: 17px 4px;
    font-size: 14px;
  }

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

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    padding: 76px 0 82px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(64px, 23vw, 94px);
    white-space: normal;
  }

  .hero h2 {
    margin-top: 26px;
    font-size: clamp(26px, 8vw, 35px);
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
  }

  .hero-action {
    align-items: center;
  }

  .hero-features {
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }

  .hero-features li {
    justify-content: center;
    font-size: 12px;
  }

  .hero-gallery {
    height: 560px;
    justify-content: center;
  }

  .phone-shell {
    width: 270px;
  }

  .line-top {
    right: 5%;
    width: 90%;
  }

  .line-left {
    left: 7%;
  }

  .index-one {
    left: 2%;
  }

  .index-two {
    right: 1%;
  }

  .heading-inline {
    display: block;
  }

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

  .heading-inline > span {
    display: block;
    margin-top: 14px;
  }

  .gallery-toolbar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .manga-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .manga-card-main,
  .manga-card-side {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .manga-card-main,
  .manga-card-side:nth-child(2),
  .manga-card-side:nth-child(3),
  .manga-guide {
    grid-row: auto;
    grid-column: auto;
  }

  .manga-card-main .manga-copy {
    padding: 28px;
  }

  .discovery-board {
    grid-template-columns: 1fr;
  }

  .content-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .download-ticket > a {
    min-height: 70px;
    grid-column: span 2;
    border-top: 1px dashed #5abdf2;
    border-left: 0;
  }

  .ticket-index {
    padding: 24px 18px;
  }

  .ticket-index span {
    font-size: 45px;
  }

  .ticket-copy {
    padding: 25px;
  }

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

  .footer-row {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-brand {
    justify-content: center;
  }

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

  a:active,
  button:active,
  summary:active {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .container,
  .header-inner,
  .hero-inner {
    width: calc(100% - 24px);
  }

  .mobile-download {
    padding: 10px;
  }

  .hero-inner {
    padding-top: 60px;
  }

  .eyebrow,
  .section-heading > p,
  .section-heading > div > p {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .eyebrow::before,
  .section-heading > p::before,
  .section-heading > div > p::before {
    width: 18px;
    margin-right: 8px;
  }

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

  .hero h2 {
    font-size: 29px;
  }

  .hero-features {
    flex-wrap: wrap;
    gap: 13px 0;
  }

  .hero-features li {
    min-width: 50%;
    flex: 0 0 50%;
  }

  .hero-features li + li {
    padding-left: 0;
    border-left: 0;
  }

  .hero-gallery {
    height: 545px;
  }

  .phone-shell {
    width: 248px;
    padding: 9px;
    border-width: 7px;
  }

  .phone-screen {
    height: 510px;
  }

  .work-index {
    display: none;
  }

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

  .manga-card-main,
  .manga-card-side {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .manga-card-main .manga-copy,
  .manga-copy {
    padding: 18px;
  }

  .manga-state {
    margin-top: 11px;
  }

  .manga-card-main .manga-copy h3,
  .manga-copy h3 {
    font-size: 22px;
  }

  .manga-summary {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.6;
  }

  .manga-meta {
    display: none;
  }

  .manga-guide {
    padding: 22px;
  }

  .search-workbench {
    padding: 16px;
  }

  .search-box {
    grid-template-columns: 22px 1fr;
  }

  .search-box button {
    min-height: 46px;
    grid-column: span 2;
  }

  .content-tabs button {
    min-height: 116px;
  }

  .screenshot-grid figcaption {
    min-height: 66px;
    padding: 12px 10px;
    gap: 8px;
  }

  .screenshot-grid figcaption strong {
    font-size: 13px;
  }

  .faq-item > button {
    min-height: 68px;
    padding: 15px;
  }

  .faq-item > button span {
    gap: 11px;
    font-size: 13px;
  }

  .faq-answer {
    padding: 0 42px 18px;
    font-size: 13px;
  }

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

  .official-answer {
    padding: 0 16px 18px 48px;
  }

  .review-card {
    padding: 20px;
  }

  .review-head {
    grid-template-columns: 38px 1fr auto;
    gap: 8px;
  }

  .avatar {
    width: 38px;
    height: 38px;
  }

  .review-head time {
    text-align: right;
  }

  .review-card > p {
    font-size: 13px;
  }

  .download {
    padding: 70px 0;
  }

  .download-ticket {
    display: block;
  }

  .ticket-index {
    min-height: 96px;
    flex-direction: row;
    align-items: center;
    border-right: 0;
    border-bottom: 1px dashed #5abdf2;
  }

  .ticket-copy {
    padding: 26px 20px;
    text-align: center;
  }

  .download-ticket > a {
    min-height: 68px;
  }

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

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