@charset "UTF-8";
.cn-process-rail {
  --cn-pr-ink: #191511;
  --cn-pr-muted: #6a5f52;
  --cn-pr-accent: #de6c2a;
  --cn-pr-accent-2: #7b9871;
  --cn-pr-bg-1: #f6f3ee;
  --cn-pr-bg-2: #fbf9f5;
  --cn-pr-surface: rgba(255, 255, 255, 0.78);
  --cn-pr-shadow: 0 30px 70px rgba(24, 18, 12, 0.16);
  --cn-pr-media-height: clamp(280px, 44vw, 560px);
  --cn-pr-frame-max-height: clamp(420px, 70vh, 640px);
  position: relative;
  color: var(--cn-pr-ink);
  font-family: "Sora", "Syne", "Segoe UI", sans-serif;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 12%, rgba(222, 108, 42, 0.14), transparent 45%),
    radial-gradient(circle at 86% 18%, rgba(123, 152, 113, 0.14), transparent 48%),
    linear-gradient(120deg, var(--cn-pr-bg-1), var(--cn-pr-bg-2));
  overflow: hidden;
}

.cn-process-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 36px 36px;
  mix-blend-mode: screen;
}

.cn-process-rail * {
  box-sizing: border-box;
}

.cn-process-rail > * {
  position: relative;
  z-index: 1;
}

.cn-pr-head {
  display: grid;
  gap: 10px;
  max-width: 640px;
}

.cn-pr-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
  font-weight: 600;
  color: var(--cn-pr-accent);
}

.cn-pr-title {
  font-family: "Syne", "Sora", sans-serif;
  margin: 0;
  /* font-size: clamp(28px, 4vw, 44px); */
  font-size:24px;
  line-height: 1.05;
}

.cn-pr-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cn-pr-muted);
}

.cn-pr-shell {
  margin-top: 10px;
  padding: 15px;
  border-radius: 26px;
  background: var(--cn-pr-surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--cn-pr-shadow);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 5px;
}

.cn-pr-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.cn-pr-step {
  border: 1px solid transparent;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  color: var(--cn-pr-muted);
}

.cn-pr-step-num {
  font-family: "Syne", "Sora", sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--cn-pr-accent);
}

.cn-pr-step-name {
  font-size: inherit;
  letter-spacing: 0.18em;
}

.cn-pr-step.is-active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--cn-pr-ink);
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 32px rgba(20, 16, 12, 0.12);
}

.cn-pr-step.is-active .cn-pr-step-num {
  color: var(--cn-pr-ink);
}

.cn-pr-stage {
  position: relative;
  min-height: 480px;
  transition: height 0.4s ease;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.cn-pr-stage.is-dragging {
  cursor: grabbing;
}

.cn-pr-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.cn-pr-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cn-pr-layout {
  position: relative;
}

.cn-pr-copy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: min(360px, 45%);
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.799);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  z-index: 3;
}

.cn-pr-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cn-pr-accent);
}

.cn-pr-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cn-pr-accent);
  box-shadow: 0 0 0 6px rgba(222, 108, 42, 0.18);
}

.cn-pr-copy h3 {
  margin: 0;
  font-size:  19px ;
}

.cn-pr-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--cn-pr-muted);
}

.cn-pr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cn-pr-muted);
}

.cn-pr-meta strong {
  color: var(--cn-pr-ink);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.cn-pr-media {
  position: relative;
}

.cn-pr-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: 100%;
  height: min(var(--cn-pr-frame-height, var(--cn-pr-media-height)), var(--cn-pr-frame-max-height, 65vh));
  box-shadow: 0 24px 40px rgba(18, 14, 10, 0.16);
  isolation: isolate;
  cursor: inherit;
}

.cn-pr-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.cn-process-rail .cn-pr-frame .cn-pr-image {
  position: relative;
  z-index: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: var(--cn-pr-image-fit, cover);
  object-position: var(--cn-pr-image-pos-x, 50%) var(--cn-pr-image-pos-y, 50%);
  display: block;
  transform: scale(1.03);
  filter: saturate(0.96);
  transition: transform 1s ease, filter 1s ease;
  -webkit-user-drag: none;
}

