/* ================================================================
   QUALZY — Video Collection & Analysis Page Styles
   All styles specific to features/video.html
   ================================================================ */


/* HERO
   ---------------------------------------------------------------- */
.vid-hero {
  padding-top: 64px; /* nav height offset */
  background: var(--wh);
  position: relative;
  overflow: hidden;
}

.vh-blob1 {
  position: absolute;
  top: -180px; right: -180px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: var(--op);
  z-index: 0;
}

.vh-blob1::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  background: var(--om);
}

.vh-blob2 {
  position: absolute;
  bottom: 40px; left: -100px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--op);
  z-index: 0;
}

.vh-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.vh-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 48px 88px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vh-back {
  font-size: 13px;
  font-weight: 500;
  color: var(--mu);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 28px;
  align-self: flex-start;
  transition: color var(--t-base);
}

.vh-back:hover { color: var(--o); }

.vh-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 86px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--dk);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.vh-inner h1 em {
  font-style: italic;
  color: var(--o);
}

.vh-sub {
  font-size: 19px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 600px;
  font-weight: 300;
}

.vh-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}


/* VIDEO PIPELINE — dark section
   ---------------------------------------------------------------- */
.vid-pipe {
  background: var(--dk);
  padding: 100px 80px;
}

.vp-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vp-head {
  text-align: center;
  margin-bottom: 80px;
}

.vp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.vp-step {
  display: grid;
  grid-template-columns: 56px 56px 1fr;
  gap: 28px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: background var(--t-base), border-color var(--t-base);
}

.vp-step:hover {
  background: rgba(232, 97, 44, 0.06);
  border-color: rgba(232, 97, 44, 0.22);
}

.vp-conn {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(232, 97, 44, 0.3), rgba(232, 97, 44, 0.1));
  margin: 0 auto;
  position: relative;
  left: calc(32px + 28px + 28px); /* align under the step number */
}

.vp-step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--o);
  opacity: 0.6;
  padding-top: 2px;
  letter-spacing: 0.05em;
}

.vp-step-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(232, 97, 44, 0.12);
  border: 1px solid rgba(232, 97, 44, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base);
}

.vp-step:hover .vp-step-icon {
  background: rgba(232, 97, 44, 0.2);
}

.vp-step-icon svg {
  width: 22px; height: 22px;
  stroke: var(--o);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vp-step-body { padding-top: 2px; }

.vp-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.vp-step-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
  font-weight: 300;
}


/* TRANSCRIPTION & TRANSLATION — light section
   ---------------------------------------------------------------- */
.vid-trans { background: var(--wh); }

.vt-head {
  text-align: center;
  margin-bottom: 72px;
}

.vt-head .sbod {
  margin: 0 auto;
}

.vt-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: start;
}

.vt-divider {
  background: var(--rule);
  align-self: stretch;
}

.vt-col-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--op);
  border: 1px solid rgba(232, 97, 44, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vt-col-icon svg {
  width: 24px; height: 24px;
  stroke: var(--o);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vt-col-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 14px;
  line-height: 1.2;
}

.vt-col-body {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

.vt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vt-tag {
  background: var(--op);
  color: var(--o);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  border: 1px solid rgba(232, 97, 44, 0.22);
}


/* Platform screenshot
   ---------------------------------------------------------------- */
.vt-screenshot {
  background: transparent;
}

.vt-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow:
    0 32px 80px rgba(232, 97, 44, 0.18),
    0 8px 32px rgba(0, 0, 0, 0.10);
}


/* Transcript mockup (kept for reference)
   ---------------------------------------------------------------- */
.vt-mock {
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.07);
}

.vt-mock-head {
  padding: 16px 22px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.vt-mock-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dk);
}

.vt-mock-title svg {
  width: 16px; height: 16px;
  stroke: var(--o);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vt-mock-pills {
  display: flex;
  gap: 6px;
}

.vt-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--rule);
  color: var(--mu);
  cursor: pointer;
}

.vt-pill-act {
  background: var(--o);
  border-color: var(--o);
  color: #fff;
}

