:root {
  --nav-bg: rgba(255, 255, 255, 0.85);
  --page-bg: #f4f6f9;
  --mist: #eaeff5;
  --surface: #ffffff;
  --soft-surface: #f9f9fb;
  --line: #e2e8f0;
  --champagne: #e8dcd0;
  --oat: #b0a499;
  --oat-strong: #d0c3b5;
  --mocha: #4a3e3d;
  --deep: #2d2221;
  --footer: #3d3130;
  --rose: #de5285;
  --rose-light: #ff94b8;
  --accent-red: #e03c3c;
  --shadow: 0 18px 45px rgba(45, 34, 33, 0.12);
  --shadow-soft: 0 10px 28px rgba(45, 34, 33, 0.08);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--mocha);
  background:
    linear-gradient(180deg, var(--page-bg) 0%, var(--mist) 28%, #ffffff 56%, var(--page-bg) 100%);
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--deep);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: saturate(150%) blur(18px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--deep);
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  color: var(--mocha);
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.primary-nav a:not(.nav-cta):hover,
.primary-nav a:not(.nav-cta):focus-visible {
  color: var(--rose);
  background: transparent;
  border-color: rgba(222, 82, 133, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 148, 184, 0.16);
  outline: none;
}

.primary-nav .nav-cta {
  gap: 8px;
  margin-left: 6px;
  color: #ffffff;
  background: var(--rose);
  border-color: transparent;
  box-shadow: 0 0 0 0 rgba(255, 148, 184, 0.45);
  animation: pulseGlow 2.8s ease-in-out infinite, ctaFloat 3.6s ease-in-out infinite;
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta:focus-visible {
  color: #ffffff;
  background: #c94373;
outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 22px;
  height: 22px;
  margin: auto;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--mocha);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(234, 239, 245, 0.78) 100%);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: 64px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--oat);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep);
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 44px;
  font-weight: 900;
}

h2 {
  font-size: 30px;
  font-weight: 850;
}

h3 {
  font-size: 19px;
  font-weight: 820;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #5c504f;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: #ffffff;
  background: var(--rose);
  box-shadow: 0 12px 28px rgba(222, 82, 133, 0.28), 0 0 18px rgba(255, 148, 184, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #c94373;
}

.btn-secondary {
  color: var(--mocha);
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--rose);
  box-shadow: var(--shadow-soft);
}

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