.cn-process-rail .cn-pr-slide.is-active .cn-pr-image {
  transform: scale(1);
  filter: saturate(1);
}

.cn-pr-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cn-pr-marker {
  --shift-x: -50%;
  --shift-y: -50%;
  position: absolute;
  left: calc(var(--x, 50) * 1%);
  top: calc(var(--y, 50) * 1%);
  transform: translate(var(--shift-x), var(--shift-y)) scale(0.96);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  color: var(--cn-pr-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: var(--delay, 0s);
  backdrop-filter: blur(10px);
}

.cn-pr-marker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cn-pr-accent);
  box-shadow: 0 0 0 6px rgba(222, 108, 42, 0.18);
}

.cn-pr-marker[data-align="left"] {
  --shift-x: -6%;
}

.cn-pr-marker[data-align="right"] {
  --shift-x: -94%;
}

.cn-pr-slide.is-active .cn-pr-marker {
  opacity: 1;
  transform: translate(var(--shift-x), var(--shift-y)) scale(1);
}

.cn-pr-caption { 
    
  /* position: absolute;
  left: 16px;
  bottom: 12px; */
  display: none !important;
  /* align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.92);
  z-index: 3;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.35); */
}

.cn-pr-caption strong {
  font-family: "Syne", "Sora", sans-serif;
  letter-spacing: 0.28em;
}

.cn-pr-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.cn-pr-progress {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.cn-pr-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cn-pr-accent), rgba(222, 108, 42, 0.35));
}

.cn-pr-hint {
  font-size: 11px;
  color: var(--cn-pr-muted);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .cn-pr-rail {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .cn-pr-step {
    flex: 0 0 auto;
  }

  .cn-pr-layout {
    display: grid;
    gap: 14px;
  }

  .cn-pr-copy {
    position: static;
    max-width: 100%;
  }

  .cn-pr-stage {
    min-height: 0;
  }
}

@media (max-width: 1440px) and (min-width: 961px) {
  .cn-process-rail {
    --cn-pr-media-height: clamp(280px, 42vw, 560px);
    padding: 24px;
    border-radius: 24px;
  }

  .cn-pr-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .cn-pr-stage {
    min-height: 420px;
  }

  .cn-pr-copy {
    left: 18px;
    bottom: 18px;
    max-width: min(320px, 54%);
    padding: 14px 16px;
  }

  .cn-pr-copy h3 {
    font-size:  20px ;
  }

  .cn-pr-copy p {
    font-size: 14px;
  }

  .cn-pr-meta {
    font-size: 10px;
  }
}

@media (max-width: 1280px) {
  .cn-process-rail {
    --cn-pr-media-height: clamp(240px, 40vw, 480px);
    padding: 22px;
    border-radius: 24px;
  }

  .cn-pr-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .cn-pr-stage {
    min-height: 420px;
  }

  .cn-pr-copy {
    left: 18px;
    bottom: 18px;
    /* max-width: min(320px, 58%); */
    padding: 14px 16px;
  }

  .cn-pr-copy h3 {
    font-size:  18px ;
  }

  .cn-pr-copy p {
    font-size: 14px;
  }

  .cn-pr-meta {
    font-size: 10px;
  }
}

@media (max-width: 720px) {
  .cn-process-rail {
    padding: 20px;
    border-radius: 20px;
  }

  .cn-pr-shell {
    padding: 14px;
    border-radius: 18px;
  }

  .cn-pr-rail {
    padding: 4px;
    gap: 8px;
  }

  .cn-pr-step {
    font-size: 10px;
  }

  .cn-pr-copy {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .cn-pr-marker {
    font-size: 10px;
    padding: 5px 8px;
    max-width: 70%;
    text-align: left;
  }

  .cn-pr-frame {
    height: clamp(220px, 68vw, 380px);
  }

  .cn-pr-caption {
    left: 12px;
    bottom: 10px;
    letter-spacing: 0.16em;
    font-size: 10px;
  }

  .cn-pr-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cn-process-rail *,
  .cn-process-rail *::before,
  .cn-process-rail *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
