/* Clinic LP — extends telephony.css design system */

.tel-reveal--d1 { transition-delay: .12s; }
.tel-reveal--d2 { transition-delay: .24s; }

.cl-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.cl-sub--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Funnel section — edge-to-edge live block, no card frame */
.cl-funnel-section {
  position: relative;
  padding: 0 0 clamp(48px, 6vw, 72px);
  background: var(--dark);
  color: #fff;
  border-radius: 32px 32px 0 0;
  margin-top: 10px;
  overflow: hidden;
}
.cl-funnel-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200, 245, 66, .1), transparent 55%),
    radial-gradient(ellipse 45% 35% at 10% 80%, rgba(0, 229, 184, .06), transparent 50%);
}
.cl-funnel-section-glow { display: none; }
.cl-funnel-section-head {
  position: relative;
  z-index: 2;
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(12px, 2vw, 20px);
  text-align: center;
}
.cl-funnel-section-head .tel-title {
  color: #fff;
  margin-bottom: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cl-funnel-section-foot {
  position: relative;
  z-index: 2;
  padding-top: clamp(8px, 2vw, 16px);
}
.cl-funnel-showcase-wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 4px;
}

/* Live funnel — flush layout, no border frame */
.cl-funnel-live {
  position: relative;
  overflow: visible;
}
.cl-funnel-live-bg,
.cl-funnel-live-overlay { display: none; }

.cl-funnel-live-grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(8px, 1.5vw, 12px) 0 clamp(12px, 2vw, 20px);
  align-items: start;
}
@media (max-width: 920px) {
  .cl-funnel-live-grid { grid-template-columns: 1fr; gap: 28px; }
}

.cl-funnel-live-kicker {
  margin: 0 0 10px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200, 245, 66, .75);
}
.cl-funnel-live-title {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.22;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.cl-funnel-live-title mark {
  background: var(--lime);
  color: var(--ink);
  padding: 0 5px;
  border-radius: 4px;
}
.cl-funnel-live-lead {
  margin: 0 0 22px;
  font-size: .88rem;
  line-height: 1.65;
  color: #b4bfd1;
  max-width: 34ch;
}
.cl-funnel-live-crm {
  padding: 0;
  margin-bottom: 18px;
}
.cl-funnel-live-crm-label {
  margin: 0 0 12px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8f9bb0;
}
.cl-funnel-live-crm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cl-funnel-live-crm-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 0;
  font-size: .8rem;
  line-height: 1.5;
  color: #e2e8f2;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.cl-funnel-live-crm-list li:last-child { padding-bottom: 0; }
.cl-funnel-live-mark {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: .45em;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(200, 245, 66, .45);
}
.cl-funnel-live-profit {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(200, 245, 66, .22);
  font-size: .82rem;
  line-height: 1.55;
  color: #c5cedb;
}

/* Funnel body — rows + spine */
.cl-funnel-live-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  justify-content: center;
}
.cl-funnel-live-link-path {
  fill: none;
  stroke: #ff6b7a;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 64;
  stroke-dashoffset: 64;
}

.cl-funnel-live-spine { display: none; }

.cl-funnel-live-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(150px, 210px);
  gap: 6px;
  align-items: center;
  opacity: 0;
  transform: translateY(14px);
}
.tel-reveal.is-visible .cl-funnel-live-row {
  animation: cl-funnel-row-in .65s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: calc(var(--i) * 0.14s + 0.15s);
}
@keyframes cl-funnel-row-in {
  to { opacity: 1; transform: translateY(0); }
}

.cl-funnel-live-stage {
  position: relative;
  width: calc(var(--w) * 1%);
  max-width: 100%;
  margin: 0 auto;
  padding: 14px 12px 12px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  clip-path: polygon(1.5% 0, 98.5% 0, 92% 100%, 8% 100%);
  transition: transform .25s ease;
}
.cl-funnel-live-stage:hover {
  transform: translateY(-1px);
}
.cl-funnel-live-stage-glow {
  position: absolute;
  inset: 0;
  opacity: .45;
  animation: cl-stage-glow 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.35s);
  pointer-events: none;
}
@keyframes cl-stage-glow {
  0%, 100% { opacity: .25; }
  50% { opacity: .65; }
}
.cl-funnel-live-stage--1 {
  background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(244,246,248,.85) 100%);
  color: var(--ink);
  box-shadow: 0 0 30px rgba(255, 255, 255, .15);
}
.cl-funnel-live-stage--1 .cl-funnel-live-stage-glow {
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.8), transparent 70%);
}
.cl-funnel-live-stage--2 {
  background: linear-gradient(180deg, #fde68a 0%, #f59e0b 100%);
  color: var(--ink);
  box-shadow: 0 0 24px rgba(245, 158, 11, .35);
}
.cl-funnel-live-stage--2 .cl-funnel-live-stage-glow {
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.5), transparent 70%);
}
.cl-funnel-live-stage--3 {
  background: linear-gradient(180deg, var(--lime) 0%, #9fd629 100%);
  color: var(--ink);
  box-shadow: 0 0 28px rgba(200, 245, 66, .4);
}
.cl-funnel-live-stage--3 .cl-funnel-live-stage-glow {
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.45), transparent 70%);
}
.cl-funnel-live-stage--4 {
  background: linear-gradient(180deg, var(--accent) 0%, #00b894 100%);
  color: var(--accent-ink);
  box-shadow: 0 0 28px rgba(0, 229, 184, .35);
}
.cl-funnel-live-stage--4 .cl-funnel-live-stage-glow {
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.35), transparent 70%);
}
.cl-funnel-live-num {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}
.cl-funnel-live-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 4px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .88;
}

/* Animated connector lines */
.cl-funnel-live-link {
  width: 44px;
  height: 20px;
  flex-shrink: 0;
  overflow: visible;
}
.cl-funnel-live-spine { display: none; }

.tel-reveal.is-visible .cl-funnel-live-link-path {
  animation: cl-link-draw .7s ease forwards;
  animation-delay: calc(var(--i) * 0.14s + 0.45s);
  filter: drop-shadow(0 0 4px rgba(255, 92, 108, .5));
}
@keyframes cl-link-draw {
  to { stroke-dashoffset: 0; }
}

.cl-funnel-live-leak {
  padding: 10px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 92, 108, .28);
  background: rgba(255, 92, 108, .08);
  opacity: 0;
  transform: translateX(10px);
}
.tel-reveal.is-visible .cl-funnel-live-leak {
  animation: cl-leak-in .55s ease forwards;
  animation-delay: calc(var(--i) * 0.14s + 0.55s);
}
@keyframes cl-leak-in {
  to { opacity: 1; transform: translateX(0); }
}
.cl-funnel-live-leak-num {
  display: block;
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 700;
  color: #ff8a96;
  line-height: 1.1;
}
.cl-funnel-live-leak-pct {
  display: none;
}
.cl-funnel-live-leak strong {
  display: block;
  margin-top: 2px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}
.cl-funnel-live-leak p {
  margin: 4px 0 0;
  font-size: .6rem;
  line-height: 1.35;
  color: #ffb4bc;
}

