/* 严格参考 在线文档隐写溯源系统-代码 React 项目版型 */

.cl-page {
  min-height: 100vh;
  background: #fff;
  color: hsl(0 0% 7%);
}

.cl-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .cl-container { padding: 0 1.5rem; } }

.cl-section { width: 100%; padding: 4rem 0; }
@media (min-width: 768px) { .cl-section { padding: 2rem 0; } }

.cl-bg-white { background: #fff; }
.cl-bg-muted { background: #f7f8f9; }

/* Section header — 中文标题在上，英文在下 */
.cl-header { text-align: center; margin-bottom: 3.5rem; }
@media (min-width: 768px) { .cl-header { margin-bottom: 4rem; } }
#overview .cl-header { margin-bottom: 1rem; }
.cl-h2 {
  font-size: clamp(1.5rem, 3.5vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}
.cl-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.cl-line { width: 2rem; height: 2px; background: var(--primary); }
.cl-en {
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Hero — 对齐其他产品页结构 ── */
.cl-hero {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
}
.cl-hero-photo {
  position: absolute;
  inset: 0;
  background: url('/products/online-doc-stego-hero.png') center / cover no-repeat;
}
.cl-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.95), rgba(10,10,10,.8), rgba(10,10,10,.6));
}
.cl-hero-shade-b {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(10,10,10,.8));
}
.cl-hero-orb1 {
  position: absolute;
  top: -8rem; right: -8rem;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.2);
  filter: blur(120px);
  pointer-events: none;
}
.cl-hero-orb2 {
  position: absolute;
  bottom: -5rem; left: -5rem;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.1);
  filter: blur(100px);
  pointer-events: none;
}
.cl-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cl-hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 4rem;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 10;
  pointer-events: none;
}
.cl-hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem;
}
@media (min-width: 768px) { .cl-hero-inner { padding: 8rem 1.5rem; } }
@media (min-width: 1024px) { .cl-hero-inner { padding: 10rem 1.5rem; } }
.cl-hero-copy { max-width: 48rem; }
.cl-hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.cl-hero-label-line { width: 2.5rem; height: 2px; background: var(--primary); }
.cl-hero-label-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: hsl(351 79% 54% / 0.9);
}
.cl-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .cl-hero h1 { font-size: 3rem; line-height: 1; } }
@media (min-width: 1024px) { .cl-hero h1 { font-size: 3.75rem; line-height: 1; } }
.cl-hero h1 .cl-accent { color: var(--primary); }
.cl-hero-desc {
  font-size: 1.125rem;
  line-height: 1.625;
  color: hsl(0 0% 100% / 0.7);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}
.cl-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cl-hero-actions { flex-direction: row; }
}
.cl-hero-copy[data-reveal-immediate] {
  animation: cl-hero-in 0.75s ease-out forwards;
}
.cl-scroll-hint {
  display: none;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 2rem;
  color: hsl(0 0% 100% / 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  animation: cl-scroll-bounce 2s ease-in-out infinite;
}
@keyframes cl-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.cl-hero-inner[data-reveal-immediate] {
  animation: cl-hero-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes cl-hero-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Challenge cards ── */
.cl-challenge-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .cl-challenge-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cl-challenge-grid { grid-template-columns: repeat(4, 1fr); } }

.cl-challenge-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.5rem;
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.cl-challenge-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.cl-challenge-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 10px 15px hsl(351 79% 54% / 0.05);
}
.cl-challenge-card:hover::before { transform: scaleX(1); }
.cl-challenge-card:hover .cl-challenge-num { color: hsl(351 79% 54% / 0.3); }
.cl-challenge-card:hover .cl-challenge-title { color: var(--primary); }
.cl-challenge-num {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(351 79% 54% / 0.2);
  transition: color 0.3s;
}
.cl-challenge-icon {
  width: 3rem; height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.cl-challenge-card:hover .cl-challenge-icon { background: hsl(351 79% 54% / 0.15); }
.cl-challenge-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.cl-challenge-desc { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ── Overview — 对齐 Word_WPS文档防拷溯源系统 ── */
.cl-overview-text {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cl-overview-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: hsl(0 0% 7% / 0.8);
}
@media (min-width: 768px) {
  .cl-overview-text p { font-size: 1.125rem; }
}

.cl-overview-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .cl-overview-grid { grid-template-columns: 2fr 3fr; gap: 3rem; align-items: start; }
  .cl-overview-aside { position: sticky; top: 6rem; }
}

.cl-overview-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.cl-overview-label-line { width: 2.5rem; height: 2px; background: var(--primary); }
.cl-overview-label-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--primary);
}
.cl-overview-aside h2 {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.cl-overview-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
}
.cl-overview-visual {
  position: relative;
  margin-top: 2.5rem;
  display: none;
}
@media (min-width: 1024px) { .cl-overview-visual { display: block; } }
.cl-overview-visual-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to bottom right, hsl(351 79% 54% / 0.1), transparent);
  border-radius: 1rem;
  filter: blur(24px);
}
.cl-overview-visual-card {
  position: relative;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid hsl(214 13% 90% / 0.6);
  padding: 1.5rem;
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.04);
}
.cl-overview-visual-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.cl-overview-visual-icon {
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
}
.cl-overview-visual-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cl-tag-primary {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
}
.cl-tag-muted {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  background: hsl(210 13% 96%);
  color: var(--muted);
}

