/* 主推产品 · 晓雨-婷好AI */
.featured-product {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(62, 146, 204, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(232, 244, 252, 0.55) 0%, var(--bg-primary) 45%, var(--bg-primary) 100%);
}

.featured-product::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 36, 99, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 36, 99, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
  pointer-events: none;
}

.fp-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
  position: relative;
}

.fp-flagship-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(135deg, #0A2463 0%, #3E92CC 55%, #6366F1 100%);
  box-shadow: 0 8px 28px rgba(62, 146, 204, 0.35);
}

.fp-flagship-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.25);
  animation: fpPulse 2s ease-in-out infinite;
}

@keyframes fpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.fp-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #0A2463 0%, #2563eb 45%, #6366F1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fp-subtitle {
  font-size: clamp(1.0625rem, 2.2vw, 1.375rem);
  color: var(--text-secondary);
  margin: 0 0 16px;
  line-height: 1.6;
}

.fp-subtitle strong {
  color: var(--text-primary);
  font-weight: 700;
}

.fp-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.fp-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 56px;
}

.fp-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: 0 8px 28px rgba(10, 36, 99, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fp-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10, 36, 99, 0.1);
}

.fp-highlight--accent {
  background: linear-gradient(145deg, rgba(10, 36, 99, 0.92) 0%, rgba(37, 99, 235, 0.88) 100%);
  border-color: rgba(62, 146, 204, 0.35);
  box-shadow: 0 12px 36px rgba(10, 36, 99, 0.2);
}

.fp-highlight--accent:hover {
  border-color: rgba(147, 197, 253, 0.4);
}

.fp-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  background: rgba(62, 146, 204, 0.12);
}

.fp-highlight--accent .fp-highlight-icon {
  background: rgba(255, 255, 255, 0.12);
}

.fp-highlight strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.fp-highlight--accent strong {
  color: #fff;
}

.fp-highlight p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.fp-highlight--accent p {
  color: rgba(255, 255, 255, 0.82);
}

.fp-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.fp-content {
  position: relative;
}

.fp-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin: 0 0 28px;
}

.fp-intro em {
  font-style: normal;
  color: var(--accent-blue);
  font-weight: 600;
}

.fp-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.fp-feature {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(10, 36, 99, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fp-feature:hover {
  transform: translateY(-2px);
  border-color: rgba(62, 146, 204, 0.25);
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.08);
}

.fp-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.125rem;
  background: linear-gradient(135deg, rgba(62, 146, 204, 0.15) 0%, rgba(99, 102, 241, 0.12) 100%);
}

.fp-feature b {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.fp-feature small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.fp-pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin-bottom: 28px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(10, 36, 99, 0.04);
  border: 1px dashed rgba(62, 146, 204, 0.25);
}

.fp-pipeline-label {
  width: 100%;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.fp-pipeline span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10, 36, 99, 0.08);
}

.fp-pipeline i {
  font-style: normal;
  color: var(--accent-blue);
  opacity: 0.7;
  font-size: 0.75rem;
}

.fp-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.fp-platform {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0A2463;
  background: rgba(62, 146, 204, 0.12);
  border: 1px solid rgba(62, 146, 204, 0.18);
}

.fp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fp-visual {
  position: relative;
}

.fp-screenshot-wrap {
  position: relative;
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 244, 252, 0.85) 100%);
  border: 1px solid rgba(62, 146, 204, 0.2);
  box-shadow:
    0 24px 64px rgba(10, 36, 99, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.fp-screenshot-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
  font-family: inherit;
}

.fp-screenshot-btn img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.35s ease;
}

.fp-screenshot-btn:hover img {
  transform: scale(1.015);
}

.fp-screenshot-hint {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fp-float-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: 0 12px 36px rgba(10, 36, 99, 0.12);
  backdrop-filter: blur(10px);
  animation: fpFloat 4s ease-in-out infinite;
}

.fp-float-card small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.fp-float-card strong {
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.fp-float-card--top {
  top: -12px;
  left: -16px;
  animation-delay: 0s;
}

.fp-float-card--bottom {
  bottom: 24px;
  right: -12px;
  animation-delay: 1.2s;
}

@keyframes fpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.fp-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fp-details--secondary {
  margin-top: 20px;
}

.fp-details--two-col {
  grid-template-columns: 1fr 1fr;
}

.fp-detail-card--combined {
  display: flex;
  flex-direction: column;
}

.fp-combined-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  flex: 1;
}

.fp-combined-section h5 {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  opacity: 0.85;
}

.fp-combined-section ul {
  margin: 0;
  padding-left: 16px;
}

.fp-combined-section li {
  font-size: 0.8125rem;
  line-height: 1.7;
}

.fp-dhlive-bottom-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(124, 58, 237, 0.12);
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .fp-details--two-col {
    grid-template-columns: 1fr;
  }
  .fp-combined-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.fp-detail-card--emphasis {
  border-color: rgba(62, 146, 204, 0.18);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.75) 0%, rgba(232, 244, 252, 0.55) 100%);
}

.fp-detail-card--emphasis:hover {
  border-color: rgba(62, 146, 204, 0.32);
  box-shadow: 0 20px 48px rgba(62, 146, 204, 0.1);
}

.fp-detail-card--emphasis h4 {
  color: #0A2463;
}

