/* 91PORNAPP官方下载站样式 - 91porns.lol */
:root {
  --primary: #ff6600;
  --primary-dark: #e55a00;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1e1e1e;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --border: #2a2a2a;
  --gradient: linear-gradient(135deg, #ff6600 0%, #ff9933 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --radius: 12px;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); text-decoration: underline; }

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

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-link:hover { text-decoration: none; }
.logo-img { width: 48px; height: 48px; border-radius: 10px; }
.logo-text { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
.logo-text span { color: var(--primary); }

.nav-main { display: flex; gap: 8px; align-items: center; }
.nav-main a {
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-main a:hover, .nav-main a.active {
  color: var(--text-primary);
  background: var(--bg-card);
  text-decoration: none;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(255,102,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,102,0,0.4);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.page-header {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #111 0%, var(--bg-dark) 100%);
  border-bottom: 1px solid var(--border);
}

.page-header h1 { font-size: 2rem; margin-bottom: 8px; }
.page-header .breadcrumb { color: var(--text-muted); font-size: 0.9rem; }
.page-header .breadcrumb a { color: var(--text-secondary); }

.page-body { padding: 48px 0 80px; }

.legal-content h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--text-primary); }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--primary); }
.legal-content p, .legal-content li { color: var(--text-secondary); margin-bottom: 12px; }
.legal-content ul, .legal-content ol { margin-left: 24px; margin-bottom: 16px; }

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.8;
}

.error-page h1 { font-size: 1.8rem; margin: 16px 0; }
.error-page p { color: var(--text-secondary); margin-bottom: 32px; max-width: 480px; }

.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }

.footer-col h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--text-primary); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; text-decoration: none; }
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; }
.footer-links a:hover { color: var(--primary); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-main.open { display: flex; }
  .nav-main a { width: 100%; text-align: center; padding: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .error-code { font-size: 5rem; }
}

/* ===== 首页重设计 v2 · 91porns.lol ===== */
.page-home {
  background: #050505;
  --hp-accent: #ff6600;
  --hp-accent-soft: rgba(255, 102, 0, 0.12);
  --hp-purple: #7c3aed;
  --hp-card: #101010;
  --hp-border: #222;
}
.page-home::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.home-main { overflow-x: hidden; position: relative; z-index: 1; }

.home-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hp-accent);
  font-weight: 700;
  margin-bottom: 10px;
}

/* —— Hero 全屏区 —— */
.hp-hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% -10%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 30%, rgba(255, 102, 0, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255, 102, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hp-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 48px;
}
.hp-hero-copy { max-width: 580px; }
.hp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,102,0,0.3);
  font-size: 0.8rem;
  color: var(--hp-accent);
  font-weight: 600;
  margin-bottom: 22px;
}
.hp-hero-eyebrow img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.hp-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.hp-hero h1 .hl {
  display: block;
  background: linear-gradient(90deg, #ff6600, #ffaa44);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-hero-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff6600, #e55a00);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: 0 8px 28px rgba(255,102,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,102,0,0.45);
  color: #fff !important;
}
.hp-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--hp-border);
  color: var(--text-secondary) !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, color 0.2s;
}
.hp-btn-outline:hover {
  border-color: var(--hp-accent);
  color: var(--hp-accent) !important;
}
.hp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  list-style: none;
}
.hp-stats li {
  padding: 14px 12px;
  background: var(--hp-card);
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  text-align: center;
}
.hp-stats strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}
.hp-stats span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* 手机展示 Bento */
.hp-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  min-height: 420px;
}
.hp-phone-main {
  grid-row: 1 / 3;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid #2a2a2a;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,102,0,0.1);
  transform: rotate(-2deg);
  transition: transform 0.4s;
}
.hp-phone-main:hover { transform: rotate(0deg) scale(1.02); }
.hp-phone-main img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
}
.hp-phone-sub {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hp-border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.hp-phone-sub:hover { transform: translateY(-4px); }
.hp-phone-sub img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
}
.hp-phone-sub figcaption {
  padding: 8px 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--hp-card);
  text-align: center;
}

