:root {
  color-scheme: light;
  --jade: #073d37;
  --jade-deep: #032722;
  --jade-soft: #145c52;
  --mint: #b9e7cc;
  --mint-pale: #e5f3e9;
  --apricot: #f0b66b;
  --apricot-soft: #f7d8ac;
  --porcelain: #f5f1e8;
  --paper: #fffdf7;
  --ink: #14231f;
  --muted: #65726d;
  --line: rgba(20, 35, 31, .16);
  --shell: min(1480px, calc(100% - 72px));
  --shadow: 0 28px 80px rgba(3, 39, 34, .16);
}

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

html { scroll-behavior: smooth; }

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

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--porcelain);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.section-shell,
.header-inner { width: var(--shell); margin-inline: auto; }

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 16px;
  color: var(--jade-deep);
  background: var(--mint);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 9px 12px 9px 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: #fff;
  background: rgba(3, 39, 34, .78);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

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

.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand > span,
.footer-brand > span { display: flex; flex-direction: column; }
.brand strong { font-size: 18px; letter-spacing: .03em; }
.brand small { color: #a9d5c2; font-size: 8px; letter-spacing: .2em; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: clamp(13px, 1.8vw, 29px);
}

.main-nav a {
  position: relative;
  padding: 15px 0;
  color: #dcece5;
  font-size: 11px;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--apricot);
  transform: scaleX(0);
  transition: transform .2s ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 790px;
  overflow: hidden;
  color: #fff;
  background: var(--jade-deep);
}

.hero-wall {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 39, 34, .9) 0%, rgba(3, 39, 34, .62) 38%, rgba(3, 39, 34, .12) 72%, rgba(3, 39, 34, .04) 100%),
    linear-gradient(180deg, rgba(3, 39, 34, .08) 0%, rgba(3, 39, 34, .12) 60%, rgba(3, 39, 34, .64) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--shell);
  padding: 160px 0 100px;
  text-align: left;
}