.cl-funnel-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: clamp(24px, 3vw, 36px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (max-width: 760px) {
  .cl-funnel-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .cl-funnel-stats { grid-template-columns: 1fr; }
}
.cl-funnel-stat {
  text-align: left;
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  background: transparent;
}
.cl-funnel-stat:last-child { border-right: none; }
@media (max-width: 760px) {
  .cl-funnel-stat:nth-child(2) { border-right: none; }
  .cl-funnel-stat:nth-child(1),
  .cl-funnel-stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, .08); }
}
@media (max-width: 420px) {
  .cl-funnel-stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .cl-funnel-stat:last-child { border-bottom: none; }
}
.cl-funnel-stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  line-height: 1.15;
  margin-bottom: 4px;
  color: #fff;
}
.cl-funnel-stat span {
  display: block;
  font-size: .72rem;
  color: #8f9bb0;
  line-height: 1.35;
}
.cl-funnel-stat--bad b { color: #ff8a96; }
.cl-funnel-stat--lime b { color: var(--lime); }

.cl-funnel-section .tel-cta-band {
  margin-top: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .03);
  box-shadow: none;
}
.cl-funnel-section .tel-cta-band p { color: #c5cedb; }
.cl-funnel-section .tel-cta-band p strong { color: #fff; }

@media (max-width: 768px) {
  .cl-funnel-section { border-radius: 24px 24px 0 0; padding-bottom: 44px; }
  .cl-funnel-section-head { padding-top: 36px; padding-bottom: 8px; }
  .cl-funnel-section-head .tel-title {
    font-size: clamp(1.35rem, 6.5vw, 1.7rem);
    line-height: 1.2;
  }

  /* Funnel visual first, explanation after */
  .cl-funnel-live-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .cl-funnel-live-body {
    order: -1;
    gap: 0;
    align-items: center;
    padding: 4px 0 8px;
  }
  .cl-funnel-live-aside { order: 0; }

  .cl-funnel-live-kicker { font-size: .72rem; }
  .cl-funnel-live-title {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .cl-funnel-live-lead {
    font-size: .95rem;
    line-height: 1.55;
    color: #d5dce8;
    max-width: none;
    margin-bottom: 18px;
  }
  .cl-funnel-live-crm-label {
    font-size: .72rem;
    color: #a8b4c8;
  }
  .cl-funnel-live-crm-list li {
    font-size: .9rem;
    line-height: 1.45;
    padding: 12px 0;
    color: #f0f3f8;
  }
  .cl-funnel-live-profit {
    font-size: .92rem;
    line-height: 1.5;
    color: #e8edf5;
  }

  /* True funnel: tapering trapezoids + drip losses */
  .cl-funnel-live-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
    padding: 0;
    border-bottom: none;
  }
  .cl-funnel-live-link { display: none; }
  .cl-funnel-live-spine { display: none; }

  .cl-funnel-live-stage {
    width: calc(var(--w) * 1%) !important;
    max-width: 100%;
    margin: 0 auto;
    clip-path: polygon(3% 0, 97% 0, 88% 100%, 12% 100%);
    border-radius: 0;
    border: none;
    padding: 18px 16px 16px;
    display: block;
    text-align: center;
    box-shadow:
      0 10px 28px rgba(0, 0, 0, .35),
      inset 0 1px 0 rgba(255, 255, 255, .35);
  }
  .cl-funnel-live-stage--1 {
    clip-path: polygon(1% 0, 99% 0, 92% 100%, 8% 100%);
  }
  .cl-funnel-live-stage--4 {
    clip-path: polygon(6% 0, 94% 0, 84% 100%, 16% 100%);
  }
  .cl-funnel-live-num {
    display: block;
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    order: unset;
  }
  .cl-funnel-live-label {
    display: block;
    margin-top: 6px;
    font-size: .7rem;
    letter-spacing: .12em;
    order: unset;
  }

  .cl-funnel-live-leak {
    position: relative;
    z-index: 2;
    width: min(92%, max(12.5rem, calc(var(--w) * 1%)));
    max-width: 100%;
    box-sizing: border-box;
    margin: -2px auto 10px;
    padding: 10px 12px 11px;
    border-radius: 12px;
    text-align: center;
    transform: none;
    overflow: hidden;
    border: 1px solid rgba(255, 92, 108, .4);
    background:
      linear-gradient(180deg, rgba(255, 92, 108, .22), rgba(255, 92, 108, .08));
    box-shadow: 0 8px 20px rgba(255, 92, 108, .12);
  }
  .cl-funnel-live-leak::before {
    content: "";
    display: block;
    width: 2px;
    height: 10px;
    margin: -10px auto 8px;
    background: linear-gradient(180deg, rgba(255, 138, 150, .15), #ff8a96);
    border-radius: 2px;
  }
  .cl-funnel-live-leak-num {
    display: inline;
    font-size: 1rem;
    margin-right: 6px;
  }
  .cl-funnel-live-leak-pct {
    display: inline-block;
    vertical-align: middle;
    padding: 2px 7px;
    border-radius: 999px;
    font-family: var(--display);
    font-size: .72rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 92, 108, .45);
    line-height: 1.2;
  }
  .cl-funnel-live-leak strong {
    margin-top: 6px;
    font-size: clamp(.62rem, 2.8vw, .72rem);
    letter-spacing: .02em;
    line-height: 1.35;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  .cl-funnel-live-leak p {
    margin-top: 5px;
    font-size: .76rem;
    line-height: 1.4;
    color: #ffc4ca;
    overflow-wrap: break-word;
  }
  .cl-funnel-live-leak--peak {
    border-color: rgba(255, 92, 108, .7);
    background:
      linear-gradient(180deg, rgba(255, 92, 108, .38), rgba(255, 92, 108, .12));
    box-shadow: 0 0 0 1px rgba(255, 92, 108, .25), 0 10px 28px rgba(255, 70, 90, .25);
  }
  .cl-funnel-live-leak--peak .cl-funnel-live-leak-pct {
    background: #ff5c6c;
  }
  .cl-funnel-live-leak--last {
    margin-bottom: 0;
  }

  /* Stats summary — KPI cards, not a flat list */
  .cl-funnel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
    padding: 0;
    border: none;
  }
  .cl-funnel-stat {
    margin: 0;
    padding: 16px 14px;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 16px;
    background: rgba(255, 255, 255, .04);
    text-align: left;
  }
  .cl-funnel-stat b {
    font-size: clamp(1.35rem, 6.5vw, 1.65rem);
    margin-bottom: 6px;
    letter-spacing: -.03em;
  }
  .cl-funnel-stat span {
    font-size: .78rem;
    line-height: 1.35;
    color: #a8b4c8;
  }
  .cl-funnel-stat--bad {
    background: linear-gradient(160deg, rgba(255, 92, 108, .22), rgba(255, 92, 108, .06));
    border-color: rgba(255, 92, 108, .35) !important;
  }
  .cl-funnel-stat--bad span { color: #ffc4ca; }
  .cl-funnel-stat:nth-child(2) {
    grid-column: 1 / -1;
    order: 3;
    padding-bottom: 18px;
  }
  .cl-funnel-stat:nth-child(2)::after {
    content: "";
    display: block;
    height: 10px;
    margin-top: 14px;
    border-radius: 999px;
    background:
      linear-gradient(90deg,
        var(--lime) 0%,
        var(--lime) 22%,
        rgba(255, 92, 108, .55) 22%,
        rgba(255, 92, 108, .2) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  }
  .cl-funnel-stat:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  .cl-funnel-stat--lime {
    grid-column: 1 / -1;
    order: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: var(--lime);
    border-color: var(--lime) !important;
    box-shadow: 0 10px 28px rgba(200, 245, 66, .2);
  }
  .cl-funnel-stat--lime b,
  .cl-funnel-stat--lime span {
    color: var(--ink);
    margin: 0;
  }
  .cl-funnel-stat--lime b {
    font-size: 1.35rem;
  }
  .cl-funnel-stat--lime span {
    font-size: .82rem;
    font-weight: 700;
    text-align: right;
    max-width: 12ch;
  }

  .cl-funnel-section .tel-cta-band { flex-direction: column; align-items: stretch; }
  .cl-funnel-section .tel-cta-band p {
    font-size: .95rem;
    line-height: 1.5;
  }
  .cl-funnel-section .tel-cta-band .tel-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .cl-funnel-live-row,
  .cl-funnel-live-leak,
  .cl-funnel-live-link-path,
  .cl-funnel-live-stage-glow,
  .cl-funnel-live-spine span {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* Legacy dashboard (unused) */
.cl-dash-wrap { max-width: 720px; margin: 0 auto; }
.cl-dash {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 8px 8px 0 var(--lime);
  overflow: hidden;
}
.cl-dash-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 2px solid var(--line);
  background: var(--bg-soft);
}
.cl-dash-bar-title {
  font-size: .78rem;
  color: var(--muted);
  margin-left: 8px;
  font-weight: 600;
}
.cl-dot { width: 10px; height: 10px; border-radius: 50%; }
.cl-dash-body { padding: 20px; }
.cl-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (max-width: 520px) { .cl-kpi-row { grid-template-columns: 1fr; } }
.cl-kpi {
  padding: 12px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 2px solid var(--line);
}
.cl-kpi b { display: block; font-family: var(--display); font-size: 1.15rem; }
.cl-kpi small { color: var(--muted); font-size: .72rem; }
.cl-kpi.warn b { color: var(--coral); }
.cl-kpi.ok b { color: var(--accent-ink); }

.cl-funnel {
  display: flex;
  gap: 6px;
  align-items: stretch;
  height: 120px;
  margin-top: 8px;
}
.cl-funnel-col {
  flex: 1;
  border-radius: 10px;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: .65rem;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.cl-funnel-col:nth-child(1) { background: var(--bg-soft); flex: 1.2; }
.cl-funnel-col:nth-child(2) { background: #fff8e6; flex: 2.5; }
.cl-funnel-col:nth-child(3) { background: var(--lime); flex: 1; }
.cl-funnel-col:nth-child(4) { background: var(--accent); flex: .8; }
.cl-funnel-num { font-family: var(--display); font-size: 1.1rem; font-weight: 700; }

.cl-dash-caption {
  margin-top: 12px;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}

/* Messenger loss — light hub block (funnel layout, bright theme) */
.cl-loss-section {
  position: relative;
  padding: 0 0 clamp(48px, 6vw, 72px);
  background: var(--bg);
  color: var(--ink);
  overflow: hidden;
}
.cl-loss-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200, 245, 66, .14), transparent 55%),
    radial-gradient(ellipse 45% 35% at 90% 80%, rgba(0, 229, 184, .08), transparent 50%);
}
.cl-hub-light-head,
.cl-hub-light-wrap,
.cl-hub-light-foot {
  position: relative;
  z-index: 2;
}
.cl-hub-light-head {
  text-align: center;
  padding-top: clamp(48px, 6vw, 64px);
  padding-bottom: clamp(12px, 2vw, 20px);
}
.cl-hub-light-head .tel-title {
  max-width: 640px;
  margin: 0 auto;
}
.cl-hub-light-wrap { padding-bottom: 4px; }
.cl-hub-light-foot { padding-top: 4px; }

.cl-hub-light-lead {
  margin: 0 auto clamp(24px, 4vw, 32px);
  font-size: .92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}
.cl-hub-light-lead--center { text-align: center; }

/* Messenger loss — split board (chaos → hub) */
.cl-channel-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 24px);
  align-items: stretch;
}
@media (max-width: 900px) {
  .cl-channel-split { grid-template-columns: 1fr; }
}

.cl-channel-split-chaos,
.cl-channel-split-hub {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.cl-channel-split-head {
  margin: 0;
}
.cl-channel-split-head h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: -.02em;
}
.cl-channel-split-head--bad h3 { color: var(--ink); }
.cl-channel-split-head--good h3 { color: var(--accent-ink); }

.cl-channel-split-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  background: #fff5f6;
  border: 1px solid rgba(255, 92, 108, .25);
  padding: 4px 10px;
  border-radius: 999px;
}
.cl-channel-split-tag--lime {
  color: var(--accent-ink);
  background: rgba(200, 245, 66, .35);
  border-color: rgba(17, 17, 17, .12);
}

.cl-channel-split-chaos {
  padding: clamp(18px, 3vw, 24px);
  border-radius: 24px;
  border: 2px solid var(--line);
  background: var(--bg-soft);
}

.cl-channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}
@media (max-width: 520px) { .cl-channel-grid { grid-template-columns: 1fr; } }