/* 滚动关键词条 */
.hp-marquee {
  border-top: 1px solid var(--hp-border);
  border-bottom: 1px solid var(--hp-border);
  background: rgba(255,102,0,0.04);
  overflow: hidden;
  padding: 12px 0;
}
.hp-marquee-track {
  display: flex;
  gap: 32px;
  animation: hp-scroll 28s linear infinite;
  width: max-content;
}
.hp-marquee-track span {
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.hp-marquee-track span::before {
  content: '◆';
  color: var(--hp-accent);
  margin-right: 10px;
  font-size: 0.5rem;
  vertical-align: middle;
}
@keyframes hp-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 浮动锚点 Dock */
.hp-dock-wrap {
  position: sticky;
  top: 72px;
  z-index: 80;
  padding: 12px 0;
  pointer-events: none;
}
.hp-dock {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  margin: 0 auto;
  max-width: fit-content;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--hp-border);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  overflow-x: auto;
  scrollbar-width: none;
}
.hp-dock::-webkit-scrollbar { display: none; }
.hp-dock a {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted) !important;
  text-decoration: none !important;
  transition: all 0.2s;
  white-space: nowrap;
}
.hp-dock a:hover,
.hp-dock a.active {
  background: var(--hp-accent-soft);
  color: var(--hp-accent) !important;
}

/* 通用区块 */
.hp-section {
  padding: 72px 0;
}
.hp-section-alt { background: #080808; }
.hp-head {
  margin-bottom: 40px;
}
.hp-head-center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hp-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hp-head p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 模块 Tab 面板 */
.hp-modules { background: #070707; }
.hp-module-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}
.hp-module-tabs button {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--hp-border);
  background: var(--hp-card);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.hp-module-tabs button:hover {
  border-color: rgba(255,102,0,0.4);
  color: var(--hp-accent);
}
.hp-module-tabs button.active {
  background: var(--hp-accent-soft);
  border-color: var(--hp-accent);
  color: var(--hp-accent);
}
.hp-module-panel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  padding: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  border: 1px solid var(--hp-border);
  border-radius: 24px;
  animation: hp-fade 0.35s ease;
}
.hp-module-panel.active { display: grid; }
@keyframes hp-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hp-module-visual {
  display: flex;
  justify-content: center;
}
.hp-module-visual img {
  max-width: 240px;
  width: 100%;
  border-radius: 20px;
  border: 2px solid #2a2a2a;
  box-shadow: 0 24px 48px rgba(0,0,0,0.45);
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
}
.hp-module-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--hp-accent);
  margin-bottom: 10px;
}
.hp-module-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}
.hp-module-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.hp-module-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.hp-module-chips li {
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  color: #c4b5fd;
}

/* Bento 功能卡片 */
.hp-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 14px;
}
.hp-bento-card {
  padding: 24px;
  background: var(--hp-card);
  border: 1px solid var(--hp-border);
  border-radius: 18px;
  transition: border-color 0.25s, transform 0.25s;
}
.hp-bento-card:hover {
  border-color: rgba(255,102,0,0.35);
  transform: translateY(-3px);
}
.hp-bento-card.span2 { grid-column: span 2; }
.hp-bento-card.tall { grid-row: span 2; }
.hp-bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--hp-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.hp-bento-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hp-bento-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.hp-bento-thumb {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--hp-border);
}
.hp-bento-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: top;
}

/* 横向截图画廊 */
.hp-scroll-gallery {
  padding: 72px 0;
  background: #060606;
  border-top: 1px solid var(--hp-border);
  overflow: hidden;
}
.hp-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--hp-accent) #111;
}
.hp-scroll-track::-webkit-scrollbar { height: 6px; }
.hp-scroll-track::-webkit-scrollbar-thumb {
  background: var(--hp-accent);
  border-radius: 3px;
}
.hp-scroll-item {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hp-border);
  background: var(--hp-card);
  transition: transform 0.25s;
}
.hp-scroll-item.wide { flex: 0 0 280px; }
.hp-scroll-item:hover { transform: scale(1.03); }
.hp-scroll-item img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
  display: block;
}
.hp-scroll-item figcaption {
  padding: 10px 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  background: var(--hp-card);
  margin: 0;
}