.vt-mock-body {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.vt-mock-video {
  padding: 20px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vt-vid-thumb {
  background: var(--dk);
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-vid-thumb svg {
  width: 36px; height: 36px;
  fill: rgba(255, 255, 255, 0.7);
  stroke: none;
}

.vt-vid-bar {
  height: 4px;
  background: var(--rule);
  border-radius: 100px;
  overflow: hidden;
}

.vt-vid-prog {
  height: 100%;
  width: 36%;
  background: var(--o);
  border-radius: 100px;
}

.vt-vid-time {
  font-size: 11px;
  color: var(--mu);
  text-align: right;
}

.vt-mock-transcript {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vt-ts-line {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
}

.vt-ts-line:hover { background: var(--op); }

.vt-ts-active {
  background: rgba(232, 97, 44, 0.06);
  border: 1px solid rgba(232, 97, 44, 0.18);
}

.vt-ts-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--o);
  flex-shrink: 0;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}

.vt-ts-text {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
}

.vt-ts-hl {
  color: var(--dk);
  font-weight: 500;
}

.vt-ts-clip-btn {
  flex-shrink: 0;
  background: var(--o);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 2px;
  white-space: nowrap;
}


/* AI KEY POINTS — dark section
   ---------------------------------------------------------------- */
.vid-kp {
  background: var(--dk);
  padding: 100px 80px;
}

.vk-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vk-head {
  text-align: center;
  margin-bottom: 80px;
}

.vk-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.vk-explain-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 28px;
}

.vk-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vk-feat:last-of-type { border-bottom: none; }

.vk-feat-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232, 97, 44, 0.12);
  border: 1px solid rgba(232, 97, 44, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vk-feat-icon svg {
  width: 20px; height: 20px;
  stroke: var(--o);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vk-feat-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.vk-feat-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  font-weight: 300;
}

/* Before/after contrast panel */
.vk-contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 24px;
}

.vk-con-col { display: flex; flex-direction: column; gap: 8px; }

.vk-con-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vk-con-before .vk-con-label { color: rgba(255, 255, 255, 0.3); }
.vk-con-after  .vk-con-label { color: var(--o); }

.vk-con-col p {
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
}

.vk-con-before p { color: rgba(255, 255, 255, 0.35); }
.vk-con-after  p { color: rgba(255, 255, 255, 0.68); }

.vk-con-arrow {
  font-size: 22px;
  color: var(--o);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Key points mockup */
.vk-mock {
  background: #1A1917;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.vk-mock-head {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.vk-mock-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.vk-mock-badge {
  background: rgba(232, 97, 44, 0.15);
  border: 1px solid rgba(232, 97, 44, 0.28);
  color: var(--o);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.vk-kp-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.vk-kp-item:last-of-type { border-bottom: none; }

.vk-kp-summary {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 20px;
  transition: color var(--t-base);
  line-height: 1.4;
}

.vk-kp-item:hover .vk-kp-summary { color: #fff; }
.vk-kp-open .vk-kp-summary { color: #fff; }

.vk-kp-verbs {
  padding: 0 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vk-kp-hidden { display: none; }

.vk-kp-verb {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 11px 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.vk-kp-verb-act {
  background: rgba(232, 97, 44, 0.08);
  border: 1px solid rgba(232, 97, 44, 0.2);
}

.vk-kp-ts {
  font-size: 10px;
  font-weight: 700;
  color: var(--o);
  flex-shrink: 0;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}

.vk-kp-quote {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  flex: 1;
  font-style: italic;
}

.vk-clip-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(232, 97, 44, 0.35);
  color: var(--o);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 1px;
  transition: all var(--t-fast);
  white-space: nowrap;
}

.vk-clip-btn:hover {
  background: var(--o);
  color: #fff;
  border-color: var(--o);
}

.vk-mock-footer {
  background: rgba(232, 97, 44, 0.07);
  border-top: 1px solid rgba(232, 97, 44, 0.15);
  padding: 13px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--o);
  cursor: pointer;
  transition: background var(--t-base);
}

.vk-mock-footer:hover { background: rgba(232, 97, 44, 0.12); }


/* CLIP REEL CREATOR — orange-tinted section
   ---------------------------------------------------------------- */
.vid-reel { background: var(--op); }

.vr-head {
  text-align: center;
  margin-bottom: 72px;
}

.vr-head .sbod { margin: 0 auto; }

.vr-screenshot {
  margin-bottom: 60px;
}

.vr-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 32px 80px rgba(232, 97, 44, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.10);
}

.vr-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
}

.vr-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.vr-feat-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--om);
  border: 1px solid rgba(232, 97, 44, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vr-feat-icon svg {
  width: 22px; height: 22px;
  stroke: var(--o);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vr-feat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 6px;
}

.vr-feat-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
}

/* Reel editor mockup */
.vr-mock {
  background: var(--dk);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.vr-mock-head {
  background: #161614;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vr-mock-hl {
  font-size: 13px;
  font-weight: 700;
  color: var(--o);
  margin-bottom: 2px;
}

.vr-mock-proj {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

/* Timeline */
.vr-tl { padding: 20px 22px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.vr-tl-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.vr-tl-track {
  position: relative;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 7px;
  overflow: hidden;
  display: flex;
}

.vr-tl-title-slide {
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-right: 2px solid #1A1917;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 8%;
}

.vr-clip {
  height: 100%;
  border-right: 2px solid #1A1917;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
}

.vc1 { background: rgba(33, 150, 243, 0.5);  width: 14%; }
.vc2 { background: rgba(232, 97, 44, 0.5);   width: 9%; }
.vc3 { background: rgba(76, 175, 80, 0.5);   width: 12%; }
.vc4 { background: rgba(156, 39, 176, 0.5);  width: 18%; }
.vc5 { background: rgba(255, 193, 7, 0.4);   width: 10%; }

.vr-ph {
  position: absolute;
  top: 0; bottom: 0;
  left: 62%;
  width: 2px;
  background: #fff;
  pointer-events: none;
}

.vr-ph::before {
  content: '';
  position: absolute;
  top: 0; left: -4px;
  border: 5px solid transparent;
  border-top-color: #fff;
}

/* Sections list */
.vr-sections { padding: 16px 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.vr-sect-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.vr-sect-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 7px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: background var(--t-fast);
}

.vr-sect-row:hover { background: rgba(255, 255, 255, 0.06); }

.vr-sect-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}

.vr-sect-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
}

.vr-sect-dur {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-variant-numeric: tabular-nums;
}

/* Clip meta chips */
.vr-meta {
  padding: 12px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.vr-meta-chip {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  padding: 3px 10px;
}

/* Export button */
.vr-export {
  margin: 16px 22px 22px;
  background: var(--o);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background var(--t-base);
}

.vr-export:hover { background: var(--ol); }

.vr-export-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.vr-export-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.vr-export-arrow {
  font-size: 22px;
  color: #fff;
}


/* VIDEO IN CONTEXT — light section
   ---------------------------------------------------------------- */
.vid-ctx { background: #fff; }

.vc-head {
  margin-bottom: 64px;
}

.vc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}

.vc-card {
  background: var(--wh);
  padding: 36px 32px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: background var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.vc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--o);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.vc-card:hover { background: var(--op); border-color: rgba(232, 97, 44, 0.18); }
.vc-card:hover::after { transform: scaleX(1); }

.vc-card-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--op);
  border: 1px solid rgba(232, 97, 44, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.vc-card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--o);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vc-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 10px;
  line-height: 1.3;
}

.vc-card-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  font-weight: 300;
}

