@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&family=ZCOOL+KuaiLe&display=swap");

:root {
  --ink: #1a1220;
  --ink-soft: #3a2d45;
  --paper: #fff8fb;
  --blush: #ffe4ef;
  --rose: #ff2d6f;
  --rose-deep: #c4124f;
  --coral: #ff6b4a;
  --mint: #1ec8b0;
  --mint-soft: #d7fff6;
  --gold: #ffc14d;
  --glass: rgba(255, 248, 251, 0.72);
  --line: rgba(26, 18, 32, 0.08);
  --shadow: 0 18px 48px rgba(196, 18, 79, 0.14);
  --radius: 22px;
  --max: 1120px;
  --nav-h: 64px;
  --dock-h: auto;
  --dy: file:///C:/Users/Administrator/Desktop/code/company/%E5%AD%B5%E5%8C%96%E9%A1%B9%E7%9B%AEDY.html;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #ffd6e6 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #c8fff3 0%, transparent 45%),
    linear-gradient(180deg, #fff8fb 0%, #fff0f5 40%, #ffffff 100%);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rose-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--rose);
}

h1,
h2,
h3,
.pulse-brand-type {
  font-family: "ZCOOL KuaiLe", "Noto Sans SC", sans-serif;
  line-height: 1.25;
  font-weight: 400;
}

.pulse-wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* ========== 顶部推广区（对齐孵化项目DY.html #ads） ========== */
.pulse-promo {
  background:
    linear-gradient(120deg, rgba(255, 45, 111, 0.08), rgba(30, 200, 176, 0.06)),
    rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid var(--line);
}

.pulse-promo .pulse-wrap {
  padding: 8px 0 4px;
}

#ads {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  background: transparent;
  margin: 10px 0;
}

#ads > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
  box-sizing: border-box;
}

#ads figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#ads a {
  display: inline-block;
  text-decoration: none;
  border-radius: 15px;
  color: inherit;
}

#ads img {
  width: 65px !important;
  height: 65px !important;
  max-width: none !important;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(24, 24, 24, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: block;
  border: none;
  background: linear-gradient(135deg, #fff, #fff);
}

#ads img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 24px rgba(24, 24, 24, 0.18);
}

#ads figcaption,
#ads .caption {
  height: 15px;
  font-size: 11px;
  color: #666;
  text-align: center;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 4px 0 0;
}

/* ========== 导航 ========== */
.pulse-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 248, 251, 0.82);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}

.pulse-nav-bar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pulse-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.pulse-logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(255, 45, 111, 0.25);
}

.pulse-logo span {
  font-family: "ZCOOL KuaiLe", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.pulse-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pulse-nav-links a {
  display: block;
  padding: 8px 12px;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.pulse-nav-links a:hover,
.pulse-nav-links a.is-active {
  color: var(--rose-deep);
  background: var(--blush);
}

.pulse-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 10px;
}

.pulse-nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s ease;
}

.pulse-nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pulse-nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.pulse-nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== 漂浮下载区：fixed 贴导航下方，不撑开文档流，避免移动端空白 ========== */
.pulse-dock-shell {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--nav-h);
  z-index: 45;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 8px 12px;
  box-sizing: border-box;
}

.pulse-dock-shell.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.pulse-dock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
}

.pulse-dock-item {
  width: calc(25% - 10px);
  max-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 11px;
  box-sizing: border-box;
}

.pulse-dock-item img {
  width: 52px !important;
  height: 52px !important;
  max-width: none !important;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(26, 18, 32, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  display: block;
}

.pulse-dock-item:hover img {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 24px rgba(255, 45, 111, 0.2);
}

.pulse-dock-item span {
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 768px) {
  .pulse-dock-item {
    width: calc(12.5% - 10px);
    max-width: 64px;
  }
}

/* Hero */
.pulse-hero {
  position: relative;
  padding: 36px 0 28px;
  overflow: hidden;
}

.pulse-hero-stage {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: min(78vh, 640px);
  background:
    linear-gradient(135deg, rgba(26, 18, 32, 0.55), rgba(196, 18, 79, 0.35)),
    url("feat-comic-serial.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
  display: grid;
  align-items: end;
}

.pulse-hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(30, 200, 176, 0.35), transparent 35%),
    linear-gradient(180deg, transparent 20%, rgba(26, 18, 32, 0.78) 100%);
  pointer-events: none;
}

.pulse-hero-copy {
  position: relative;
  z-index: 2;
  padding: 28px 24px 36px;
  color: #fff;
  max-width: 720px;
  animation: pulse-rise 0.9s ease both;
}

.pulse-brand-type {
  font-size: clamp(42px, 12vw, 84px);
  margin: 0 0 8px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  letter-spacing: 2px;
}

.pulse-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(22px, 5vw, 34px);
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 900;
}

.pulse-hero-lead {
  margin: 0;
  font-size: 15px;
  opacity: 0.92;
  max-width: 36em;
}

.pulse-spark {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 193, 77, 0.55), transparent 70%);
  top: 12%;
  left: 8%;
  z-index: 1;
  animation: pulse-glow 3.2s ease-in-out infinite;
  pointer-events: none;
}

/* Sections */
.pulse-section {
  padding: 48px 0;
}

.pulse-section + .pulse-section {
  border-top: 1px dashed rgba(255, 45, 111, 0.15);
}