.cl-para-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.cl-para-card {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid hsl(214 13% 90% / 0.6);
  padding: 1.5rem 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cl-para-card:hover {
  border-color: hsl(351 79% 54% / 0.3);
  box-shadow: 0 4px 12px hsl(0 0% 0% / 0.06);
}
.cl-para-inner { display: flex; gap: 1rem; align-items: flex-start; }
.cl-para-num {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}
.cl-para-text { font-size: 1rem; line-height: 1.75; color: hsl(0 0% 7% / 0.8); }

.cl-highlight-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  padding-top: 0.5rem;
}
@media (min-width: 640px) { .cl-highlight-grid { grid-template-columns: repeat(3, 1fr); } }
.cl-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: hsl(351 79% 54% / 0.05);
  border: 1px solid hsl(351 79% 54% / 0.1);
}
.cl-highlight-item svg { flex-shrink: 0; color: var(--primary); }
.cl-highlight-title { font-weight: 500; font-size: 0.875rem; }
.cl-highlight-desc { font-size: 0.75rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Advantages ── */
.cl-adv-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .cl-adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cl-adv-grid { grid-template-columns: repeat(3, 1fr); } }

.cl-adv-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  padding: 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
}
.cl-adv-card::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 0;
  background: hsl(351 79% 54% / 0.7);
  border-radius: 0 2px 2px 0;
  transition: height 0.3s;
}
.cl-adv-card:hover::before { height: 2.5rem; }
.cl-adv-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.3);
  box-shadow: 0 10px 15px hsl(351 79% 54% / 0.05);
}
.cl-adv-card:hover .cl-adv-icon { background: var(--primary); color: #fff; box-shadow: 0 10px 15px hsl(351 79% 54% / 0.3); }
.cl-adv-card:hover .cl-adv-title { color: var(--primary); }
.cl-adv-card.highlight {
  background: linear-gradient(to bottom right, hsl(351 79% 54% / 0.05), hsl(351 79% 54% / 0.02));
  border-color: hsl(351 79% 54% / 0.3);
}
.cl-adv-card.highlight::before { background: var(--primary); }
.cl-adv-card.highlight .cl-adv-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 15px hsl(351 79% 54% / 0.3);
}
.cl-adv-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
}
.cl-adv-icon {
  width: 3.5rem; height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.cl-adv-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; transition: color 0.3s; }
.cl-adv-desc { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ── Features ── */
.cl-feat-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .cl-feat-grid { grid-template-columns: 1fr 1fr; } }