html[data-theme="dark"] .fp-detail-card--emphasis {
  background: linear-gradient(160deg, rgba(62, 146, 204, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(62, 146, 204, 0.22);
}

html[data-theme="dark"] .fp-detail-card--emphasis h4 {
  color: #93c5fd;
}

.fp-detail-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(10, 36, 99, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.fp-detail-card:hover {
  border-color: rgba(62, 146, 204, 0.22);
  box-shadow: 0 16px 40px rgba(10, 36, 99, 0.07);
}

.fp-detail-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fp-detail-card p,
.fp-detail-card ul {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.fp-detail-card ul {
  padding-left: 18px;
}

.fp-detail-card li + li {
  margin-top: 6px;
}

.fp-detail-card .fp-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.fp-detail-card .fp-spec-table th,
.fp-detail-card .fp-spec-table td {
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(10, 36, 99, 0.06);
}

.fp-detail-card .fp-spec-table th {
  color: var(--text-muted);
  font-weight: 600;
}

.fp-detail-card .fp-spec-table td {
  color: var(--text-secondary);
}

/* 导航主推高亮 */
.nav-link--featured {
  position: relative;
  color: var(--accent-blue) !important;
  font-weight: 600;
}

.nav-link--featured::after {
  content: 'HOT';
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  vertical-align: middle;
}

html[data-theme="dark"] .featured-product {
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(62, 146, 204, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    var(--bg-primary);
}

html[data-theme="dark"] .fp-feature,
html[data-theme="dark"] .fp-detail-card,
html[data-theme="dark"] .fp-screenshot-wrap,
html[data-theme="dark"] .fp-float-card,
html[data-theme="dark"] .fp-highlight:not(.fp-highlight--accent) {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .fp-highlight--accent {
  background: linear-gradient(145deg, rgba(10, 36, 99, 0.95) 0%, rgba(37, 99, 235, 0.75) 100%);
  border-color: rgba(62, 146, 204, 0.3);
}

html[data-theme="dark"] .fp-pipeline span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .fp-platform {
  color: #93c5fd;
  background: rgba(62, 146, 204, 0.15);
  border-color: rgba(62, 146, 204, 0.22);
}

@media (max-width: 1024px) {
  .fp-highlights {
    grid-template-columns: 1fr;
  }

  .fp-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
  }

  .fp-visual {
    order: -1;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .featured-product--rose .fp-visual--rose-coops {
    order: 0;
    max-width: none;
  }

  .fp-float-card--top {
    left: 8px;
  }

  .fp-float-card--bottom {
    right: 8px;
  }
}

@media (max-width: 768px) {
  .featured-product {
    padding: 72px 0 88px;
  }

  .featured-product--rose .fp-showcase--rose {
    gap: 28px;
  }

  .fp-visual--rose-coops {
    gap: 20px;
  }

  .fp-rose-card-copy.is-collapsed {
    max-height: 6.5rem;
  }

  .fp-features {
    grid-template-columns: 1fr;
  }

  .fp-details {
    grid-template-columns: 1fr;
  }

  .fp-float-card {
    display: none;
  }

  .nav-link--featured::after {
    display: none;
  }

  .nav-link--rose::after {
    display: none;
  }
}

/* ========== 主推产品 · 玫瑰克隆 ========== */
.featured-product--rose {
  background:
    radial-gradient(ellipse 65% 50% at 20% 15%, rgba(251, 113, 133, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 80%, rgba(225, 29, 72, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 241, 242, 0.6) 0%, var(--bg-primary) 42%, var(--bg-primary) 100%);
}

.featured-product--rose::before {
  background-image:
    linear-gradient(rgba(225, 29, 72, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 72, 0.04) 1px, transparent 1px);
}

.fp-flagship-badge--rose {
  background: linear-gradient(135deg, #be123c 0%, #fb7185 50%, #f43f5e 100%);
  box-shadow: 0 8px 28px rgba(225, 29, 72, 0.35);
}

.fp-title--rose {
  background: linear-gradient(135deg, #881337 0%, #e11d48 45%, #fb7185 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fp-highlight--rose-accent {
  background: linear-gradient(145deg, rgba(136, 19, 55, 0.94) 0%, rgba(225, 29, 72, 0.88) 100%);
  border-color: rgba(251, 113, 133, 0.35);
  box-shadow: 0 12px 36px rgba(136, 19, 55, 0.22);
}

.fp-highlight--rose-accent:hover {
  border-color: rgba(254, 205, 211, 0.45);
}

.fp-highlight--rose-accent strong {
  color: #fff;
}

.fp-highlight--rose-accent p {
  color: rgba(255, 255, 255, 0.85);
}

.fp-intro-em {
  font-style: normal;
  color: #e11d48;
  font-weight: 700;
}

.fp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.fp-stats-row > div {
  text-align: center;
  padding: 16px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(225, 29, 72, 0.1);
}

.fp-stats-row strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  color: #be123c;
  margin-bottom: 4px;
}

.fp-stats-row span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fp-stats-row--rose > div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 241, 242, 0.5) 100%);
}

.fp-pipeline--rose {
  background: rgba(225, 29, 72, 0.04);
  border-color: rgba(251, 113, 133, 0.3);
}

.fp-pipeline--rose .fp-pipeline-label {
  color: #e11d48;
}

.fp-pipeline--rose .fp-pipeline i {
  color: #f43f5e;
}

.fp-platforms--rose .fp-platform {
  color: #be123c;
  background: rgba(251, 113, 133, 0.12);
  border-color: rgba(251, 113, 133, 0.22);
}

.featured-product--rose .fp-feature-icon {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.2) 0%, rgba(244, 63, 94, 0.15) 100%);
}

.fp-screenshot-wrap--rose {
  border-color: rgba(251, 113, 133, 0.25);
  box-shadow: 0 20px 50px rgba(136, 19, 55, 0.15);
}

.fp-float-card--rose-top,
.fp-float-card--rose-bottom {
  border-color: rgba(251, 113, 133, 0.25);
  background: rgba(255, 255, 255, 0.92);
}

.fp-float-card--rose-top {
  top: -12px;
  left: -8px;
}

.fp-float-card--rose-top strong {
  color: #be123c;
}

.fp-float-card--rose-bottom {
  bottom: 72px;
  right: -8px;
}

.fp-float-card--rose-bottom strong {
  color: #e11d48;
}

/* 玫瑰克隆 · 内联演示轮播 */
.fp-inline-video {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(251, 113, 133, 0.2);
  background: linear-gradient(160deg, rgba(255, 241, 242, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%);
  overflow: hidden;
}

.fp-inline-video-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(251, 113, 133, 0.12);
}

.fp-inline-video-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #be123c;
}

.fp-inline-video-status {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fp-inline-video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #1a0a14;
  overflow: hidden;
}

.fp-inline-video-el,
.rose-video-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.fp-inline-video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.fp-inline-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(6, 11, 24, 0.28);
  cursor: pointer;
  transition: background 0.25s ease;
}

.fp-inline-video-play:hover {
  background: rgba(6, 11, 24, 0.42);
}

.fp-inline-video-play span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb7185, #e11d48);
  box-shadow: 0 8px 28px rgba(225, 29, 72, 0.45);
  position: relative;
}