.cl-channel-tile {
  padding: 14px 12px;
  border-radius: 16px;
  background: var(--bg);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(17, 17, 17, .08);
  opacity: 0;
  transform: translateY(10px);
}
.tel-reveal.is-visible .cl-channel-tile {
  animation: cl-funnel-row-in .55s cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: calc(var(--i) * 0.08s + 0.1s);
}
.cl-channel-tile--warn { border-top: 4px solid #f59e0b; }
.cl-channel-tile--bad { border-top: 4px solid var(--coral); }
.cl-channel-tile--muted { border-top: 4px solid var(--muted); }
.cl-channel-tile-kicker {
  display: block;
  margin-bottom: 6px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cl-channel-tile b {
  display: block;
  font-size: .78rem;
  line-height: 1.25;
  color: var(--ink);
}
.cl-channel-tile p {
  margin: 6px 0 0;
  font-size: .72rem;
  line-height: 1.45;
  color: var(--muted);
}

.cl-channel-wait {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff5f6;
  border: 2px solid rgba(255, 92, 108, .35);
}
.cl-channel-wait-num {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
  letter-spacing: -.03em;
}
.cl-channel-wait p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--ink);
}

.cl-channel-split-hub {
  padding: clamp(18px, 3vw, 24px);
  border-radius: 24px;
  border: 2px solid var(--ink);
  background: var(--bg);
  box-shadow: 8px 8px 0 var(--lime);
}

.cl-channel-hub-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  padding: clamp(16px, 2.5vw, 22px);
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(200, 245, 66, .22) 0%, rgba(200, 245, 66, .06) 100%);
  border: 2px solid var(--ink);
}

.cl-channel-hub-brand strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--accent-ink);
}
.cl-channel-hub-brand span {
  display: block;
  margin-top: 8px;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--muted);
}

.cl-channel-hub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.cl-channel-hub-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}

.cl-hub-light-mark {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: .45em;
  border-radius: 50%;
  background: var(--accent);
}

.cl-hub-light-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: clamp(24px, 3vw, 36px) 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .cl-hub-light-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .cl-hub-light-stats { grid-template-columns: 1fr; } }
.cl-hub-light-stat {
  text-align: left;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}