.hero-kicker,
.section-kicker {
  color: var(--apricot);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-kicker { display: inline-flex; align-items: center; gap: 12px; }
.hero-kicker span { width: 38px; height: 1px; background: var(--apricot); }

.hero h1 {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(48px, 5.4vw, 86px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1.05;
  text-shadow: 0 16px 50px rgba(0, 0, 0, .35);
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: #d5e7df;
  font-size: 15px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 54px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-solid { color: var(--jade-deep); background: var(--mint); }
.button-solid:hover { background: #d1f2df; }
.button-line { color: #fff; border-color: rgba(255,255,255,.52); background: rgba(0,0,0,.08); }
.button-line:hover { color: var(--jade-deep); background: #fff; }

.hero-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 30px;
}

.hero-topics span {
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 999px;
  color: #c5ddd3;
  font-size: 10px;
  background: rgba(3,39,34,.35);
}

.hero-edge {
  position: absolute;
  right: 24px;
  bottom: 26px;
  z-index: 4;
  color: rgba(255,255,255,.5);
  font-size: 8px;
  letter-spacing: .2em;
}

.short-lab,
.popular-section,
.series-section,
.latest-section,
.brand-story { padding: 120px 0; }

.section-head,
.popular-head,
.series-head {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 640px);
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-head h2,
.popular-head h2,
.series-head h2,
.latest-intro h2,
.brand-card h2,
.comic-copy h2 {
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 76px);
  letter-spacing: -.055em;
  line-height: 1.06;
}

.section-head > p,
.popular-head > p,
.series-head > p,
.latest-intro > p,
.comic-copy > p,
.brand-card > div > p { color: var(--muted); font-size: 13px; line-height: 2; }

.reel-row {
  display: grid;
  grid-template-columns: 1.18fr repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.reel-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px 30px 8px 8px;
  background: var(--paper);
  transition: transform .25s ease, box-shadow .25s ease;
}

.reel-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.reel-card .poster-crop { border-radius: 29px 29px 0 0; }
.reel-card > div { min-height: 142px; padding: 20px 18px 22px; }
.reel-card-tall > div { min-height: 186px; }
.reel-card small,
.comic-mosaic small,
.popular-rail small,
.series-library small { color: var(--jade-soft); font-size: 9px; font-weight: 700; }
.reel-card h3 { margin-top: 7px; font-size: 16px; line-height: 1.4; }
.reel-card p { margin-top: 10px; color: var(--muted); font-size: 11px; }

.comic-lab {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: #fff;
  background: var(--jade);
}

.comic-lab::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(185,231,204,.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(185,231,204,.035), 0 0 0 160px rgba(185,231,204,.025);
}

.comic-layout { display: block; }
.comic-copy {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(420px, 1.28fr);
  align-items: end;
  gap: 22px 72px;
  margin-bottom: 52px;
}
.comic-copy .section-kicker { grid-column: 1 / 3; }
.comic-copy h2 { max-width: 520px; }
.comic-copy > p { max-width: 780px; margin: 0; color: #b9d4c9; }
.comic-copy .text-link { grid-column: 2; }
.text-link { display: inline-flex; align-items: center; gap: 30px; margin-top: 28px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.42); color: var(--apricot); font-size: 12px; }

.comic-mosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.comic-mosaic article {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px 22px 8px 8px;
  background: rgba(3,39,34,.38);
  transition: transform .22s ease, background .22s ease;
}

.comic-mosaic article:hover { transform: translateY(-6px); background: rgba(3,39,34,.62); }
.comic-mosaic .poster-crop { width: 100%; height: auto; aspect-ratio: 2 / 3; border-radius: 21px 21px 0 0; }
.comic-mosaic article > div { flex: 1; min-height: 176px; padding: 20px 17px 22px; }
.comic-mosaic h3 { margin-top: 6px; font-size: 17px; line-height: 1.45; }
.comic-mosaic p { margin-top: 10px; color: #b9d4c9; font-size: 11px; }

.popular-section { color: var(--jade-deep); background: var(--apricot-soft); }
.popular-head > p { color: #6a5844; }
.popular-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.popular-rail article {
  display: grid;
  grid-template-columns: 40% 1fr;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(3,39,34,.16);
  border-radius: 8px 34px 8px 34px;
  background: rgba(255,255,255,.58);
}

.popular-rail .poster-crop { height: 100%; aspect-ratio: auto; }
.popular-rail article > div { align-self: center; padding: 25px; }
.popular-rail h3 { margin-top: 8px; font-size: 20px; line-height: 1.4; }
.popular-rail p { margin-top: 18px; color: #695d50; font-size: 11px; }

.series-section { background: var(--mint-pale); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.filter-bar button {
  padding: 11px 18px;
  border: 1px solid rgba(7,61,55,.22);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.filter-bar button.is-active { color: #fff; background: var(--jade); }
.series-library { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.series-library article {
  display: grid;
  grid-template-columns: 104px 1fr;
  overflow: hidden;
  min-height: 154px;
  border: 1px solid rgba(7,61,55,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  transition: opacity .2s ease, transform .2s ease;
}

.series-library article.is-hidden { display: none; }
.series-library article:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(3,39,34,.08); }
.series-library .poster-crop { height: 100%; aspect-ratio: auto; }
.series-library .series-poster { width: 100%; height: 100%; object-fit: cover; }
.series-library article > div { align-self: center; padding: 16px; }
.series-library h3 { margin-top: 5px; font-size: 15px; line-height: 1.38; }
.series-library p { margin-top: 9px; color: #7d8a85; font-size: 9px; }

.latest-section { color: #fff; background: var(--jade-deep); }
.latest-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.latest-intro { padding-top: 20px; }
.latest-intro > p { margin-top: 26px; color: #a8c5b9; }
.update-list { border-top: 1px solid rgba(255,255,255,.16); }
.update-list article {
  display: grid;
  grid-template-columns: 105px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.update-list time { color: var(--apricot); font-size: 10px; }
.update-list h3 { font-size: 20px; }
.update-list p { margin-top: 5px; color: #9eb8ad; font-size: 11px; }
.update-list > article > span { color: rgba(255,255,255,.34); font-size: 8px; letter-spacing: .15em; }

.brand-story { background: var(--porcelain); }
.brand-card {
  display: grid;
  grid-template-columns: 130px 1fr .62fr;
  align-items: center;
  gap: 54px;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 48px 8px 48px 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.brand-card > img { width: 120px; height: 120px; object-fit: contain; filter: drop-shadow(0 16px 22px rgba(240,182,107,.25)); }
.brand-card > div > p { margin-top: 22px; }
.brand-topic-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.brand-topic-cloud span { padding: 7px 11px; border: 1px solid rgba(7,61,55,.16); border-radius: 999px; color: var(--jade); font-size: 9px; background: rgba(185,231,204,.22); }
.brand-card blockquote { padding-left: 34px; border-left: 1px solid var(--line); color: var(--jade); font-family: "Songti SC", "STSong", serif; font-size: clamp(30px, 3.5vw, 52px); line-height: 1.45; }

.site-footer { color: #dcece5; background: #021d1a; }
.footer-main { display: grid; grid-template-columns: .65fr 1.25fr .7fr; align-items: center; gap: 54px; padding: 65px 0; }
.footer-brand img { width: 58px; height: 58px; }
.footer-brand strong { font-size: 18px; }
.footer-brand small { color: #7da99a; font-size: 8px; letter-spacing: .15em; }
.footer-main > p { color: #8eb2a4; font-size: 11px; }
.footer-main nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; color: #acc8bd; font-size: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.1); color: #658c7d; font-size: 9px; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: var(--jade-deep);
  background: var(--mint);
  box-shadow: 0 14px 35px rgba(3,39,34,.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .2s ease;
}

.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.poster-crop {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #0a302b;
}

.poster-crop.source-c,
.poster-crop.source-d { aspect-ratio: 2 / 3; }
.poster-crop > img {
  position: absolute;
  display: block;
  max-width: none;
  min-height: 0;
  margin: 0;
  object-fit: fill;
  transform-origin: center;
}

.poster-crop.source-c > img { width: 600%; height: 400%; }
.crop-c-1 > img { top: 0; left: 0; }
.crop-c-2 > img { top: 0; left: -100%; }
.crop-c-3 > img { top: 0; left: -200%; }
.crop-c-4 > img { top: 0; left: -300%; }
.crop-c-5 > img { top: 0; left: -400%; }
.crop-c-6 > img { top: 0; left: -500%; }
.crop-c-7 > img { top: -100%; left: 0; }
.crop-c-8 > img { top: -100%; left: -100%; }
.crop-c-9 > img { top: -100%; left: -200%; }
.crop-c-10 > img { top: -100%; left: -300%; }
.crop-c-11 > img { top: -100%; left: -400%; }
.crop-c-12 > img { top: -100%; left: -500%; }
.crop-c-13 > img { top: -200%; left: 0; }
.crop-c-14 > img { top: -200%; left: -100%; }
.crop-c-15 > img { top: -200%; left: -200%; }
.crop-c-16 > img { top: -200%; left: -300%; }
.crop-c-17 > img { top: -200%; left: -400%; }
.crop-c-18 > img { top: -200%; left: -500%; }
.crop-c-19 > img { top: -300%; left: 0; }
.crop-c-20 > img { top: -300%; left: -100%; }
.crop-c-21 > img { top: -300%; left: -200%; }
.crop-c-22 > img { top: -300%; left: -300%; }
.crop-c-23 > img { top: -300%; left: -400%; }
.crop-c-24 > img { top: -300%; left: -500%; }

.poster-crop.source-d > img { width: 300%; height: 200%; }
.crop-d-1 > img { top: 0; left: 0; }
.crop-d-2 > img { top: 0; left: -100%; }
.crop-d-3 > img { top: 0; left: -200%; }
.crop-d-4 > img { top: -100%; left: 0; }
.crop-d-5 > img { top: -100%; left: -100%; }
.crop-d-6 > img { top: -100%; left: -200%; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 44px, 1080px); }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 10px; }
  .reel-row { grid-template-columns: repeat(3, 1fr); }
  .reel-card-tall { grid-row: span 2; }
  .comic-copy { grid-template-columns: 1fr 1.4fr; gap: 20px 50px; }
  .comic-mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .popular-rail { grid-template-columns: repeat(2, 1fr); }
  .series-library { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 930px) {
  :root { --shell: min(100% - 32px, 780px); }
  .site-header { top: 14px; }
  .header-inner { min-height: 64px; padding: 7px 9px 7px 14px; border-radius: 30px; }
  .brand img { width: 44px; height: 44px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: min(84vw, 380px);
    padding: 100px 28px 30px;
    background: var(--jade-deep);
    box-shadow: -28px 0 70px rgba(0,0,0,.26);
    transform: translateX(105%);
    transition: transform .25s ease;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
  .hero { min-height: 820px; }
  .hero-content { padding-top: 160px; }
  .section-head,
  .popular-head,
  .series-head { grid-template-columns: 1fr; gap: 24px; }
  .reel-row { grid-template-columns: repeat(2, 1fr); }
  .reel-card-tall { grid-row: auto; }
  .comic-copy { grid-template-columns: 1fr; }
  .comic-copy .section-kicker,
  .comic-copy .text-link { grid-column: auto; }
  .comic-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .popular-rail article { min-height: 290px; }
  .series-library { grid-template-columns: repeat(2, 1fr); }
  .latest-layout { grid-template-columns: 1fr; gap: 48px; }
  .brand-card { grid-template-columns: 100px 1fr; gap: 34px; padding: 42px; }
  .brand-card > img { width: 96px; height: 96px; }
  .brand-card blockquote { grid-column: 1 / 3; padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { grid-column: 1 / 3; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); }
  .brand strong { font-size: 16px; }
  .brand small { display: none; }
  .hero { min-height: 760px; }
  .hero-banner-image { object-position: 58% center; }
  .hero-content { width: calc(100% - 18px); padding: 138px 8px 90px; }
  .hero h1 { margin-top: 22px; font-size: clamp(42px, 13.2vw, 64px); }
  .hero-lead { font-size: 13px; line-height: 1.85; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-edge { display: none; }
  .short-lab,
  .popular-section,
  .series-section,
  .latest-section,
  .brand-story { padding: 82px 0; }
  .section-head h2,
  .popular-head h2,
  .series-head h2,
  .latest-intro h2,
  .brand-card h2,
  .comic-copy h2 { font-size: 42px; }
  .reel-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .reel-card { border-radius: 20px 20px 6px 6px; }
  .reel-card .poster-crop { border-radius: 19px 19px 0 0; }
  .reel-card > div { min-height: 135px; padding: 15px 12px; }
  .reel-card h3 { font-size: 14px; }
  .reel-card p { display: none; }
  .reel-card:first-child { grid-column: 1 / 3; display: grid; grid-template-columns: 48% 1fr; }
  .reel-card:first-child .poster-crop { height: 100%; aspect-ratio: auto; border-radius: 19px 0 0 5px; }
  .reel-card:first-child > div { align-self: center; }
  .comic-lab { padding: 88px 0; }
  .comic-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .comic-mosaic article > div { min-height: 184px; padding: 16px 12px 18px; }
  .comic-mosaic h3 { font-size: 14px; }
  .comic-mosaic p { font-size: 10px; }
  .popular-rail { grid-template-columns: 1fr; }
  .popular-rail article { min-height: 260px; }
  .series-library { grid-template-columns: 1fr; }
  .series-library article { grid-template-columns: 116px 1fr; min-height: 166px; }
  .update-list article { grid-template-columns: 80px 1fr; gap: 16px; }
  .update-list > article > span { display: none; }
  .brand-card { grid-template-columns: 1fr; padding: 30px 24px; border-radius: 28px 6px 28px 6px; text-align: center; }
  .brand-card > img { margin-inline: auto; }
  .brand-card blockquote { grid-column: auto; text-align: left; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-main nav { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