.fp-inline-video-play span::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 15px;
  border-style: solid;
  border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent #fff;
}

.fp-inline-video-caption {
  margin: 0;
  padding: 10px 14px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* 玫瑰克隆 · 代理 / 贴牌介绍卡片 */
.featured-product--rose .fp-showcase--rose {
  align-items: stretch;
}

.fp-visual--rose-coops {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}

.fp-rose-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 20px 20px 16px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 241, 242, 0.72) 100%);
  border: 1px solid rgba(251, 113, 133, 0.18);
  box-shadow:
    0 24px 56px rgba(136, 19, 55, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.fp-visual--rose-coops.has-expanded .fp-rose-card {
  flex: none;
}

.fp-rose-card.is-expanded {
  flex: none;
}

.fp-rose-card-body {
  display: flex;
  flex-direction: column;
}

.fp-rose-card-head {
  flex-shrink: 0;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(251, 113, 133, 0.12);
}

.fp-rose-card-title {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #9f1239;
}

.fp-rose-card-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.fp-rose-card .fp-screenshot-wrap {
  margin-bottom: 14px;
}

.fp-rose-card-copy {
  position: relative;
}

.fp-rose-card-copy-inner {
  display: grid;
  gap: 10px;
}

.fp-rose-card-copy-inner p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.72;
  color: var(--text-secondary);
  text-align: justify;
}

.fp-rose-card-subhead {
  margin: 4px 0 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #9f1239;
  letter-spacing: 0.02em;
}

.fp-rose-card-warn {
  margin: 0;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #9f1239;
  background: rgba(254, 226, 226, 0.65);
  border: 1px solid rgba(251, 113, 133, 0.22);
}

.fp-rose-card-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 6px;
}

.fp-rose-card-list li {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.fp-rose-card-copy.is-collapsed {
  max-height: 7.5rem;
  overflow: hidden;
}

/* 桌面端双栏时，代理/贴牌卡片等高对齐 */
@media (min-width: 1025px) {
  .fp-visual--rose-coops:not(.has-expanded) {
    min-height: 100%;
  }

  .fp-visual--rose-coops:not(.has-expanded) .fp-rose-card {
    flex: 1 1 0;
    min-height: 0;
  }

  .fp-visual--rose-coops:not(.has-expanded) .fp-rose-card-body {
    flex: 1;
    min-height: 0;
  }

  .fp-visual--rose-coops:not(.has-expanded) .fp-rose-card-copy.is-collapsed {
    flex: 1;
    min-height: 0;
    max-height: none;
  }
}

.fp-rose-card-copy.is-collapsed .fp-rose-card-fade {
  opacity: 1;
}

.fp-rose-card-copy.is-expanded {
  max-height: none;
  overflow: visible;
  flex: none;
}

.fp-rose-card-copy.is-expanded .fp-rose-card-fade {
  opacity: 0;
  pointer-events: none;
}

.fp-rose-card-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 241, 242, 0.92) 72%, rgba(255, 241, 242, 1) 100%);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.fp-rose-card-expand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(225, 29, 72, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #be123c;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fp-rose-card-expand:hover {
  background: rgba(255, 241, 242, 0.95);
  border-color: rgba(225, 29, 72, 0.32);
  color: #9f1239;
}

.fp-rose-card-expand::after {
  content: '↓';
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.fp-rose-card-expand[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.fp-rose-card-gallery {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(251, 113, 133, 0.12);
}

.fp-rose-card-gallery-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #be123c;
}

.fp-rose-card-gallery-grid {
  display: grid;
  gap: 12px;
}

.fp-rose-card-gallery-item {
  border-radius: 14px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(251, 113, 133, 0.16);
  box-shadow: 0 12px 32px rgba(136, 19, 55, 0.08);
}

.fp-rose-card-gallery .fp-screenshot-hint {
  margin-top: 10px;
}

html[data-theme="dark"] .fp-rose-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(136, 19, 55, 0.14) 100%);
  border-color: rgba(251, 113, 133, 0.22);
}