/* Bridge panel to IDIs page */
.vc-bridge {
  background: var(--op);
  border: 1.5px solid rgba(232, 97, 44, 0.22);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.vc-bridge-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--om);
  border: 1px solid rgba(232, 97, 44, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-bridge-icon svg {
  width: 26px; height: 26px;
  stroke: var(--o);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vc-bridge-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 8px;
}

.vc-bridge-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 14px;
}

.vc-bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--o);
  text-decoration: none;
  transition: gap var(--t-base);
}

.vc-bridge-link:hover { gap: 8px; }


/* WHY IT MATTERS — dark section
   ---------------------------------------------------------------- */
.vid-why {
  background: var(--dk);
  padding: 100px 80px;
}

.vw-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vw-head {
  text-align: center;
  margin-bottom: 80px;
}

.vw-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}

.vw-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 44px 36px;
  text-align: center;
  transition: background var(--t-base), border-color var(--t-base);
}

.vw-stat:hover {
  background: rgba(232, 97, 44, 0.07);
  border-color: rgba(232, 97, 44, 0.2);
}

.vw-stat-num {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: var(--o);
  line-height: 1;
  margin-bottom: 18px;
}

.vw-stat-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
  font-weight: 300;
}

/* Testimonial */
.vw-testimonial {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.vw-quote {
  border-left: none;
  padding: 0;
}

.vw-quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
  margin-bottom: 20px;
}

.vw-quote footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  padding: 0;
  border: none;
  position: static;
  justify-content: center;
}

.vw-cite-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-style: normal;
  display: block;
}

.vw-cite-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}


/* ANIMATED KEY POINTS DEMO — shared component from Proactive AI
   ---------------------------------------------------------------- */

@keyframes kpd-tr-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-55%); }
}

.kpd-stage.kpd-active .kpd-tr-scroll {
  animation: kpd-tr-scroll 5s linear forwards;
}

.kp-demo {
  position: relative;
  height: 480px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 0 var(--rule), 0 8px 40px rgba(0,0,0,.08);
  overflow: hidden;
  border: 1px solid var(--rule);
}

.kpd-stage {
  position: absolute;
  inset: 0 0 52px 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.kpd-stage.kpd-active {
  opacity: 1;
}

.kpd-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 0 20px;
  background: var(--o);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
  z-index: 10;
}

.kpd-foot-txt {
  transition: opacity 0.25s ease;
}

.kpd-s1 {
  display: flex;
  flex-direction: column;
}