.cl-hub-light-stat:last-child { border-right: none; }
@media (max-width: 760px) {
  .cl-hub-light-stat:nth-child(2) { border-right: none; }
  .cl-hub-light-stat:nth-child(1),
  .cl-hub-light-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 420px) {
  .cl-hub-light-stat { border-right: none; border-bottom: 1px solid var(--line); }
  .cl-hub-light-stat:last-child { border-bottom: none; }
}
.cl-hub-light-stat b {
  display: block;
  font-family: var(--display);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  line-height: 1.15;
  margin-bottom: 4px;
  color: var(--ink);
}
.cl-hub-light-stat span {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.35;
}
.cl-hub-light-stat--bad b { color: var(--coral); }
.cl-hub-light-stat--lime b { color: var(--accent-ink); }

.cl-loss-section .tel-cta-band {
  margin-top: clamp(20px, 3vw, 28px);
  box-shadow: 6px 6px 0 var(--lime);
}

@media (max-width: 768px) {
  .cl-loss-section .tel-cta-band { flex-direction: column; align-items: stretch; }
  .cl-loss-section .tel-cta-band .tel-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .cl-channel-tile {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Pains — leak pipeline map (#pains) */
.cl-pains-pipeline-section {
  position: relative;
  padding: 0 0 clamp(48px, 6vw, 72px);
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.cl-pains-pipeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 45% at 18% 20%, rgba(255, 92, 108, .08), transparent 55%),
    radial-gradient(ellipse 55% 40% at 85% 75%, rgba(200, 245, 66, .08), transparent 50%);
}
.cl-pains-pipeline-glow { display: none; }
.cl-pains-pipeline-head {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: clamp(44px, 6vw, 60px);
  padding-bottom: clamp(16px, 3vw, 24px);
}
.cl-pains-pipeline-head .tel-title {
  color: #fff;
  max-width: 640px;
  margin: 0 auto;
}
.cl-pains-pipeline-lead {
  margin: 12px auto 0;
  max-width: 52ch;
  font-size: .9rem;
  line-height: 1.65;
  color: #b4bfd1;
}

.cl-leak-pipeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .cl-leak-pipeline { grid-template-columns: 1fr; }
}

/* Mobile scroll affordance for horizontal rails */
.cl-rail-hint {
  display: none;
}
@media (max-width: 900px) {
  .cl-rail-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 14px 0 0;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px dashed rgba(200, 245, 66, .55);
    background: rgba(200, 245, 66, .1);
    color: #eef2f8;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    animation: cl-rail-hint-pulse 1.6s ease-in-out infinite;
  }
  .cl-rail-hint span:last-child {
    color: var(--lime);
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .7rem;
    animation: cl-rail-hint-arrow 1.6s ease-in-out infinite;
  }
  .cl-rail-hint--light {
    border-color: rgba(15, 23, 42, .25);
    background: rgba(15, 23, 42, .04);
    color: var(--ink);
    animation-name: cl-rail-hint-pulse-light;
  }
  .cl-rail-hint--light span:last-child {
    color: var(--ink);
    animation-name: cl-rail-hint-arrow-light;
  }
}
@keyframes cl-rail-hint-pulse {
  0%, 100% {
    transform: scale(1);
    border-color: rgba(200, 245, 66, .4);
    background: rgba(200, 245, 66, .08);
    box-shadow: 0 0 0 0 rgba(200, 245, 66, 0);
  }
  50% {
    transform: scale(1.035);
    border-color: rgba(200, 245, 66, 1);
    background: rgba(200, 245, 66, .18);
    box-shadow: 0 0 0 8px rgba(200, 245, 66, .16), 0 0 24px rgba(200, 245, 66, .25);
  }
}
@keyframes cl-rail-hint-pulse-light {
  0%, 100% {
    transform: scale(1);
    border-color: rgba(15, 23, 42, .2);
    background: rgba(15, 23, 42, .04);
    box-shadow: 0 0 0 0 rgba(15, 23, 42, 0);
  }
  50% {
    transform: scale(1.035);
    border-color: rgba(15, 23, 42, .6);
    background: rgba(15, 23, 42, .08);
    box-shadow: 0 0 0 8px rgba(15, 23, 42, .08);
  }
}
@keyframes cl-rail-hint-arrow {
  0%, 100% { transform: translateX(0); opacity: .85; }
  50% { transform: translateX(5px); opacity: 1; }
}
@keyframes cl-rail-hint-arrow-light {
  0%, 100% { transform: translateX(0); opacity: .75; }
  50% { transform: translateX(5px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .cl-rail-hint,
  .cl-rail-hint span:last-child {
    animation: none !important;
  }
}

.cl-leak-pipeline-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0;
  position: sticky;
  top: 88px;
  z-index: 3;
}
@media (max-width: 900px) {
  .cl-leak-pipeline-rail {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding: 4px 28px 12px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 245, 66, .55) rgba(255, 255, 255, .08);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 36px), transparent 100%);
  }
  .cl-leak-pipeline-rail::-webkit-scrollbar { height: 4px; display: block; }
  .cl-leak-pipeline-rail::-webkit-scrollbar-thumb {
    background: rgba(200, 245, 66, .55);
    border-radius: 999px;
  }
  .cl-leak-pipeline-rail::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .06);
    border-radius: 999px;
  }
}