html[data-theme="dark"] .fp-rose-card-fade {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(30, 15, 22, 0.92) 72%, rgba(30, 15, 22, 1) 100%);
}

html[data-theme="dark"] .fp-rose-card-expand {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(251, 113, 133, 0.24);
}

html[data-theme="dark"] .fp-rose-card-gallery-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(251, 113, 133, 0.18);
}

html[data-theme="dark"] .fp-rose-card-warn {
  background: rgba(136, 19, 55, 0.22);
  border-color: rgba(251, 113, 133, 0.24);
}

.fp-detail-card--rose-emphasis {
  border-color: rgba(251, 113, 133, 0.2);
  background: linear-gradient(160deg, rgba(255, 241, 242, 0.65) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.fp-detail-card--rose-emphasis h4 {
  color: #be123c;
}

.btn-rose {
  background: linear-gradient(135deg, #e11d48 0%, #fb7185 100%) !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.3) !important;
}

.btn-rose:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.btn-rose-outline {
  border-color: rgba(225, 29, 72, 0.35) !important;
  color: #be123c !important;
}

.btn-rose-outline:hover {
  background: rgba(255, 241, 242, 0.8) !important;
  border-color: #e11d48 !important;
}

.nav-link--rose {
  color: #e11d48 !important;
  font-weight: 600;
}

.nav-link--rose::after {
  content: 'NEW';
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #fb7185, #e11d48);
  vertical-align: middle;
}

/* 玫瑰克隆演示弹层 */
.rose-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rose-demo-modal.open {
  opacity: 1;
  visibility: visible;
}

.rose-demo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 24, 0.72);
  backdrop-filter: blur(8px);
}

.rose-demo-dialog {
  position: relative;
  width: 100%;
  max-width: min(960px, 96vw);
  max-height: min(92vh, 860px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #fff 0%, #fff1f2 100%);
  border: 1px solid rgba(251, 113, 133, 0.2);
  box-shadow: 0 24px 64px rgba(136, 19, 55, 0.25);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}

.rose-demo-layout {
  display: grid;
  grid-template-columns: minmax(168px, 220px) minmax(0, 1fr);
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.rose-demo-toc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: min(52vh, 480px);
  overflow-y: auto;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(251, 113, 133, 0.15);
  scrollbar-width: thin;
}

.rose-demo-toc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s ease;
}

.rose-demo-toc-item:hover {
  background: rgba(251, 113, 133, 0.1);
}

.rose-demo-toc-item.active {
  background: rgba(225, 29, 72, 0.12);
}

.rose-demo-toc-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #be123c;
  background: rgba(251, 113, 133, 0.15);
}

.rose-demo-toc-item.active .rose-demo-toc-num {
  color: #fff;
  background: #e11d48;
}

.rose-demo-toc-text {
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.rose-demo-toc-item.active .rose-demo-toc-text {
  color: #881337;
  font-weight: 600;
}

.rose-demo-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}

.rose-demo-slides {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.rose-demo-progress {
  margin: -8px 0 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.rose-demo-jump {
  flex: 1;
  min-width: 0;
  max-width: 220px;
}

.rose-demo-jump select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(251, 113, 133, 0.25);
  background: #fff;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.8125rem;
}

.rose-demo-slide-media {
  margin: 0 0 14px;
  border: 1px solid rgba(251, 113, 133, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
}

.rose-demo-slide-media--video {
  aspect-ratio: 16 / 10;
  background: #000;
}

.rose-demo-slide-media--image {
  background: #fff;
}

.rose-demo-slide-media--placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, #1a0a14 0%, #2d1020 100%);
}

.rose-demo-ph-icon {
  font-size: 2rem;
}

.rose-demo-ph-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fda4af;
  padding: 0 16px;
  text-align: center;
}

.rose-demo-slide-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.rose-demo-slide-img-btn {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: #fff;
  cursor: zoom-in;
  position: relative;
}

.rose-demo-slide-img-btn img {
  display: block;
  width: 100%;
  max-height: min(42vh, 360px);
  object-fit: contain;
  background: #fff;
}

.rose-demo-zoom-hint {
  display: block;
  padding: 8px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 241, 242, 0.9);
  border-top: 1px solid rgba(251, 113, 133, 0.12);
}

.rose-demo-slide-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.rose-demo-slide--text-only .rose-demo-slide-desc {
  font-size: 1rem;
}

.rose-demo-slide-body {
  margin-top: 0;
  max-height: min(38vh, 340px);
  overflow-y: auto;
  display: grid;
  gap: 10px;
  padding-right: 4px;
}

.rose-demo-slide-body .rose-demo-slide-desc {
  margin: 0;
}

.rose-demo-feature-list {
  margin: 14px 0 0;
  padding: 0 0 0 1.25rem;
  display: grid;
  gap: 6px;
  max-height: min(42vh, 360px);
  overflow-y: auto;
}

.rose-demo-feature-list li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.rose-demo-slide-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #9f1239;
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.2);
}

/* 产品总览 · 在线体验（小程序 + H5） */
.rose-demo-exp {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(225, 29, 72, 0.22);
}

.rose-demo-exp-headline {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #be123c;
}

.rose-demo-exp-lead {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.rose-demo-exp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rose-demo-exp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fff7f9 100%);
  border: 1px solid rgba(251, 113, 133, 0.18);
  box-shadow: 0 8px 24px rgba(190, 18, 60, 0.06);
}