/* 安装时间线 */
.hp-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 40px;
}
.hp-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--hp-accent), rgba(255,102,0,0.1));
}
.hp-timeline-step {
  position: relative;
  padding-bottom: 36px;
}
.hp-timeline-step:last-child { padding-bottom: 0; }
.hp-timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--hp-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(255,102,0,0.2);
}
.hp-timeline-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hp-timeline-step p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}
.hp-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  list-style: none;
}
.hp-keywords li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 6px 16px;
  border: 1px dashed #333;
  border-radius: 50px;
}

/* 深度指南 · 杂志双栏 */
.hp-guide {
  background: #050505;
  border-top: 1px solid var(--hp-border);
}
.hp-guide-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.hp-guide-toc {
  position: sticky;
  top: 140px;
  padding: 24px;
  background: var(--hp-card);
  border: 1px solid var(--hp-border);
  border-radius: 18px;
}
.hp-guide-toc h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.hp-guide-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hp-guide-toc a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-muted) !important;
  text-decoration: none !important;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.hp-guide-toc a:hover {
  color: var(--hp-accent) !important;
  background: var(--hp-accent-soft);
  border-left-color: var(--hp-accent);
}
.hp-article section {
  padding: 32px 0;
  border-bottom: 1px solid #1a1a1a;
}
.hp-article section:last-child { border-bottom: none; }
.hp-article h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hp-article h3::before {
  content: '';
  width: 4px;
  height: 1.2em;
  background: var(--gradient);
  border-radius: 2px;
  flex-shrink: 0;
}
.hp-article p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 14px;
  text-align: justify;
}
.hp-callout {
  margin-top: 20px;
  padding: 18px 22px;
  background: var(--hp-accent-soft);
  border: 1px solid rgba(255,102,0,0.25);
  border-radius: 14px;
  border-left: 4px solid var(--hp-accent);
}
.hp-callout p { margin: 0; font-size: 0.92rem; }

/* FAQ 网格 */
.hp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.hp-faq-card {
  padding: 22px 24px;
  background: var(--hp-card);
  border: 1px solid var(--hp-border);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.hp-faq-card:hover { border-color: rgba(255,102,0,0.3); }
.hp-faq-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.hp-faq-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* 底部 CTA 横幅 */
.hp-cta-banner {
  margin: 0 20px 48px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 40px 48px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,102,0,0.15) 0%, rgba(124,58,237,0.1) 100%),
    var(--hp-card);
  border: 1px solid rgba(255,102,0,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hp-cta-banner h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 6px;
}
.hp-cta-banner p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* 响应式 */
@media (max-width: 1024px) {
  .hp-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hp-hero-copy { max-width: none; margin: 0 auto; }
  .hp-hero-actions { justify-content: center; }
  .hp-stats { grid-template-columns: repeat(2, 1fr); }
  .hp-showcase { max-width: 360px; margin: 0 auto; }
  .hp-module-panel { grid-template-columns: 1fr; text-align: center; }
  .hp-module-chips { justify-content: center; }
  .hp-bento { grid-template-columns: 1fr 1fr; }
  .hp-bento-card.span2 { grid-column: span 1; }
  .hp-bento-card.tall { grid-row: span 1; }
  .hp-guide-layout { grid-template-columns: 1fr; }
  .hp-guide-toc { position: static; }
  .hp-guide-toc nav { flex-direction: row; flex-wrap: wrap; }
  .hp-faq-grid { grid-template-columns: 1fr; }
  .hp-cta-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
}

@media (max-width: 768px) {
  .hp-hero { padding-top: 32px; }
  .hp-dock-wrap { top: 60px; }
  .hp-dock { max-width: calc(100% - 24px); }
  .hp-section, .hp-scroll-gallery { padding: 48px 0; }
  .hp-module-panel { padding: 24px 18px; }
  .hp-bento { grid-template-columns: 1fr; }
  .hp-scroll-item { flex: 0 0 160px; }
  .hp-scroll-item.wide { flex: 0 0 200px; }
  .hp-timeline { padding-left: 36px; }
  .hp-article h3 { font-size: 1.15rem; }
}