.kpd-tr {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 20px 28px 0;
}

.kpd-tr-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 12px;
  flex-shrink: 0;
}

.kpd-tr-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--dk);
}

.kpd-tr-wc {
  font-size: 11px;
  color: var(--mu);
  background: #f0efec;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
}

.kpd-tr-body {
  flex: 1;
  font-size: 11.5px;
  line-height: 1.75;
  color: #444;
  overflow: hidden;
  position: relative;
}

.kpd-tr-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(#fff, transparent);
  pointer-events: none;
  z-index: 1;
}

.kpd-tr-body::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

.kpd-s2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafaf8;
}

.kpd-proc {
  text-align: center;
  width: 300px;
}

.kpd-proc-icon {
  width: 48px;
  height: 48px;
  background: var(--op);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--o);
}

.kpd-proc-icon svg {
  width: 22px;
  height: 22px;
}

.kpd-proc-lbl {
  font-size: 15px;
  font-weight: 600;
  color: var(--dk);
  margin-bottom: 20px;
}

.kpd-proc-track {
  height: 4px;
  background: var(--rule);
  border-radius: 4px;
  overflow: hidden;
}

.kpd-proc-fill {
  height: 100%;
  width: 0%;
  background: var(--o);
  border-radius: 4px;
}

.kpd-s3 {
  padding: 20px 24px 20px;
  display: flex;
  flex-direction: column;
}

.kpd-s3-hd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.kpd-s3-count {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--o);
}

.kpd-s3-src {
  font-size: 11px;
  color: var(--mu);
}

.kpd-kp-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}

.kpd-kp {
  border: 1.5px solid var(--rule);
  border-radius: 9px;
  padding: 10px 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.3s, box-shadow 0.3s;
  background: #fff;
}

.kpd-kp.kpd-kp-in {
  opacity: 1;
  transform: translateY(0);
}

.kpd-kp.kpd-kp-active {
  border-color: var(--o);
  box-shadow: 0 2px 14px rgba(250,88,2,.13);
}

.kpd-kp-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kpd-kp-n {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--op);
  color: var(--o);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.kpd-kp-active .kpd-kp-n {
  background: var(--o);
  color: #fff;
}

.kpd-kp-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dk);
  line-height: 1.35;
}

.kpd-kp-body {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--mid);
  padding-left: 32px;
  margin-top: 5px;
  max-height: 40px;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.35s ease, opacity 0.3s ease;
  opacity: 1;
}

.kpd-kp.kpd-kp-condensed .kpd-kp-body {
  max-height: 0;
  margin-top: 0;
  opacity: 0;
}

.kpd-vbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.kpd-vbs.kpd-vbs-open {
  max-height: 240px;
  margin-top: 10px;
}

.kpd-vb {
  display: flex;
  gap: 10px;
  background: #f5f4f1;
  border-radius: 7px;
  padding: 9px 11px;
  border-left: 3px solid var(--o);
}

.kpd-vb-thumb {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--o);
}

.kpd-vb-thumb svg {
  width: 28px;
  height: 28px;
}

.kpd-vb-body {
  flex: 1;
  min-width: 0;
}

.kpd-vb-hd {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--dk);
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.kpd-vb-time {
  font-weight: 500;
  color: var(--mu);
  font-size: 10.5px;
  margin-left: auto;
  letter-spacing: .02em;
}

.kpd-vb-quote {
  font-size: 11px;
  color: #4a4946;
  line-height: 1.55;
  font-style: italic;
}


/* RESPONSIVE — VIDEO PAGE
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .vid-pipe  { padding: 60px 24px; }
  .vid-kp    { padding: 60px 24px; }
  .vid-why   { padding: 60px 24px; }

  .vh-inner  { padding: 48px 24px 72px; }

  .vh-back   { align-self: center; }

  .vt-cols { grid-template-columns: 1fr; gap: 40px; }
  .vt-divider { display: none; }

  .vt-mock-body { grid-template-columns: 1fr; }
  .vt-mock-video { border-right: none; border-bottom: 1px solid var(--rule); }

  .vk-grid { grid-template-columns: 1fr; gap: 48px; }
  .vr-features { grid-template-columns: 1fr; gap: 20px; }

  .vc-grid { grid-template-columns: 1fr; }

  .vw-stats { grid-template-columns: 1fr; }

  .vp-steps { gap: 0; }
  .vp-step  { grid-template-columns: 40px 44px 1fr; gap: 14px; padding: 24px 18px; }
  .vp-conn  { left: calc(18px + 14px + 20px); }

  .vk-contrast { grid-template-columns: 1fr; gap: 14px; }
  .vk-con-arrow { text-align: center; transform: rotate(90deg); }

  .vc-bridge { flex-direction: column; }
}