.rose-demo-exp-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.rose-demo-exp-badge--mini {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.rose-demo-exp-badge--h5 {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.rose-demo-exp-qr {
  display: block;
  width: min(168px, 100%);
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  user-select: none;
  -webkit-user-drag: none;
  background: #fff;
  padding: 6px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

.rose-demo-exp-qr--h5 {
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.rose-demo-exp-or {
  margin: 2px 0 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1;
}

.rose-demo-exp-card--h5 .rose-demo-exp-desc {
  margin-top: 10px;
}

.rose-demo-exp-title {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #881337;
}

.rose-demo-exp-desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.65;
  color: #64748b;
}

.rose-demo-exp-desc strong {
  color: #15803d;
  font-weight: 600;
}

.rose-demo-exp-h5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  margin: 0;
  padding: 11px 20px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.rose-demo-exp-h5-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.34);
}

.rose-demo-exp-note {
  margin: 8px 0 0;
  font-size: 0.6875rem;
  line-height: 1.55;
  color: #94a3b8;
}

.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;
}

.rose-demo-modal.open .rose-demo-dialog {
  transform: translateY(0) scale(1);
}

.rose-demo-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.08);
  color: #be123c;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}

.rose-demo-dialog h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #881337;
  margin: 0 0 20px;
  padding-right: 32px;
}

.rose-demo-slide {
  display: none;
}

.rose-demo-slide.active {
  display: block;
  animation: roseSlideIn 0.35s ease;
}

@keyframes roseSlideIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.rose-demo-slide h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #be123c;
  margin: 0 0 10px;
}

.rose-demo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 113, 133, 0.15);
}

.rose-demo-foot {
  margin-top: 16px;
  text-align: center;
}

.rose-demo-foot .btn {
  width: 100%;
  justify-content: center;
}

/* 玫瑰克隆 · 全屏演示 */
.rose-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rose-video-modal.open {
  opacity: 1;
  visibility: visible;
}

.rose-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 24, 0.88);
  backdrop-filter: blur(10px);
}

.rose-video-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 24px 24px 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #fff 0%, #fff1f2 100%);
  border: 1px solid rgba(251, 113, 133, 0.2);
  box-shadow: 0 24px 64px rgba(136, 19, 55, 0.3);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}

.rose-video-modal.open .rose-video-dialog {
  transform: translateY(0) scale(1);
}

.rose-video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.08);
  color: #be123c;
  font-size: 1.375rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

.rose-video-dialog h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #881337;
  margin: 0 0 16px;
  padding-right: 40px;
}

.rose-video-player {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(251, 113, 133, 0.15);
}

.rose-video-el {
  border-radius: 14px;
}

.rose-video-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.rose-video-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rose-video-dot.active {
  background: #e11d48;
  transform: scale(1.2);
}

.rose-video-tip {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

html[data-theme="dark"] .featured-product--rose {
  background:
    radial-gradient(ellipse 65% 50% at 20% 15%, rgba(251, 113, 133, 0.1) 0%, transparent 55%),
    var(--bg-primary);
}

html[data-theme="dark"] .fp-stats-row--rose > div,
html[data-theme="dark"] .fp-detail-card--rose-emphasis,
html[data-theme="dark"] .fp-inline-video {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 113, 133, 0.15);
}

html[data-theme="dark"] .rose-video-dialog {
  background: linear-gradient(165deg, #1e1e2e 0%, #2a1520 100%);
  border-color: rgba(251, 113, 133, 0.2);
}

html[data-theme="dark"] .rose-video-dialog h3 {
  color: #fda4af;
}

html[data-theme="dark"] .rose-demo-toc {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 113, 133, 0.15);
}

html[data-theme="dark"] .rose-demo-jump select {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

html[data-theme="dark"] .rose-demo-dialog {
  background: linear-gradient(165deg, #1e1e2e 0%, #2a1520 100%);
  border-color: rgba(251, 113, 133, 0.2);
}

html[data-theme="dark"] .rose-demo-dialog h3 {
  color: #fda4af;
}

html[data-theme="dark"] .rose-demo-exp-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 113, 133, 0.15);
}

html[data-theme="dark"] .rose-demo-exp-headline {
  color: #fda4af;
}

html[data-theme="dark"] .rose-demo-exp-title {
  color: #fecdd3;
}

html[data-theme="dark"] .rose-demo-exp-desc {
  color: #94a3b8;
}

html[data-theme="dark"] .rose-demo-exp-desc strong {
  color: #4ade80;
}