.pulse-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 700;
  margin-bottom: 8px;
}

.pulse-section h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 5vw, 36px);
  color: var(--ink);
}

.pulse-section h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--rose-deep);
}

.pulse-lead {
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 46em;
}

.pulse-prose p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  text-align: justify;
}

.pulse-prose p:last-child {
  margin-bottom: 0;
}

/* 不做默认隐藏，彻底避免移动端下滑空白 */
[data-reveal] {
  opacity: 1;
  transform: none;
}

/* Split feature */
.pulse-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.pulse-split.is-flip {
  direction: rtl;
}

.pulse-split.is-flip > * {
  direction: ltr;
}

.pulse-shot {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.pulse-shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
  max-height: 560px;
}

.pulse-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: inherit;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.pulse-shot-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

/* Mosaic cards */
.pulse-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.pulse-tile {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(26, 18, 32, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pulse-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pulse-tile.is-wide {
  grid-column: span 6;
}

.pulse-tile.is-tall {
  grid-column: span 4;
}

.pulse-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
}

.pulse-tile h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pulse-tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Media strip */
.pulse-media-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pulse-media-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(26, 18, 32, 0.06);
}

.pulse-media-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.pulse-media-card figcaption {
  padding: 14px 16px 18px;
}

.pulse-media-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.pulse-media-card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
}

/* Timeline */
.pulse-timeline {
  position: relative;
  padding-left: 28px;
}

.pulse-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--rose), var(--mint));
}

.pulse-step {
  position: relative;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.pulse-step::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--rose);
  box-shadow: 0 0 0 4px rgba(255, 45, 111, 0.15);
}

.pulse-step h3 {
  font-size: 18px;
}

.pulse-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Quote band */
.pulse-quote {
  border-radius: 28px;
  padding: 36px 28px;
  background:
    linear-gradient(120deg, rgba(255, 45, 111, 0.92), rgba(30, 200, 176, 0.88)),
    url("feat-anime-home.jpg") center / cover;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.pulse-quote p {
  margin: 0 auto;
  max-width: 34em;
  font-size: clamp(18px, 3.5vw, 24px);
  font-family: "ZCOOL KuaiLe", sans-serif;
  line-height: 1.5;
}

/* CTA slab */
.pulse-cta-slab {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pulse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--rose), var(--coral));
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 45, 111, 0.3);
  transition: transform 0.2s ease;
}

.pulse-btn:hover {
  transform: translateY(-2px);
}

.pulse-btn.is-ghost {
  background: transparent;
  color: var(--rose-deep) !important;
  border: 1.5px solid var(--rose);
  box-shadow: none;
}

/* FAQ */
.pulse-faq details {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.pulse-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.pulse-faq p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Breadcrumb */
.pulse-crumb {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.pulse-crumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.pulse-crumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: #b8a8b8;
}

.pulse-crumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.pulse-crumb a:hover {
  color: var(--rose);
}

/* Legal pages */
.pulse-legal {
  padding: 12px 0 56px;
}

.pulse-legal-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 22px;
  box-shadow: 0 14px 36px rgba(26, 18, 32, 0.06);
}

.pulse-legal-card h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 6vw, 40px);
}

.pulse-legal-card h2 {
  margin: 28px 0 10px;
  font-size: 22px;
  color: var(--rose-deep);
}

.pulse-legal-card p,
.pulse-legal-card li {
  color: var(--ink-soft);
}

.pulse-legal-card ul {
  padding-left: 1.2em;
}

/* Error pages */
.pulse-error {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 0;
}

.pulse-error-code {
  font-family: "ZCOOL KuaiLe", sans-serif;
  font-size: clamp(72px, 20vw, 140px);
  background: linear-gradient(135deg, var(--rose), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  line-height: 1;
}

.pulse-error h1 {
  margin: 8px 0 12px;
  font-size: 28px;
}

.pulse-error p {
  color: var(--ink-soft);
  max-width: 28em;
  margin: 0 auto 22px;
}

/* Footer */
.pulse-footer {
  margin-top: 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 40px 0 28px;
}

.pulse-footer a {
  color: #ffd0df;
  text-decoration: none;
}

.pulse-footer a:hover {
  color: #fff;
}

.pulse-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.pulse-footer h3 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 18px;
}

.pulse-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pulse-footer li {
  margin-bottom: 8px;
}

.pulse-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pulse-footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.pulse-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  font-size: 13px;
  text-align: center;
}

/* Animations */
@keyframes pulse-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes pulse-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .pulse-split,
  .pulse-split.is-flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .pulse-media-row {
    grid-template-columns: 1fr;
  }

  .pulse-tile,
  .pulse-tile.is-wide,
  .pulse-tile.is-tall {
    grid-column: span 6;
  }

  .pulse-footer-grid {
    grid-template-columns: 1fr;
  }

  .pulse-shot img {
    max-height: 480px;
  }
}

@media (max-width: 760px) {
  .pulse-nav-toggle {
    display: inline-block;
  }

  .pulse-nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 248, 251, 0.96);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    gap: 2px;
  }

  .pulse-nav-links.is-open {
    display: flex;
  }

  .pulse-tile,
  .pulse-tile.is-wide,
  .pulse-tile.is-tall {
    grid-column: span 12;
  }

  .pulse-hero-stage {
    min-height: 72vh;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
}