.hero-facts div {
  min-height: 78px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-facts dt {
  margin: 0 0 4px;
  color: var(--oat);
  font-size: 12px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  color: var(--deep);
  font-weight: 850;
}

.hero-media {
  margin: 0;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media picture {
  display: block;
  aspect-ratio: 1274 / 712;
  background: var(--mist);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figcaption {
  color: #6d6261;
  font-size: 13px;
}

.hero-media figcaption,
.wide-figure figcaption,
.image-strip figcaption,
.gallery figcaption {
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.quick-info,
.content-section,
.gallery,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

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

.quick-info article,
.feature-card,
.guide-panel,
.feature-list article,
.faq-list details {
  background: var(--soft-surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.quick-info article {
  padding: 24px;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  color: var(--rose);
  background: #fff2f6;
  border: 1px solid rgba(222, 82, 133, 0.18);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 850;
}

.quick-info p,
.feature-card p,
.feature-list p,
.guide-panel p,
.guide-panel li,
.timeline p,
.text-flow p,
.faq-list p,
.final-cta p {
  margin: 10px 0 0;
  color: #5b5050;
}

.section-heading {
  max-width: 780px;
  margin: 0 0 30px;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #625756;
  font-size: 17px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.section-figure,
.wide-figure,
.image-strip figure,
.gallery figure,
.character-art {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section-figure picture {
  display: block;
  aspect-ratio: 740 / 414;
  background: var(--mist);
}

.section-figure img,
.image-strip img,
.wide-figure img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-flow {
  padding: 2px 0;
}

.text-flow p:first-child {
  margin-top: 0;
}

.text-flow p {
  margin-top: 16px;
}

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

.feature-card {
  min-height: 220px;
  padding: 22px;
}

.feature-card h3::before,
.feature-list h3::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--rose), var(--accent-red));
  vertical-align: 0.1em;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.image-strip picture {
  display: block;
  aspect-ratio: 16 / 9;
}

.characters {
  width: 100%;
  padding: 70px max(16px, calc((100% - 1180px) / 2));
}

.character-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: stretch;
}

.character-art picture {
  display: block;
  height: 100%;
  min-height: 440px;
  background: var(--mist);
}

.character-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.character-copy {
  display: grid;
  gap: 14px;
}

.character-copy article {
  padding: 22px 0 20px;
  border-bottom: 1px solid rgba(208, 195, 181, 0.6);
}

.character-copy article:first-child {
  padding-top: 0;
}

.character-copy article:last-child {
  border-bottom: 0;
}

.character-copy p {
  margin: 10px 0 0;
  color: #5b5050;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  position: relative;
  min-height: 150px;
  padding: 22px 22px 22px 78px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--rose);
  border-radius: var(--radius);
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(222, 82, 133, 0.26);
}

.guide-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
}

.guide-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.guide-panel li + li {
  margin-top: 10px;
}

.wide-figure {
  margin-top: 24px;
}

.wide-figure picture {
  display: block;
  aspect-ratio: 1271 / 709;
  background: var(--mist);
}

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

.feature-list article {
  padding: 24px;
}

.gallery-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}

.gallery-main {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.gallery-main picture {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--champagne), #ffffff);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

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

.gallery-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  border-color: rgba(222, 82, 133, 0.78);
  box-shadow: 0 14px 30px rgba(45, 34, 33, 0.12), 0 0 0 4px rgba(255, 148, 184, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img,
.gallery-thumb.is-active img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}
.updates-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: updates;
}

.updates-list li {
  counter-increment: updates;
  display: grid;
  grid-template-columns: 54px 170px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-left: 4px solid rgba(222, 82, 133, 0.44);
  border-radius: var(--radius);
}

.updates-list li::before {
  content: counter(updates, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--rose);
  background: #fff2f6;
  border: 1px solid rgba(222, 82, 133, 0.2);
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
}

.updates-list time {
  padding-top: 5px;
  color: var(--deep);
  font-weight: 850;
  line-height: 1.5;
  white-space: nowrap;
}

.updates-list span {
  min-width: 0;
  padding-top: 3px;
  color: #5b5050;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  min-height: 58px;
  padding: 17px 52px 17px 20px;
  color: var(--deep);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: var(--oat-strong);
  border-radius: 6px;
  text-align: center;
  line-height: 24px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--rose);
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 72px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  margin-top: 0;
}

.friend-links {
  padding: 48px 0 50px;
  color: var(--champagne);
  text-align: center;
  background: var(--mocha);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.friend-links-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.friend-links-eyebrow {
  margin: 0 0 8px;
  color: rgba(255, 248, 242, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.friend-links h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  color: #fff8f2;
  font-size: 1.7rem;
  line-height: 1.2;
}

.friend-links h2::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 58px;
  height: 3px;
  content: "";
  background: var(--rose);
  border-radius: 999px;
  transform: translateX(50%);
}

.friend-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.friend-links-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  color: #fff8f2;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 210, 225, 0.32);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.friend-links-list a:hover,
.friend-links-list a:focus-visible {
  color: #ffffff;
  background: rgba(222, 82, 133, 0.34);
  border-color: var(--rose-light);
  box-shadow: 0 10px 24px rgba(32, 19, 23, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  outline: none;
  transform: translateY(-3px);
}
.site-footer {
  color: var(--champagne);
  background: var(--footer);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:first-child {
  color: #ffffff;
  font-weight: 850;
}

/* Interaction polish */
.hero-media,
.section-figure,
.wide-figure,
.image-strip figure,
.gallery figure,
.character-art,
.feature-card,
.feature-list article,
.timeline article,
.guide-panel,
.faq-list details,
.updates-list li,
.final-cta {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.hero-media:hover,
.section-figure:hover,
.wide-figure:hover,
.image-strip figure:hover,
.gallery figure:hover,
.character-art:hover {
  transform: translateY(-5px);
  border-color: rgba(222, 82, 133, 0.34);
  box-shadow: 0 22px 54px rgba(45, 34, 33, 0.14), 0 0 0 1px rgba(255, 148, 184, 0.08);
}

.hero-media img,
.section-figure img,
.wide-figure img,
.image-strip img,
.gallery img,
.character-art img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.hero-media:hover img,
.section-figure:hover img,
.wide-figure:hover img,
.image-strip figure:hover img,
.gallery figure:hover img,
.character-art:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.feature-card:hover,
.feature-list article:hover,
.timeline article:hover,
.guide-panel:hover,
.faq-list details:hover,
.updates-list li:hover,
.final-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(222, 82, 133, 0.32);
  background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
  box-shadow: 0 18px 42px rgba(45, 34, 33, 0.11), 0 0 0 1px rgba(255, 148, 184, 0.08);
}

.feature-card:hover h3,
.feature-list article:hover h3,
.timeline article:hover h3,
.character-copy article:hover h3,
.faq-list details:hover summary,
.updates-list li:hover time {
  color: var(--rose);
}

.feature-card h3::before,
.feature-list h3::before {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.feature-card:hover h3::before,
.feature-list article:hover h3::before {
  transform: rotate(45deg) scale(1.12);
  box-shadow: 0 0 0 4px rgba(255, 148, 184, 0.16);
}

.timeline article:hover span,
.updates-list li:hover::before {
  color: #ffffff;
  background: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 10px 22px rgba(222, 82, 133, 0.28);
}

.character-copy article {
  transition: padding-left 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.character-copy article:hover {
  padding-left: 10px;
  border-bottom-color: rgba(222, 82, 133, 0.34);
}

.faq-list summary::after {
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.faq-list details:hover summary::after,
.faq-list details[open] summary::after {
  box-shadow: 0 8px 18px rgba(222, 82, 133, 0.22);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  box-shadow: 0 0 18px rgba(255, 148, 184, 0.36);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 34px rgba(222, 82, 133, 0.36), 0 0 0 4px rgba(255, 148, 184, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(222, 82, 133, 0.42);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(45, 34, 33, 0.1), 0 0 0 4px rgba(255, 148, 184, 0.12);
}
@keyframes ctaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 148, 184, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 148, 184, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-layout,
  .character-layout,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-media {
    order: -1;
  }

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

  .guide-panel {
    position: static;
  }
}

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

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

  .nav-wrap {
    justify-content: space-between;
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 18px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    justify-content: flex-start;
    min-height: 46px;
  }

  .primary-nav .nav-cta {
    justify-content: center;
    margin: 8px 0 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-lead,
  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .image-strip,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .updates-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 6px 12px;
    padding: 16px;
  }

  .updates-list li::before {
    grid-row: 1 / span 2;
    width: 34px;
    height: 34px;
  }

  .updates-list time {
    padding-top: 2px;
    white-space: normal;
  }

  .updates-list span {
    grid-column: 2;
    padding-top: 0;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
  }

  .final-cta {
    display: grid;
    text-align: left;
  }

  .footer-inner {
    display: grid;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .friend-links {
    padding: 40px 0 42px;
  }

  .friend-links-inner {
    width: min(calc(100% - 24px), 980px);
  }

  .friend-links h2 {
    font-size: 1.5rem;
  }

  .friend-links-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .friend-links-list a {
    width: 100%;
    min-height: 54px;
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .nav-wrap,
  .hero,
  .quick-info,
  .content-section,
  .gallery,
  .final-cta,
  .footer-inner {
    width: min(calc(100% - 24px), 1180px);
  }

  .brand span {
    max-width: 220px;
  }

  .hero {
    padding: 32px 0 44px;
    gap: 26px;
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 23px;
  }

  h3 {
    font-size: 18px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-facts,
  .quick-info-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .quick-info,
  .content-section,
  .gallery {
    padding: 52px 0;
  }

  .quick-info article,
  .feature-card,
  .feature-list article,
  .guide-panel,
  .final-cta {
    padding: 20px;
  }

  .timeline article {
    padding: 72px 18px 20px;
  }

  .timeline span {
    top: 18px;
    left: 18px;
  }

  .character-art picture {
    min-height: 320px;
  }}














@media (max-width: 620px) {
  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