@media (max-width: 768px) {
  .fp-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .fp-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fp-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .fp-pipeline {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8125rem;
  }

  .fp-pipeline i {
    display: none;
  }

  .fp-inline-video-play span {
    width: 44px;
    height: 44px;
  }

  .fp-inline-video-play span::after {
    left: 17px;
    top: 12px;
    border-width: 10px 0 10px 15px;
  }

  .rose-demo-modal,
  .rose-video-modal {
    padding: 0;
    align-items: stretch;
  }

  .rose-demo-dialog,
  .rose-video-dialog {
    max-width: none;
    max-height: none;
    min-height: 100dvh;
    border-radius: 0;
    padding: 16px 12px 20px;
  }

  .rose-demo-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rose-demo-toc {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .rose-demo-toc-item {
    flex: 0 0 auto;
    max-width: 140px;
    padding: 8px;
  }

  .rose-demo-toc-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .rose-demo-jump {
    display: none;
  }

  .rose-demo-slide-img-btn img {
    max-height: 36vh;
  }

  .rose-demo-close,
  .rose-video-close {
    top: 12px;
    right: 12px;
  }

  .rose-demo-nav {
    flex-wrap: wrap;
  }

  .rose-demo-nav .btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .rose-demo-exp-grid {
    grid-template-columns: 1fr;
  }

  .rose-demo-exp-qr {
    width: min(200px, 72vw);
  }
}

@media (max-width: 480px) {
  .fp-stats-row--rose > div strong {
    font-size: 1.375rem;
  }

  .fp-platforms--rose {
    gap: 8px;
  }

  .fp-platforms--rose .fp-platform {
    font-size: 0.6875rem;
    padding: 6px 10px;
  }
}

/* ========== 主推产品 · AI电商宝 ========== */
.featured-product--dsb {
  background:
    radial-gradient(ellipse 70% 55% at 18% 18%, rgba(251, 146, 60, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 78%, rgba(234, 88, 12, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(255, 247, 237, 0.72) 0%, var(--bg-primary) 42%, var(--bg-primary) 100%);
}

.featured-product--dsb::before {
  background-image:
    linear-gradient(rgba(234, 88, 12, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 88, 12, 0.035) 1px, transparent 1px);
}

.fp-flagship-badge--dsb {
  background: linear-gradient(135deg, #c2410c 0%, #f97316 50%, #fb923c 100%);
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.35);
}

.fp-title--dsb {
  background: linear-gradient(135deg, #9a3412 0%, #ea580c 45%, #fb923c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fp-highlight--dsb-accent {
  background: linear-gradient(145deg, rgba(154, 52, 18, 0.94) 0%, rgba(234, 88, 12, 0.9) 100%);
  border-color: rgba(251, 146, 60, 0.35);
  box-shadow: 0 12px 36px rgba(154, 52, 18, 0.22);
}

.fp-highlight--dsb-accent:hover {
  border-color: rgba(254, 215, 170, 0.45);
}

.fp-highlight--dsb-accent strong {
  color: #fff;
}

.fp-highlight--dsb-accent p {
  color: rgba(255, 255, 255, 0.88);
}

.fp-stats-row--dsb > div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 247, 237, 0.55) 100%);
  border-color: rgba(251, 146, 60, 0.18);
}

.fp-stats-row--dsb strong {
  color: #c2410c;
}

.fp-dsb-deploy-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: 1px solid rgba(251, 146, 60, 0.35);
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.08);
}

.fp-dsb-deploy-notice-icon {
  flex-shrink: 0;
  font-size: 1.375rem;
  line-height: 1;
}

.fp-dsb-deploy-notice strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #c2410c;
}

.fp-dsb-deploy-notice p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.72;
  color: var(--text-secondary);
}

.fp-dsb-deploy-notice p strong {
  display: inline;
  font-size: inherit;
  color: #ea580c;
}

.featured-product--dsb .fp-feature-icon {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.22) 0%, rgba(249, 115, 22, 0.14) 100%);
}

.fp-pipeline--dsb {
  background: rgba(234, 88, 12, 0.05);
  border-color: rgba(251, 146, 60, 0.32);
}

.fp-pipeline--dsb .fp-pipeline-label {
  color: #ea580c;
}

.fp-pipeline--dsb .fp-pipeline i {
  color: #f97316;
}

.fp-platforms--dsb .fp-platform {
  color: #c2410c;
  background: rgba(251, 146, 60, 0.12);
  border-color: rgba(251, 146, 60, 0.24);
}

.featured-product--dsb .fp-showcase--dsb {
  align-items: stretch;
}

.fp-visual--dsb {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
}

.fp-dsb-hero-block {
  position: relative;
}

.fp-screenshot-wrap--dsb {
  border-color: rgba(251, 146, 60, 0.28);
  box-shadow: 0 20px 50px rgba(154, 52, 18, 0.14);
}

.fp-screenshot-wrap--dsb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.fp-float-card--dsb-top,
.fp-float-card--dsb-bottom {
  border-color: rgba(251, 146, 60, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.12);
}

.fp-float-card--dsb-top {
  top: -12px;
  left: -8px;
}

.fp-float-card--dsb-top strong {
  color: #c2410c;
}

.fp-float-card--dsb-bottom {
  bottom: 48px;
  right: -8px;
  z-index: 2;
}

.fp-float-card--dsb-bottom strong {
  color: #ea580c;
}

.fp-dsb-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.fp-dsb-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(251, 146, 60, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fp-dsb-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.12);
}

.fp-dsb-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  display: block;
}

.fp-dsb-thumb span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #c2410c;
  line-height: 1.2;
}

.fp-detail-card--dsb-emphasis {
  border-color: rgba(251, 146, 60, 0.22);
  background: linear-gradient(160deg, rgba(255, 247, 237, 0.72) 0%, rgba(255, 255, 255, 0.55) 100%);
}

.fp-detail-card--dsb-emphasis h4 {
  color: #c2410c;
}