.cl-feat-panel {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid hsl(214 13% 90% / 0.6);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.cl-feat-panel:hover { box-shadow: 0 10px 15px hsl(351 79% 54% / 0.05); }
.cl-feat-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid hsl(214 13% 90% / 0.6);
  background: linear-gradient(to right, hsl(351 79% 54% / 0.05), transparent);
}
.cl-feat-head h3 {
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cl-feat-head h3::before {
  content: '';
  width: 4px; height: 1.25rem;
  background: var(--primary);
  border-radius: 999px;
}
.cl-feat-list { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.cl-feat-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.cl-feat-item:hover { background: hsl(351 79% 54% / 0.03); transform: translateX(4px); }
.cl-feat-item:hover .cl-feat-icon { background: var(--primary); color: #fff; }
.cl-feat-item:hover h4 { color: var(--primary); }
.cl-feat-icon {
  flex-shrink: 0;
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: hsl(351 79% 54% / 0.1);
  color: var(--primary);
  transition: background 0.3s, color 0.3s;
}
.cl-feat-item h4 { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.25rem; transition: color 0.2s; }
.cl-feat-item p { font-size: 0.75rem; line-height: 1.7; color: var(--muted); }

/* Comparison — aligned with Word_WPS文档防拷溯源系统 */
.cl-cmp-wrap {
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid hsl(214 13% 90% / 0.6);
  background: #fff;
}
.cl-cmp-scroll { overflow-x: auto; }
.cl-cmp-table {
  width: 100%;
  min-width: 640px;
  table-layout: fixed;
  border-collapse: collapse;
}
.cl-cmp-table th, .cl-cmp-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid hsl(214 13% 90% / 0.4);
  vertical-align: top;
  word-break: break-word;
}
.cl-cmp-table thead tr { background: #f1f5f9; }
.cl-cmp-table th.col-label { width: 25%; font-weight: 600; }
.cl-cmp-table th.col-old { width: 37.5%; font-weight: 600; color: var(--muted); }
.cl-cmp-table th.col-new {
  width: 37.5%;
  font-weight: 600;
  color: var(--primary);
  background: #fff1f2;
}
.cl-cmp-table td.col-label { font-weight: 500; }
.cl-cmp-table td.col-old { color: var(--muted); }
.cl-cmp-table td.col-new { background: #fff1f2; }
.cl-cmp-table tbody tr:hover { background: #f8fafc; }
.cl-cmp-table tbody tr:last-child td { border-bottom: 0; }
.cl-cell { display: flex; align-items: flex-start; gap: 0.5rem; }
.cl-cell svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.cl-cell-muted svg { color: #9ca3af; }

/* ── Scenarios ── */
.cl-scenario-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .cl-scenario-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cl-scenario-grid { grid-template-columns: repeat(4, 1fr); } }

.cl-scenario-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid hsl(214 13% 90% / 0.6);
  padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.cl-scenario-card::after {
  content: '';
  position: absolute;
  top: -2rem; right: -2rem;
  width: 6rem; height: 6rem;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.05);
  transition: background 0.3s;
}
.cl-scenario-card:hover {
  transform: translateY(-8px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 20px 25px hsl(351 79% 54% / 0.05);
}
.cl-scenario-card:hover::after { background: hsl(351 79% 54% / 0.1); }
.cl-scenario-card:hover .cl-scenario-icon { background: var(--primary); box-shadow: 0 10px 15px hsl(351 79% 54% / 0.3); }
.cl-scenario-card:hover .cl-scenario-icon svg { color: #fff; }
.cl-scenario-card:hover .cl-scenario-title { color: var(--primary); }
.cl-scenario-card:hover .cl-scenario-more { opacity: 1; }
.cl-scenario-icon {
  position: relative;
  width: 3.5rem; height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: hsl(351 79% 54% / 0.1);
  margin-bottom: 1.25rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.cl-scenario-icon svg { color: var(--primary); transition: color 0.3s; }
.cl-scenario-num { font-size: 0.75rem; color: hsl(215 8% 46% / 0.6); font-weight: 500; margin-bottom: 0.5rem; }
.cl-scenario-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; transition: color 0.3s; }
.cl-scenario-desc { font-size: 0.875rem; line-height: 1.7; color: var(--muted); margin-bottom: 1rem; }
.cl-scenario-more {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
}

/* ── Deployment ── */
.cl-deploy-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .cl-deploy-grid { grid-template-columns: 1fr 1fr; } }

.cl-deploy-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.cl-deploy-card:hover { transform: translateY(-4px); }
.cl-deploy-card.cluster {
  background: linear-gradient(to bottom right, hsl(351 79% 54% / 0.05), #fff);
  border: 2px solid hsl(351 79% 54% / 0.3);
}
.cl-deploy-card.cluster:hover {
  border-color: hsl(351 79% 54% / 0.5);
  box-shadow: 0 20px 25px hsl(351 79% 54% / 0.1);
}
.cl-deploy-card.standalone {
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
}
.cl-deploy-card.standalone:hover {
  border-color: hsl(351 79% 54% / 0.3);
  box-shadow: 0 10px 15px hsl(351 79% 54% / 0.05);
}
.cl-deploy-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 10px hsl(351 79% 54% / 0.3);
}
.cl-deploy-head { padding: 1.75rem 1.75rem 1.25rem; }
.cl-deploy-icon {
  width: 4rem; height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}
.cl-deploy-card:hover .cl-deploy-icon.cluster { transform: scale(1.1); }
.cl-deploy-icon.cluster { background: var(--primary); color: #fff; box-shadow: 0 10px 15px hsl(351 79% 54% / 0.3); }
.cl-deploy-icon.standalone { background: hsl(210 13% 96%); color: var(--foreground); }
.cl-deploy-card.standalone:hover .cl-deploy-icon.standalone { background: hsl(351 79% 54% / 0.1); color: var(--primary); }
.cl-deploy-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.cl-deploy-applicable { font-size: 0.875rem; color: var(--muted); }
.cl-deploy-list { padding: 0 1.75rem 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cl-deploy-list-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.cl-deploy-list-item svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.cl-deploy-list-item.muted svg { color: var(--muted); }
.cl-deploy-list-item p { font-size: 0.875rem; line-height: 1.7; color: hsl(0 0% 7% / 0.8); }
.cl-deploy-diagram { padding: 0 1.75rem 1.75rem; }
.cl-deploy-diagram-inner {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid hsl(214 13% 90% / 0.6);
  padding: 1rem;
}
.cl-deploy-diagram-inner.muted { background: hsl(210 13% 96% / 0.5); border-color: hsl(214 13% 90% / 0.4); }
.cl-lb-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.cl-lb-badge span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: hsl(210 13% 96%);
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.cl-nodes { display: flex; justify-content: center; gap: 0.5rem; }
.cl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  background: hsl(351 79% 54% / 0.1);
  border-radius: 0.375rem;
  font-size: 10px;
  font-weight: 500;
  color: var(--primary);
}
.cl-standalone-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.cl-standalone-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid hsl(214 13% 90% / 0.6);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.04);
}
.cl-standalone-note { font-size: 0.75rem; color: var(--muted); }

/* ── Value ── */
.cl-value-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .cl-value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cl-value-grid { grid-template-columns: repeat(4, 1fr); } }

.cl-value-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid hsl(214 13% 90% / 0.6);
  padding: 1.5rem 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.cl-value-card:hover {
  transform: translateY(-6px);
  border-color: hsl(351 79% 54% / 0.4);
  box-shadow: 0 10px 15px hsl(351 79% 54% / 0.05);
}
.cl-value-card:hover .cl-value-bg-num { color: hsl(351 79% 54% / 0.1); }
.cl-value-card:hover .cl-value-icon { background: var(--primary); box-shadow: 0 10px 15px hsl(351 79% 54% / 0.3); }
.cl-value-card:hover .cl-value-icon svg { color: #fff; }
.cl-value-card:hover .cl-value-title { color: var(--primary); }
.cl-value-bg-num {
  position: absolute;
  top: 0.75rem; right: 1.25rem;
  font-size: 3.75rem;
  font-weight: 900;
  color: hsl(351 79% 54% / 0.05);
  line-height: 1;
  transition: color 0.3s;
}
.cl-value-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; position: relative; }
.cl-value-icon {
  width: 3rem; height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: hsl(351 79% 54% / 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
.cl-value-icon svg { color: var(--primary); transition: color 0.3s; }
.cl-value-tag { font-size: 0.75rem; font-weight: 600; color: var(--primary); letter-spacing: 0.1em; }
.cl-value-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; transition: color 0.3s; }
.cl-value-desc { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ── CTA ── */
.cl-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}
@media (min-width: 768px) { .cl-cta { padding: 7rem 0; } }
.cl-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0f172a, #1e1b4b, #7f1d1d);
}
.cl-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}
.cl-cta-orb1 {
  position: absolute;
  top: 0; left: 25%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.1);
  filter: blur(120px);
  pointer-events: none;
}
.cl-cta-orb2 {
  position: absolute;
  bottom: 0; right: 25%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: hsl(351 79% 54% / 0.05);
  filter: blur(100px);
  pointer-events: none;
}
.cl-cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cl-cta-inner { position: relative; z-index: 1; max-width: 56rem; margin: 0 auto; padding: 0 1rem; }
.cl-cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.cl-cta-label span:not(.cl-line) {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: hsl(351 79% 54% / 0.8);
}
.cl-cta h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cl-cta p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: hsl(0 0% 100% / 0.7);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
.cl-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .cl-cta-actions { flex-direction: row; }
}
.cl-cta .btn-ghost {
  border-color: hsl(0 0% 100% / 0.3);
  color: #fff;
}
.cl-cta .btn-ghost:hover {
  background: hsl(0 0% 100% / 0.1);
}
.cl-cta-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: hsl(0 0% 100% / 0.4);
}
.cl-cta-dot { width: 4px; height: 4px; border-radius: 50%; background: hsl(0 0% 100% / 0.3); }

/* Reveal */
.cl-page .reveal-left,
.cl-page .reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.cl-page .reveal-left { transform: translateX(-30px); }
.cl-page .reveal-left.visible { opacity: 1; transform: translateX(0); }
.cl-page .reveal-right { transform: translateX(30px); }
.cl-page .reveal-right.visible { opacity: 1; transform: translateX(0); }