.cl-leak-step {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 6px 10px;
  align-items: center;
  width: 100%;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  color: #c5cedb;
  font-family: var(--font);
  text-align: left;
  cursor: pointer;
  user-select: none;
  transition: border-color .2s, background .2s, transform .2s;
}
@media (max-width: 900px) {
  .cl-leak-step {
    flex: 0 0 min(200px, 64vw);
    width: min(200px, 64vw);
    scroll-snap-align: start;
  }
}
.cl-leak-step.is-active,
.cl-leak-step:hover {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
}
.cl-leak-step.is-active {
  border-color: rgba(200, 245, 66, .55);
  background: rgba(200, 245, 66, .08);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(200, 245, 66, .15);
}
.cl-leak-step-shape {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}
.cl-leak-step-fill {
  display: block;
  height: 100%;
  width: calc(var(--w) * 1%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 92, 108, .85), rgba(255, 92, 108, .45));
  transition: width .35s ease;
}
.cl-leak-step.is-active .cl-leak-step-fill,
#leak-r-01:checked ~ .cl-leak-pipeline-rail label[for="leak-r-01"] .cl-leak-step-fill,
#leak-r-02:checked ~ .cl-leak-pipeline-rail label[for="leak-r-02"] .cl-leak-step-fill,
#leak-r-03:checked ~ .cl-leak-pipeline-rail label[for="leak-r-03"] .cl-leak-step-fill,
#leak-r-04:checked ~ .cl-leak-pipeline-rail label[for="leak-r-04"] .cl-leak-step-fill,
#leak-r-05:checked ~ .cl-leak-pipeline-rail label[for="leak-r-05"] .cl-leak-step-fill,
#leak-r-06:checked ~ .cl-leak-pipeline-rail label[for="leak-r-06"] .cl-leak-step-fill,
#leak-r-07:checked ~ .cl-leak-pipeline-rail label[for="leak-r-07"] .cl-leak-step-fill,
#leak-r-08:checked ~ .cl-leak-pipeline-rail label[for="leak-r-08"] .cl-leak-step-fill,
#leak-r-09:checked ~ .cl-leak-pipeline-rail label[for="leak-r-09"] .cl-leak-step-fill,
#leak-r-10:checked ~ .cl-leak-pipeline-rail label[for="leak-r-10"] .cl-leak-step-fill {
  background: linear-gradient(90deg, var(--lime), rgba(200, 245, 66, .55));
}
.cl-leak-step-copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}
.cl-leak-step-num {
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 800;
  color: rgba(200, 245, 66, .85);
  flex-shrink: 0;
}
.cl-leak-step-label {
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cl-leak-step-badge {
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}

.cl-leak-pipeline-detail {
  min-height: 360px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(8px);
}
.cl-leak-detail { display: none; }
#leak-r-01:checked ~ .cl-leak-pipeline-detail [data-leak-panel="01"],
#leak-r-02:checked ~ .cl-leak-pipeline-detail [data-leak-panel="02"],
#leak-r-03:checked ~ .cl-leak-pipeline-detail [data-leak-panel="03"],
#leak-r-04:checked ~ .cl-leak-pipeline-detail [data-leak-panel="04"],
#leak-r-05:checked ~ .cl-leak-pipeline-detail [data-leak-panel="05"],
#leak-r-06:checked ~ .cl-leak-pipeline-detail [data-leak-panel="06"],
#leak-r-07:checked ~ .cl-leak-pipeline-detail [data-leak-panel="07"],
#leak-r-08:checked ~ .cl-leak-pipeline-detail [data-leak-panel="08"],
#leak-r-09:checked ~ .cl-leak-pipeline-detail [data-leak-panel="09"],
#leak-r-10:checked ~ .cl-leak-pipeline-detail [data-leak-panel="10"] {
  display: block;
}
#leak-r-01:checked ~ .cl-leak-pipeline-rail label[for="leak-r-01"],
#leak-r-02:checked ~ .cl-leak-pipeline-rail label[for="leak-r-02"],
#leak-r-03:checked ~ .cl-leak-pipeline-rail label[for="leak-r-03"],
#leak-r-04:checked ~ .cl-leak-pipeline-rail label[for="leak-r-04"],
#leak-r-05:checked ~ .cl-leak-pipeline-rail label[for="leak-r-05"],
#leak-r-06:checked ~ .cl-leak-pipeline-rail label[for="leak-r-06"],
#leak-r-07:checked ~ .cl-leak-pipeline-rail label[for="leak-r-07"],
#leak-r-08:checked ~ .cl-leak-pipeline-rail label[for="leak-r-08"],
#leak-r-09:checked ~ .cl-leak-pipeline-rail label[for="leak-r-09"],
#leak-r-10:checked ~ .cl-leak-pipeline-rail label[for="leak-r-10"] {
  border-color: rgba(200, 245, 66, .55);
  background: rgba(200, 245, 66, .08);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(200, 245, 66, .15);
}
.cl-leak-detail.is-active { display: none; }
.cl-leak-detail-head {
  margin-bottom: clamp(18px, 3vw, 24px);
  padding-bottom: clamp(16px, 2.5vw, 20px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.cl-leak-detail-num {
  display: inline-block;
  font-family: var(--display);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--accent-ink);
  background: var(--lime);
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.cl-leak-detail-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  color: #fff;
}
.cl-leak-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 18px);
}
@media (max-width: 720px) { .cl-leak-detail-grid { grid-template-columns: 1fr; } }
.cl-leak-detail-box {
  padding: clamp(16px, 2.5vw, 20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
}
.cl-leak-detail-box strong {
  display: block;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  font-weight: 800;
}
.cl-leak-detail-box p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.65;
  color: #b4bfd1;
}
.cl-leak-detail-box--bad {
  background: rgba(255, 92, 108, .08);
  border-color: rgba(255, 92, 108, .28);
}
.cl-leak-detail-box--bad strong { color: #ff8a96; }
.cl-leak-detail-box--fix {
  background: rgba(200, 245, 66, .08);
  border-color: rgba(200, 245, 66, .28);
}
.cl-leak-detail-box--fix strong { color: var(--lime); }
.cl-leak-detail-box--fix p { color: #d7deea; }

/* Solutions — deck rail + detail card, light theme (#solutions) */
.cl-solutions-section {
  position: relative;
  padding: 0 0 clamp(48px, 6vw, 72px);
  background: var(--bg-soft);
  color: var(--ink);
  overflow: hidden;
}
.cl-solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 12% 0%, rgba(200, 245, 66, .2), transparent 55%),
    radial-gradient(ellipse 45% 35% at 88% 100%, rgba(0, 229, 184, .08), transparent 50%);
}
.cl-solutions-section .tel-container { position: relative; z-index: 1; }

.cl-solutions-head {
  text-align: center;
  padding-top: clamp(44px, 6vw, 60px);
  padding-bottom: clamp(16px, 3vw, 24px);
}
.cl-solutions-head .tel-title {
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto;
}
.cl-solutions-lead {
  margin: 12px auto 0;
  max-width: 52ch;
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
}

.cl-solution-deck {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .cl-solution-deck { grid-template-columns: 1fr; }
}

.cl-solution-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 88px;
  z-index: 3;
}
@media (max-width: 900px) {
  .cl-solution-rail {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    padding: 4px 28px 12px 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 23, 42, .35) rgba(15, 23, 42, .08);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 36px), transparent 100%);
  }
  .cl-solution-rail::-webkit-scrollbar { height: 4px; display: block; }
  .cl-solution-rail::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, .35);
    border-radius: 999px;
  }
  .cl-solution-rail::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, .08);
    border-radius: 999px;
  }
}

.cl-solution-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px 12px;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--bg);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--line);
  cursor: pointer;
  user-select: none;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
@media (max-width: 900px) {
  .cl-solution-step {
    flex: 0 0 min(210px, 66vw);
    width: min(210px, 66vw);
    grid-template-columns: auto 1fr;
    scroll-snap-align: start;
  }
  .cl-solution-step-tag { grid-column: 2; justify-self: start; }
}
.cl-solution-step:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 var(--lime);
}
#sol-r-01:checked ~ .cl-solution-rail label[for="sol-r-01"],
#sol-r-02:checked ~ .cl-solution-rail label[for="sol-r-02"],
#sol-r-03:checked ~ .cl-solution-rail label[for="sol-r-03"],
#sol-r-04:checked ~ .cl-solution-rail label[for="sol-r-04"],
#sol-r-05:checked ~ .cl-solution-rail label[for="sol-r-05"] {
  background: var(--lime);
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transform: translateX(4px);
}
@media (max-width: 900px) {
  #sol-r-01:checked ~ .cl-solution-rail label[for="sol-r-01"],
  #sol-r-02:checked ~ .cl-solution-rail label[for="sol-r-02"],
  #sol-r-03:checked ~ .cl-solution-rail label[for="sol-r-03"],
  #sol-r-04:checked ~ .cl-solution-rail label[for="sol-r-04"],
  #sol-r-05:checked ~ .cl-solution-rail label[for="sol-r-05"] {
    transform: none;
  }
}