.fp-dsb-spec-note {
  margin: 10px 0 0;
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.btn-dsb {
  background: linear-gradient(135deg, #ea580c 0%, #fb923c 100%) !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.32) !important;
}

.btn-dsb:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.btn-dsb-outline {
  border-color: rgba(234, 88, 12, 0.35) !important;
  color: #c2410c !important;
}

.btn-dsb-outline:hover {
  background: rgba(255, 247, 237, 0.85) !important;
  border-color: #ea580c !important;
}

.nav-link--dsb {
  color: #ea580c !important;
  font-weight: 600;
}

.nav-link--dsb::after {
  content: '2026';
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  vertical-align: middle;
}

html[data-theme="dark"] .featured-product--dsb {
  background:
    radial-gradient(ellipse 65% 50% at 20% 15%, rgba(251, 146, 60, 0.1) 0%, transparent 55%),
    var(--bg-primary);
}

html[data-theme="dark"] .fp-stats-row--dsb > div,
html[data-theme="dark"] .fp-detail-card--dsb-emphasis,
html[data-theme="dark"] .fp-dsb-deploy-notice,
html[data-theme="dark"] .fp-dsb-thumb {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 146, 60, 0.18);
}

html[data-theme="dark"] .fp-dsb-deploy-notice strong,
html[data-theme="dark"] .fp-detail-card--dsb-emphasis h4,
html[data-theme="dark"] .fp-dsb-thumb span {
  color: #fdba74;
}

html[data-theme="dark"] .fp-float-card--dsb-top,
html[data-theme="dark"] .fp-float-card--dsb-bottom {
  background: rgba(30, 20, 12, 0.92);
  border-color: rgba(251, 146, 60, 0.22);
}

@media (max-width: 768px) {
  .nav-link--dsb::after {
    display: none;
  }

  .fp-dsb-thumb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fp-float-card--dsb-bottom {
    bottom: 36px;
    right: 4px;
  }
}

@media (max-width: 480px) {
  .fp-dsb-thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fp-stats-row--dsb > div strong {
    font-size: 1.25rem;
  }
}

/* ========== 主推产品 · 数字人直播系统 ========== */
.featured-product--dhlive {
  background:
    radial-gradient(ellipse 70% 55% at 12% 15%, rgba(124, 58, 237, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 90% 80%, rgba(6, 182, 212, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, rgba(245, 243, 255, 0.75) 0%, var(--bg-primary) 42%, var(--bg-primary) 100%);
}

.featured-product--dhlive::before {
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.035) 1px, transparent 1px);
}

.fp-flagship-badge--dhlive {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 45%, #06b6d4 100%);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
}

.fp-title--dhlive {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 42%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fp-highlight--dhlive-accent {
  background: linear-gradient(145deg, rgba(76, 29, 149, 0.94) 0%, rgba(124, 58, 237, 0.88) 55%, rgba(6, 182, 212, 0.75) 100%);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 12px 36px rgba(76, 29, 149, 0.22);
}

.fp-highlight--dhlive-accent:hover {
  border-color: rgba(196, 181, 253, 0.45);
}

.fp-highlight--dhlive-accent strong {
  color: #fff;
}

.fp-highlight--dhlive-accent p {
  color: rgba(255, 255, 255, 0.88);
}

.fp-stats-row--dhlive > div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 243, 255, 0.55) 100%);
  border-color: rgba(167, 139, 250, 0.2);
}

.fp-stats-row--dhlive strong {
  color: #6d28d9;
}

.fp-dhlive-deploy-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 243, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.08);
}

.fp-dhlive-deploy-notice-icon {
  flex-shrink: 0;
  font-size: 1.375rem;
  line-height: 1;
}

.fp-dhlive-deploy-notice strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #5b21b6;
}

.fp-dhlive-deploy-notice p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.72;
  color: var(--text-secondary);
}

.fp-dhlive-deploy-notice p strong {
  display: inline;
  font-size: inherit;
  color: #7c3aed;
}

.featured-product--dhlive .fp-feature-icon {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.22) 0%, rgba(6, 182, 212, 0.14) 100%);
}

.fp-pipeline--dhlive {
  background: rgba(124, 58, 237, 0.05);
  border-color: rgba(167, 139, 250, 0.32);
}

.fp-pipeline--dhlive .fp-pipeline-label {
  color: #7c3aed;
}

.fp-pipeline--dhlive .fp-pipeline i {
  color: #06b6d4;
}

.fp-platforms--dhlive .fp-platform {
  color: #5b21b6;
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.24);
}

.featured-product--dhlive .fp-showcase--dhlive {
  align-items: stretch;
}

.fp-visual--dhlive {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
  min-height: 100%;
}

.fp-dhlive-hero-block {
  position: relative;
  flex: 0 0 auto;
}

.fp-dhlive-ui-block {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
}

.fp-screenshot-wrap--dhlive-ui {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.fp-screenshot-wrap--dhlive-ui img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.fp-screenshot-wrap--dhlive {
  border-color: rgba(167, 139, 250, 0.28);
  box-shadow: 0 20px 50px rgba(76, 29, 149, 0.14);
}

.fp-screenshot-wrap--dhlive img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}

.fp-float-card--dhlive-top,
.fp-float-card--dhlive-mid,
.fp-float-card--dhlive-bottom {
  border-color: rgba(167, 139, 250, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.12);
}

.fp-float-card--dhlive-top {
  top: -12px;
  left: -8px;
}

.fp-float-card--dhlive-top strong {
  color: #5b21b6;
}

.fp-float-card--dhlive-mid {
  bottom: 24px;
  left: -8px;
  z-index: 2;
  animation-delay: 0.6s;
}

.fp-float-card--dhlive-mid strong {
  color: #7c3aed;
}

.fp-float-card--dhlive-bottom {
  align-self: flex-end;
  margin-top: -4px;
  position: relative;
  bottom: auto;
  right: auto;
}