.cl-solution-step-num {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 800;
  color: var(--accent-ink);
  opacity: .65;
  line-height: 1;
}
#sol-r-01:checked ~ .cl-solution-rail label[for="sol-r-01"] .cl-solution-step-num,
#sol-r-02:checked ~ .cl-solution-rail label[for="sol-r-02"] .cl-solution-step-num,
#sol-r-03:checked ~ .cl-solution-rail label[for="sol-r-03"] .cl-solution-step-num,
#sol-r-04:checked ~ .cl-solution-rail label[for="sol-r-04"] .cl-solution-step-num,
#sol-r-05:checked ~ .cl-solution-rail label[for="sol-r-05"] .cl-solution-step-num {
  opacity: 1;
}
.cl-solution-step-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cl-solution-step-copy b {
  font-size: .88rem;
  line-height: 1.25;
  color: inherit;
}
.cl-solution-step-copy small {
  font-size: .72rem;
  line-height: 1.3;
  color: var(--muted);
}
#sol-r-01:checked ~ .cl-solution-rail label[for="sol-r-01"] .cl-solution-step-copy small,
#sol-r-02:checked ~ .cl-solution-rail label[for="sol-r-02"] .cl-solution-step-copy small,
#sol-r-03:checked ~ .cl-solution-rail label[for="sol-r-03"] .cl-solution-step-copy small,
#sol-r-04:checked ~ .cl-solution-rail label[for="sol-r-04"] .cl-solution-step-copy small,
#sol-r-05:checked ~ .cl-solution-rail label[for="sol-r-05"] .cl-solution-step-copy small {
  color: rgba(17, 17, 17, .7);
}
.cl-solution-step-tag {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--muted);
}
#sol-r-01:checked ~ .cl-solution-rail label[for="sol-r-01"] .cl-solution-step-tag,
#sol-r-02:checked ~ .cl-solution-rail label[for="sol-r-02"] .cl-solution-step-tag,
#sol-r-03:checked ~ .cl-solution-rail label[for="sol-r-03"] .cl-solution-step-tag,
#sol-r-04:checked ~ .cl-solution-rail label[for="sol-r-04"] .cl-solution-step-tag,
#sol-r-05:checked ~ .cl-solution-rail label[for="sol-r-05"] .cl-solution-step-tag {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.cl-solution-detail {
  position: relative;
  min-height: clamp(340px, 38vw, 400px);
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--bg);
  box-shadow: 10px 10px 0 var(--lime);
  overflow: hidden;
}
.cl-solution-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 100% 0%, rgba(200, 245, 66, .14), transparent 55%),
    linear-gradient(180deg, #f8fff4 0%, var(--bg) 42%);
}

.cl-solution-card {
  display: none;
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3.5vw, 32px);
}
#sol-r-01:checked ~ .cl-solution-detail [data-sol-panel="01"],
#sol-r-02:checked ~ .cl-solution-detail [data-sol-panel="02"],
#sol-r-03:checked ~ .cl-solution-detail [data-sol-panel="03"],
#sol-r-04:checked ~ .cl-solution-detail [data-sol-panel="04"],
#sol-r-05:checked ~ .cl-solution-detail [data-sol-panel="05"] {
  display: block;
  animation: cl-solution-in .4s cubic-bezier(.22, 1, .36, 1);
}
@keyframes cl-solution-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.cl-solution-card-head {
  display: flex;
  gap: clamp(14px, 2vw, 20px);
  align-items: flex-start;
  margin-bottom: clamp(16px, 2.5vw, 22px);
}
.cl-solution-card-num {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(200, 245, 66, .55);
}
.cl-solution-card-kicker {
  margin: 0 0 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.cl-solution-card-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--ink);
  max-width: 28ch;
}

.cl-solution-card-payoff {
  margin: 0 0 clamp(18px, 3vw, 24px);
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background: var(--lime);
  color: var(--accent-ink);
  font-size: clamp(.88rem, 1.6vw, .98rem);
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 4px 4px 0 var(--ink);
}

.cl-solution-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(12px, 2vw, 18px);
}
@media (max-width: 760px) {
  .cl-solution-card-grid { grid-template-columns: 1fr; }
}

.cl-solution-card-box {
  padding: clamp(16px, 2.5vw, 20px);
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.cl-solution-card-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cl-solution-card-box p {
  margin: 0;
  font-size: clamp(.88rem, 1.5vw, .95rem);
  line-height: 1.6;
  color: var(--ink);
}
.cl-solution-card-box--setup {
  border: 2px solid var(--ink);
  background: linear-gradient(180deg, #f8fff4 0%, #f0f8e4 100%);
  box-shadow: 4px 4px 0 rgba(200, 245, 66, .55);
}
.cl-solution-card-box--setup strong { color: var(--accent-ink); }
.cl-solution-card-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cl-solution-card-box li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(.88rem, 1.5vw, .95rem);
  line-height: 1.55;
  color: var(--ink);
}
.cl-solution-card-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  border: 1px solid var(--ink);
  box-shadow: 0 0 0 2px rgba(200, 245, 66, .35);
}

@media (prefers-reduced-motion: reduce) {
  .cl-solution-card { animation: none !important; }
  .cl-solution-step { transition: none; }
}

/* Legacy pain rows (unused on cliniki; kept for scripts) */
.cl-pain-list { display: flex; flex-direction: column; gap: 20px; }
.cl-pain-row {
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--lime);
  transition: transform .2s;
}
.cl-pain-row:hover { transform: translateY(-2px); }
.cl-pain-row--flip .cl-pain-visual { order: 2; }
.cl-pain-row--flip .cl-pain-content { order: 1; }
@media (max-width: 860px) {
  .cl-pain-row,
  .cl-pain-row--flip { grid-template-columns: 1fr; padding: 22px; }
  .cl-pain-row--flip .cl-pain-visual,
  .cl-pain-row--flip .cl-pain-content { order: unset; }
}

.cl-pain-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--line);
  aspect-ratio: 16/9;
  min-height: 200px;
  background: var(--bg-soft);
}
.cl-pain-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cl-pain-num {
  display: inline-block;
  font-family: var(--display);
  font-size: .68rem;
  font-weight: 800;
  color: var(--accent-ink);
  background: var(--lime);
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.cl-pain-content h3 {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -.02em;
}
.cl-pain-block {
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid var(--line);
}
.cl-pain-block--problem {
  background: #fff5f6;
  border-color: #fecdd3;
}
.cl-pain-block--solution {
  background: linear-gradient(180deg, #f8fff4 0%, var(--bg) 100%);
  border-color: var(--ink);
}
.cl-pain-block strong {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
  font-weight: 800;
}
.cl-pain-block--problem strong { color: var(--coral); }
.cl-pain-block--solution strong { color: var(--accent-ink); }
.cl-pain-block p {
  margin: 0;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Persona cards */
.cl-persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) { .cl-persona-grid { grid-template-columns: 1fr; } }
.cl-persona {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  background: var(--bg);
  transition: transform .2s;
}
.cl-persona:hover { transform: translateY(-3px); }
.cl-persona-top {
  padding: 24px 24px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: #fff;
}
.cl-persona--kc .cl-persona-top { background: var(--dark); }
.cl-persona-top h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  color: #fff;
}
.cl-persona-icon { font-size: 1.75rem; flex-shrink: 0; }
.cl-persona ul {
  list-style: none;
  margin: 0;
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cl-persona li {
  font-size: .84rem;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.cl-persona li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--accent-ink);
}

/* Before / After */
.cl-ba-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .cl-ba-wrap { grid-template-columns: 1fr; gap: 14px; }
}
.cl-ba-card {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 6px 6px 0 var(--lime);
  display: flex;
  flex-direction: column;
}
.cl-ba-card--before { box-shadow: 6px 6px 0 var(--coral); }
.cl-ba-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--line);
}
.cl-ba-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid var(--ink);
}
.cl-ba-icon--bad { background: #fff5f6; color: var(--coral); }
.cl-ba-icon--good { background: var(--lime); color: var(--accent-ink); }
.cl-ba-card-label {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 4px;
  color: var(--muted);
}
.cl-ba-card-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.25;
}
.cl-ba-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cl-ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.cl-ba-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 800;
  background: var(--lime);
  color: var(--accent-ink);
}
.cl-ba-card--before .cl-ba-mark { background: #fee2e2; color: var(--coral); }

.cl-ba-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 4px;
}
.cl-ba-bridge-line {
  width: 2px;
  flex: 1;
  min-height: 36px;
  background: var(--line);
  border-radius: 2px;
}
.cl-ba-bridge-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .cl-ba-bridge { flex-direction: row; padding: 4px 0; }
  .cl-ba-bridge-line {
    width: auto;
    height: 2px;
    flex: 1;
    min-height: 0;
  }
  .cl-ba-bridge-btn { transform: rotate(90deg); }
}

/* Architecture / orbit — dark section */
.cl-hub-section { margin-top: 12px; border-radius: 32px 32px 0 0; }
.cl-hub-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.cl-orbit-wrap { padding-bottom: 32px; margin-bottom: 40px; position: relative; }
.cl-orbit {
  position: relative;
  width: min(400px, 88vw);
  height: min(400px, 88vw);
  margin: 0 auto;
}
.cl-orbit-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cl-orbit-ring {
  stroke: rgba(200, 245, 66, .2);
  stroke-width: 1;
  stroke-dasharray: 6 8;
  transform-origin: center;
}
.tel-reveal.is-visible .cl-orbit-ring {
  animation: cl-spin-slow 60s linear infinite;
}
.cl-orbit-line {
  stroke: rgba(200, 245, 66, .45);
  stroke-width: 1.5;
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: cl-draw-line 2s ease forwards;
}
.cl-orbit-line:nth-child(3) { animation-delay: .15s; }
.cl-orbit-line:nth-child(4) { animation-delay: .3s; }
.cl-orbit-line:nth-child(5) { animation-delay: .45s; }
.cl-orbit-line:nth-child(6) { animation-delay: .6s; }
.cl-orbit-line:nth-child(7) { animation-delay: .75s; }
@keyframes cl-draw-line { to { stroke-dashoffset: 0; } }
@keyframes cl-spin-slow { to { transform: rotate(360deg); } }

.cl-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--accent-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 8px rgba(200, 245, 66, .15);
  z-index: 2;
}
.cl-orbit-core strong { font-family: var(--display); font-size: .88rem; line-height: 1.1; }
.cl-orbit-core small { font-size: .62rem; color: var(--muted); margin-top: 2px; }
.cl-orbit-core-icon { font-size: 1.1rem; margin-bottom: 2px; opacity: .8; }
.cl-orbit-pulse {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(200, 245, 66, .4);
}
.tel-reveal.is-visible .cl-orbit-pulse {
  animation: cl-pulse-ring 2.8s ease-out infinite;
}
@keyframes cl-pulse-ring {
  0% { transform: scale(.92); opacity: .9; }
  100% { transform: scale(1.35); opacity: 0; }
}

.cl-orbit-sat {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + var(--ox) * 1px), calc(-50% + var(--oy) * 1px));
  width: 132px;
  padding: 14px 12px;
  height: 128px;
  border-radius: 14px;
  background: var(--bg);
  border: 2px solid var(--ink);
  text-align: center;
  box-shadow: 4px 4px 0 var(--lime);
  z-index: 3;
  transition: transform .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.cl-orbit-sat:hover {
  transform: translate(calc(-50% + var(--ox) * 1px), calc(-50% + var(--oy) * 1px - 4px));
}
.cl-orbit-sat-icon { display: block; font-size: 1.5rem; margin-bottom: 6px; }
.cl-orbit-sat b {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .86rem;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
}
.cl-orbit-sat small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .66rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.25;
}

.cl-orbit-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 28px;
}
.cl-orbit-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #a8b4c8;
}
.cl-orbit-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
}
.cl-orbit-legend-dot--live {
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: cl-blink 2s ease infinite;
}
@keyframes cl-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

.cl-flow-title {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -.02em;
  text-align: center;
  color: #fff;
}
.cl-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .cl-flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cl-flow { grid-template-columns: 1fr; } }
.cl-flow-step {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 2px solid rgba(200, 245, 66, .25);
}
.cl-flow-n {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: .72rem;
  margin-bottom: 10px;
}
.cl-flow-step h4 { font-size: .88rem; margin: 0 0 6px; color: #fff; font-weight: 800; }
.cl-flow-step p { font-size: .78rem; color: #a8b4c8; line-height: 1.5; margin: 0; }

/* Case cards */
.cl-cases-section {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.cl-cases-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(200, 245, 66, .1), transparent 60%);
}
.cl-cases-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.cl-cases-section .tel-container { position: relative; z-index: 1; }
.cl-cases-section .tel-title { color: #fff; }
.cl-cases-section .cl-section-head { text-align: center; }
.cl-cases-section .cl-section-head .tel-title { margin-left: auto; margin-right: auto; max-width: 620px; }

/* Cases — image grid (3 columns) */
.cl-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  margin-top: 12px;
}
.cl-case-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #12151a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  transition: transform .25s, border-color .25s;
}
.cl-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 245, 66, .35);
}
.cl-case-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d0f12;
}
.cl-case-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 15, 18, 0) 45%, rgba(13, 15, 18, .75) 100%),
    radial-gradient(ellipse 80% 80% at 15% 10%, rgba(200, 245, 66, .12), transparent 55%);
}
.cl-case-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .82;
  filter: saturate(.9) contrast(1.05);
  transition: transform .35s ease, opacity .35s ease;
}
.cl-case-card:hover .cl-case-card-media img {
  transform: scale(1.04);
  opacity: .95;
}
.cl-case-card-cap {
  padding: 14px 16px 16px;
}
.cl-case-card-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #eef2f8;
}
.cl-case-card-cap h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: -.03em;
  color: #fff;
}