.fp-float-card--dhlive-bottom strong {
  color: #0891b2;
}

.fp-dhlive-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.fp-dhlive-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fp-dhlive-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
}

.fp-dhlive-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.fp-dhlive-thumb span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6d28d9;
}

.fp-detail-card--dhlive-emphasis {
  border-color: rgba(167, 139, 250, 0.28);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 243, 255, 0.55) 100%);
}

.fp-detail-card--dhlive-emphasis h4 {
  color: #5b21b6;
}

.fp-dhlive-spec-note {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.fp-dhlive-doc-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-dhlive {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 55%, #0891b2 100%) !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3) !important;
}

.btn-dhlive:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.btn-dhlive-outline {
  border-color: rgba(124, 58, 237, 0.35) !important;
  color: #6d28d9 !important;
}

.btn-dhlive-outline:hover {
  background: rgba(245, 243, 255, 0.8) !important;
  border-color: #7c3aed !important;
}

.nav-link--dhlive {
  color: #7c3aed !important;
  font-weight: 600;
}

.nav-link--dhlive::after {
  content: 'LIVE';
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  vertical-align: middle;
}

html[data-theme="dark"] .featured-product--dhlive {
  background:
    radial-gradient(ellipse 65% 50% at 18% 12%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 82%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
    var(--bg-primary);
}

html[data-theme="dark"] .fp-stats-row--dhlive > div,
html[data-theme="dark"] .fp-detail-card--dhlive-emphasis,
html[data-theme="dark"] .fp-dhlive-deploy-notice,
html[data-theme="dark"] .fp-dhlive-thumb {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(167, 139, 250, 0.18);
}

html[data-theme="dark"] .fp-dhlive-deploy-notice strong,
html[data-theme="dark"] .fp-detail-card--dhlive-emphasis h4,
html[data-theme="dark"] .fp-dhlive-thumb span {
  color: #c4b5fd;
}

html[data-theme="dark"] .fp-float-card--dhlive-top,
html[data-theme="dark"] .fp-float-card--dhlive-mid,
html[data-theme="dark"] .fp-float-card--dhlive-bottom {
  background: rgba(20, 12, 40, 0.92);
  border-color: rgba(167, 139, 250, 0.22);
}

@media (max-width: 768px) {
  .nav-link--dhlive::after {
    display: none;
  }

  .fp-dhlive-thumb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .fp-dhlive-thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fp-stats-row--dhlive > div strong {
    font-size: 1.25rem;
  }
}

/* ========== 玫瑰克隆 · 在线体验 & 宣传海报（页面内嵌） ========== */
.fp-rose-experience {
  margin-top: 8px;
  margin-bottom: 56px;
  padding: 32px 28px 28px;
  border-radius: 24px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 241, 242, 0.72) 100%);
  border: 1px solid rgba(251, 113, 133, 0.18);
  box-shadow:
    0 28px 64px rgba(136, 19, 55, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  position: relative;
  overflow: hidden;
}

.fp-rose-experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(251, 113, 133, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 100%, rgba(225, 29, 72, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.fp-rose-experience-head {
  position: relative;
  text-align: center;
  margin-bottom: 28px;
}

.fp-rose-experience-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #be123c;
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.2);
}

.fp-rose-experience-title {
  margin: 0 0 8px;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #881337 0%, #e11d48 45%, #fb7185 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fp-rose-experience-lead {
  margin: 0 auto;
  max-width: 640px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.fp-rose-experience-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.fp-rose-exp-inline.rose-demo-exp {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  height: 100%;
}

.fp-rose-exp-inline .rose-demo-exp-grid {
  height: 100%;
}

.fp-rose-exp-inline .rose-demo-exp-card {
  height: 100%;
  padding: 20px 16px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(136, 19, 55, 0.08);
}

.fp-rose-poster {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.fp-rose-poster-frame {
  flex: 1;
  display: flex;
  padding: 10px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 241, 242, 0.8) 100%);
  border: 1px solid rgba(251, 113, 133, 0.2);
  box-shadow:
    0 20px 48px rgba(136, 19, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fp-rose-poster-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  font-family: inherit;
}

.fp-rose-poster-btn img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.fp-rose-poster-btn:hover img {
  transform: scale(1.02);
}

.fp-rose-poster-zoom {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fp-rose-poster-btn:hover .fp-rose-poster-zoom,
.fp-rose-poster-btn:focus-visible .fp-rose-poster-zoom {
  opacity: 1;
}

.fp-rose-poster-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9f1239;
  letter-spacing: 0.04em;
}

html[data-theme="dark"] .fp-rose-experience {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(136, 19, 55, 0.14) 100%);
  border-color: rgba(251, 113, 133, 0.22);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .fp-rose-poster-frame {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(136, 19, 55, 0.18) 100%);
  border-color: rgba(251, 113, 133, 0.24);
}

html[data-theme="dark"] .fp-rose-poster-caption {
  color: #fda4af;
}

@media (max-width: 900px) {
  .fp-rose-experience-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fp-rose-poster {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .fp-rose-experience {
    padding: 24px 16px 20px;
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .fp-rose-experience-head {
    margin-bottom: 20px;
  }

  .fp-rose-experience-lead {
    font-size: 0.8125rem;
  }

  .fp-rose-exp-inline .rose-demo-exp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fp-rose-exp-inline .rose-demo-exp-card {
    height: auto;
  }

  .fp-rose-poster {
    max-width: none;
  }
}