/* Было → Стало */
.cl-case-card-shift {
  position: relative;
  display: grid;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(8, 10, 14, .65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.cl-case-card-shift::after {
  content: "↓";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 24px;
  height: 24px;
  margin: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-ink);
  background: var(--lime);
  border: 2px solid #12151a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
  pointer-events: none;
}
.cl-case-card-was,
.cl-case-card-now {
  margin: 0;
  padding: 12px 12px 13px 15px;
  border: none;
  border-radius: 0;
  font-size: .74rem;
  line-height: 1.45;
  min-height: 68px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cl-case-card-was {
  padding-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(255, 92, 108, .16) 0%, rgba(255, 92, 108, .04) 55%, transparent 100%);
  border-left: 3px solid rgba(255, 92, 108, .75);
  border-bottom: 1px dashed rgba(255, 255, 255, .1);
  color: #aeb8c8;
}
.cl-case-card-now {
  padding-top: 16px;
  background:
    linear-gradient(135deg, rgba(200, 245, 66, .18) 0%, rgba(200, 245, 66, .05) 55%, transparent 100%);
  border-left: 3px solid var(--lime);
  color: #fff;
  font-weight: 600;
}
.cl-case-card-was span,
.cl-case-card-now span {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 5px;
  margin: 0;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
}
.cl-case-card-was span {
  color: #ffc4ca;
  background: rgba(255, 92, 108, .22);
  border: 1px solid rgba(255, 92, 108, .38);
}
.cl-case-card-was span::before {
  content: "✕";
  font-size: .5rem;
  font-weight: 900;
  opacity: .9;
}
.cl-case-card-now span {
  color: #e8f9a0;
  background: rgba(200, 245, 66, .18);
  border: 1px solid rgba(200, 245, 66, .42);
}
.cl-case-card-now span::before {
  content: "✓";
  font-size: .58rem;
  font-weight: 900;
}
.cl-case-card:hover .cl-case-card-now {
  background:
    linear-gradient(135deg, rgba(200, 245, 66, .24) 0%, rgba(200, 245, 66, .07) 55%, transparent 100%);
}
.cl-case-card:hover .cl-case-card-shift::after {
  transform: translate(-50%, -50%) scale(1.06);
}
@media (max-width: 900px) {
  .cl-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .cl-case-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .cl-case-card,
  .cl-case-card-media img { transition: none; }
  .cl-case-card:hover { transform: none; }
  .cl-case-card:hover .cl-case-card-media img { transform: none; }
  .cl-case-card:hover .cl-case-card-shift::after { transform: translate(-50%, -50%); }
}

/* Process — horizontal milestone track (light) */
.cl-process-section .cl-section-head {
  text-align: center;
  max-width: none;
}
.cl-process-section .cl-section-head .tel-title {
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.2rem, 2.15vw, 2.05rem);
}
.cl-process-lead {
  margin: 12px auto 0;
  max-width: 680px;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--muted);
}
@media (max-width: 768px) {
  .cl-process-section .cl-section-head .tel-title {
    white-space: normal;
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
  }
}
.cl-process-milestones {
  position: relative;
  margin-top: 32px;
  padding: 8px 0 0;
}
.cl-process-spine {
  position: absolute;
  top: 30px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(13, 15, 18, .08) 0%,
    var(--lime) 12%,
    var(--lime) 88%,
    rgba(13, 15, 18, .08) 100%
  );
  pointer-events: none;
}
.cl-process-stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.cl-process-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.cl-process-stop-dot {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cl-process-stop:hover .cl-process-stop-dot {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}
.cl-process-stop-body {
  padding: 14px 10px 12px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  background: var(--bg);
  min-height: 118px;
  width: 100%;
  box-shadow: 4px 4px 0 var(--lime);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.cl-process-stop:hover .cl-process-stop-body {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--lime);
}
.cl-process-stop-body h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: .88rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--ink);
}
.cl-process-stop-body p {
  margin: 0;
  font-size: .72rem;
  line-height: 1.45;
  color: var(--muted);
}
@media (max-width: 1024px) {
  .cl-process-stops {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 12px;
  }
  .cl-process-spine { display: none; }
  .cl-process-stop {
    align-items: stretch;
    text-align: left;
  }
  .cl-process-stop-dot {
    align-self: flex-start;
    width: 38px;
    height: 38px;
    font-size: .82rem;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .cl-process-stop-body { min-height: 0; }
}
@media (max-width: 640px) {
  .cl-process-milestones {
    margin-top: 24px;
    padding-left: 8px;
  }
  .cl-process-spine {
    display: block;
    top: 12px;
    bottom: 12px;
    left: 26px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(13, 15, 18, .08) 0%,
      var(--lime) 8%,
      var(--lime) 92%,
      rgba(13, 15, 18, .08) 100%
    );
  }
  .cl-process-stops {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cl-process-stop {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0 0 16px;
  }
  .cl-process-stop:last-child { padding-bottom: 0; }
  .cl-process-stop-dot {
    flex-shrink: 0;
    margin-top: 2px;
  }
  .cl-process-stop-body {
    flex: 1;
    padding: 12px 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cl-process-stop-dot,
  .cl-process-stop-body { transition: none; }
  .cl-process-stop:hover .cl-process-stop-dot { transform: none; }
}

/* Demo — full-width split panel */
.cl-demo-section {
  padding: 0;
  overflow-x: clip;
}
.cl-demo-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.cl-demo-intro {
  padding:
    clamp(36px, 5vw, 64px)
    clamp(24px, 4vw, 48px)
    clamp(36px, 5vw, 64px)
    max(24px, calc((100vw - min(1160px, 92vw)) / 2));
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(200, 245, 66, .14), transparent 55%),
    linear-gradient(180deg, #151820 0%, #0d0f12 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cl-demo-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 245, 66, .12);
  border: 1px solid rgba(200, 245, 66, .35);
  color: var(--lime);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cl-demo-title {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  letter-spacing: -.02em;
  margin: 0 0 12px;
  line-height: 1.2;
  color: #fff;
}
.cl-demo-lead {
  margin: 0 0 22px;
  font-size: .88rem;
  line-height: 1.6;
  color: #a8b4c8;
}
.cl-demo-btn { align-self: flex-start; }
.cl-demo-list {
  list-style: none;
  margin: 0;
  padding:
    clamp(32px, 4vw, 56px)
    max(24px, calc((100vw - min(1160px, 92vw)) / 2))
    clamp(32px, 4vw, 56px)
    clamp(24px, 4vw, 48px);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  border-left: 2px solid var(--ink);
}
.cl-demo-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.cl-demo-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  border: 2px solid var(--ink);
}
.cl-demo-item p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.5;
  color: var(--muted);
}
.cl-demo-item strong { font-weight: 800; color: var(--ink); }
@media (max-width: 900px) {
  .cl-demo-split { grid-template-columns: 1fr; }
  .cl-demo-intro {
    padding:
      28px max(20px, calc((100vw - min(1160px, 92vw)) / 2))
      28px max(20px, calc((100vw - min(1160px, 92vw)) / 2));
  }
  .cl-demo-list {
    padding:
      22px max(20px, calc((100vw - min(1160px, 92vw)) / 2))
      28px max(20px, calc((100vw - min(1160px, 92vw)) / 2));
    border-left: none;
    border-top: 2px solid var(--ink);
  }
}
@media (max-width: 560px) {
  .cl-demo-intro { padding: 24px 18px; }
  .cl-demo-list { padding: 18px; }
  .cl-demo-btn { width: 100%; justify-content: center; }
}

/* Typographic polish */
.tel-page :is(h1, h2, h3, .tel-lead, .tel-hero-lead, p, li) {
  text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
  .cl-orbit-pulse,
  .cl-orbit-ring,
  .cl-orbit-line { animation: none !important; stroke-dashoffset: 0 !important; }
}

@media (max-width: 768px) {
  .cl-loss-section { padding-bottom: 44px; }
  .cl-pain-row { box-shadow: 4px 4px 0 var(--lime); }
  .cl-funnel-showcase-frame { box-shadow: 0 20px 50px rgba(0,0,0,.5), 8px 8px 0 var(--lime); }
  .cl-orbit { width: min(320px, 92vw); height: min(360px, 100vw); }
  .cl-orbit-sat {
    width: 104px;
    padding: 10px 8px;
    transform: translate(calc(-50% + var(--ox) * .74px), calc(-50% + var(--oy) * .74px));
    height: 112px;
  }
  .cl-orbit-sat b { font-size: .7rem; }
  .cl-orbit-sat small { font-size: .54rem; }
  .cl-orbit-core { width: 96px; height: 96px; }
}
