html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Announcement bar */
.announce-bar {
  background: linear-gradient(90deg, #0e0e0e 0%, #1c0e05 40%, #1c0e05 60%, #0e0e0e 100%);
  border-bottom: 1px solid rgba(255, 145, 87, 0.22);
}
@keyframes announceShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
.announce-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,145,87,0.12) 50%, transparent 100%);
  animation: announceShimmer 3.2s ease-in-out infinite;
}
@keyframes announceGlow {
  0%, 100% { box-shadow: 0 1px 12px rgba(255,145,87,0.10); }
  50%       { box-shadow: 0 1px 20px rgba(255,145,87,0.22); }
}
.announce-bar { animation: announceGlow 4s ease-in-out infinite; }
  body { overflow-x: hidden; font-family: 'Inter', system-ui, sans-serif; }
  .material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24; }

  /* Fluid type scale — mobile-safe */
  .h-display { font-size: clamp(2.125rem, 7.2vw, 5.25rem); line-height: 1; letter-spacing: -0.035em; word-break: break-word; overflow-wrap: break-word; }
  .h-section { font-size: clamp(1.75rem, 5vw, 3.5rem); line-height: 1.05; letter-spacing: -0.03em; word-break: break-word; overflow-wrap: break-word; }
  .h-sub { font-size: clamp(1.125rem, 2vw, 1.5rem); line-height: 1.2; letter-spacing: -0.02em; }
  .t-lead { font-size: clamp(0.95rem, 1.5vw, 1.125rem); line-height: 1.65; }
  .t-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }

  .glass-card {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background-color: rgba(26, 25, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .glow-primary { box-shadow: 0 12px 40px rgba(255, 145, 87, 0.25), 0 0 0 1px rgba(255, 145, 87, 0.15) inset; }
  .glow-soft { box-shadow: 0 0 60px rgba(255, 145, 87, 0.08); }

/* Client Command Center */
.cmd-stage {
  position: relative;
  height: 64px;
  margin-bottom: 4px;
  border-radius: 14px;
  overflow: hidden;
}
.cmd-notif-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  /* JS owns all transitions — no CSS transition here */
}
.cmd-icon {
  width: 30px; height: 30px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cmd-text { flex: 1; min-width: 0; }
.cmd-title {
  font-size: 12px; font-weight: 700; color: #fff;
  line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cmd-sub {
  font-size: 10.5px; color: rgba(173,170,170,0.85);
  line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cmd-time {
  font-size: 9px; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(173,170,170,0.6); white-space: nowrap; flex-shrink: 0;
}

  /* Scroll-reveal — transition-based, triggered by IntersectionObserver adding .is-in */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 800ms cubic-bezier(.22,.61,.36,1), transform 800ms cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 700ms cubic-bezier(.22,.61,.36,1), transform 700ms cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
  .reveal-left.is-in { opacity: 1; transform: translateX(0); }
  .reveal-pop { opacity: 0; transform: scale(0.6); transition: opacity 600ms cubic-bezier(.34,1.56,.64,1), transform 600ms cubic-bezier(.34,1.56,.64,1); will-change: opacity, transform; }
  .reveal-pop.is-in { opacity: 1; transform: scale(1); }

  /* Animated timeline line draw */
  .timeline-line { transform-origin: top center; transform: scaleY(0); transition: transform 1600ms cubic-bezier(.22,.61,.36,1); }
  .timeline-line.is-in { transform: scaleY(1); }

  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-pop { opacity: 1 !important; transform: none !important; transition: none !important; }
    .timeline-line { transform: scaleY(1) !important; transition: none !important; }
    .word-reveal .w { opacity: 1 !important; transform: none !important; }
    #cursor-dot, #cursor-ring, #cursor-trail { display: none !important; }
  }

  /* Custom cursor (desktop only) */
  #cursor-dot, #cursor-ring {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    transform: translate3d(-100px, -100px, 0);
    will-change: transform;
    mix-blend-mode: screen;
  }
  #cursor-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255, 145, 87, 1);
    box-shadow: 0 0 14px rgba(255, 145, 87, 0.9), 0 0 30px rgba(255, 145, 87, 0.5);
    transition: width 180ms ease, height 180ms ease, background 180ms ease;
  }
  #cursor-ring {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid rgba(255, 145, 87, 0.55);
    box-shadow: 0 0 20px rgba(255, 145, 87, 0.35);
    transition: width 250ms ease, height 250ms ease, border-color 250ms ease, background-color 250ms ease;
    margin-left: -20px; margin-top: -20px;
  }
  #cursor-dot.is-hover { width: 14px; height: 14px; }
  #cursor-ring.is-hover {
    width: 64px; height: 64px; margin-left: -32px; margin-top: -32px;
    border-color: rgba(255, 145, 87, 0.9);
    background: rgba(255, 145, 87, 0.08);
  }
  @media (hover: none), (pointer: coarse) {
    #cursor-dot, #cursor-ring { display: none !important; }
  }
  body.has-custom-cursor { cursor: none; }
  body.has-custom-cursor a, body.has-custom-cursor button { cursor: none; }

  /* Word-by-word reveal */
  .word-reveal .w {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px) rotateX(-35deg);
    transform-origin: center bottom;
    transition: opacity 620ms cubic-bezier(.22,.61,.36,1), transform 620ms cubic-bezier(.22,.61,.36,1);
    will-change: opacity, transform;
  }
  .word-reveal.is-in .w { opacity: 1; transform: translateY(0) rotateX(0); }

  /* Floating glow orb that follows mouse, section-scoped */
  .ambient-cursor {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
  }
  .ambient-cursor::before {
    content: ''; position: absolute;
    width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,145,87,0.18) 0%, rgba(255,145,87,0.05) 40%, transparent 70%);
    left: var(--mx, 50%); top: var(--my, 50%);
    transform: translate(-50%, -50%);
    transition: left 220ms ease-out, top 220ms ease-out, opacity 300ms;
    opacity: 0;
    filter: blur(12px);
  }
  .ambient-cursor.is-active::before { opacity: 1; }

  /* Timeline premium cards */
  .step-card {
    background-color: rgba(22, 21, 21, 0.92);
    background-image: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0) 60%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 400ms cubic-bezier(.22,.61,.36,1), border-color 400ms, box-shadow 400ms;
  }
  .step-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 145, 87, 0.32);
    box-shadow: 0 10px 50px rgba(0,0,0,0.5), 0 0 60px rgba(255, 145, 87, 0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .step-card-accent {
    background-color: rgba(28, 22, 18, 0.92);
    background-image: linear-gradient(180deg, rgba(255,145,87,0.06), rgba(255,145,87,0) 65%);
    border-color: rgba(255, 145, 87, 0.28);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4), 0 0 60px rgba(255, 145, 87, 0.18), inset 0 1px 0 rgba(255,255,255,0.04);
  }
  .step-card-accent:hover {
    border-color: rgba(255, 145, 87, 0.5);
    box-shadow: 0 10px 50px rgba(0,0,0,0.5), 0 0 80px rgba(255, 145, 87, 0.28), inset 0 1px 0 rgba(255,255,255,0.06);
  }

  /* Button reset for touch */
  button, a { -webkit-tap-highlight-color: transparent; }
  .btn-primary {
    background: linear-gradient(180deg, #FFA06B 0%, #FF7A2C 100%);
    color: #000;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .3s ease;
    box-shadow: 0 10px 30px rgba(255, 145, 87, 0.35);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255, 145, 87, 0.45); }
  .btn-primary:active { transform: translateY(0); }

  .btn-ghost {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    transition: all .2s ease;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,145,87,0.4); }

  /* Animations */
  @keyframes activityFade {
    0%, 8% { opacity: 0; transform: translateY(8px); }
    14%, 86% { opacity: 1; transform: translateY(0); }
    92%, 100% { opacity: 0; transform: translateY(-4px); }
  }
  .activity-item { animation: activityFade 9s infinite ease-in-out; }
  .activity-item:nth-child(1) { animation-delay: 0s; }
  .activity-item:nth-child(2) { animation-delay: 0.8s; }
  .activity-item:nth-child(3) { animation-delay: 1.6s; }

  @keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
  }
  .pulse-dot { animation: pulseDot 2s infinite; }

  /* Timeline connector */
  .connector-h { height: 2px; background: linear-gradient(90deg, rgba(255,145,87,0.6), rgba(255,145,87,0.1)); flex: 1; }
  .connector-v { width: 2px; background: linear-gradient(180deg, rgba(255,145,87,0.6), rgba(255,145,87,0.1)); height: 24px; }

  /* Hide scrollbars in the kanban scroll */
  .scroll-soft::-webkit-scrollbar { height: 6px; }
  .scroll-soft::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 9999px; }

  /* Section helpers — larger vertical rhythm on mobile */
  .section-y { padding-block: clamp(4.5rem, 9vw, 8rem); }
  .section-x { padding-inline: clamp(1.25rem, 4vw, 3rem); }


/* ===== Qualification Wizard Modal ===== */
.wiz-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity 280ms ease;
}
.wiz-overlay.is-open { opacity: 1; pointer-events: auto; }
body.wiz-locked { overflow: hidden; }

.wiz-modal {
  position: relative;
  width: 100%; max-width: 640px;
  max-height: calc(100vh - 32px);
  background: linear-gradient(180deg, #181615 0%, #121110 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 80px rgba(255,145,87,0.12), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 380ms cubic-bezier(.22,.61,.36,1), opacity 280ms ease;
}
.wiz-overlay.is-open .wiz-modal { transform: translateY(0) scale(1); opacity: 1; }
.wiz-modal.is-wide { max-width: 880px; }

.wiz-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  transition: background .2s, transform .2s;
}
.wiz-close:hover { background: rgba(255,255,255,0.12); transform: rotate(90deg); }
.wiz-close .material-symbols-outlined { font-size: 20px; }

.wiz-progress {
  height: 3px; background: rgba(255,255,255,0.06);
  position: relative;
}
.wiz-progress-bar {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #FFA06B, #FF7A2C);
  box-shadow: 0 0 14px rgba(255,145,87,0.6);
  transition: width 420ms cubic-bezier(.22,.61,.36,1);
}

.wiz-body {
  padding: 44px 36px 32px;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 560px) {
  .wiz-body { padding: 36px 22px 24px; }
  .wiz-modal { border-radius: 22px; }
}

.wiz-step { display: none; animation: wizIn 380ms cubic-bezier(.22,.61,.36,1); }
.wiz-step.is-active { display: block; }
@keyframes wizIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.wiz-step-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #FF9157;
  margin-bottom: 14px;
}
.wiz-q {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
  text-wrap: pretty;
}
.wiz-q-sm { font-size: clamp(1.15rem, 2.4vw, 1.45rem); }
.wiz-sub {
  color: #ADAAAA;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 52ch;
}

.wiz-input {
  width: 100%;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  color: #111;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  margin-bottom: 12px;
}
.wiz-input::placeholder { color: rgba(0,0,0,0.4); }
.wiz-input:-webkit-autofill,
.wiz-input:-webkit-autofill:hover,
.wiz-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.88) inset;
  -webkit-text-fill-color: #111;
  border-color: rgba(255,255,255,0.12);
}
.wiz-input:focus {
  border-color: rgba(255,145,87,0.7);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 4px rgba(255,145,87,0.15);
}
.wiz-input.is-error {
  border-color: rgba(244,93,93,0.7);
  box-shadow: 0 0 0 4px rgba(244,93,93,0.12);
}
.wiz-textarea { min-height: 110px; resize: vertical; }
.wiz-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 12px;
}
.wiz-grid .wiz-input { margin-bottom: 0; }
@media (max-width: 480px) {
  .wiz-grid { grid-template-columns: 1fr; }
}

.wiz-choices {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 20px;
}
.wiz-choices-2 { grid-template-columns: 1fr 1fr; display: grid; }
.wiz-choice {
  width: 100%; text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .18s ease;
}
.wiz-choice.is-selected {
  border-color: rgba(255,145,87,0.85);
  background: rgba(255,145,87,0.14);
  color: #FF9157;
}
.wiz-choice.is-selected::after {
  content: "✓"; float: right; font-weight: 800; color: #FF9157;
}
.wiz-choice:hover {
  border-color: rgba(255,145,87,0.55);
  background: rgba(255,145,87,0.08);
  transform: translateY(-1px);
}
.wiz-choices-2 .wiz-choice {
  text-align: center; padding: 22px 12px; font-size: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.wiz-actions {
  display: flex; gap: 10px; justify-content: space-between;
  margin-top: 8px; flex-wrap: wrap;
}
.wiz-actions-center { justify-content: center; }
.wiz-actions .btn-primary, .wiz-actions .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  cursor: pointer;
  font-family: inherit;
}
.wiz-actions .btn-ghost {
  text-transform: uppercase; font-weight: 800;
}
.wiz-actions .material-symbols-outlined { font-size: 18px; }

.wiz-error {
  background: rgba(244,93,93,0.10);
  border: 1px solid rgba(244,93,93,0.35);
  color: #ffb4b4;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-top: 14px;
}

.wiz-terminal { text-align: center; padding-top: 8px; }
.wiz-terminal-wide { text-align: left; }
.wiz-icon {
  width: 72px; height: 72px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.wiz-icon-good {
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4);
  color: #4ade80;
  box-shadow: 0 0 30px rgba(34,197,94,0.25);
}
.wiz-icon-good .material-symbols-outlined { font-size: 36px; font-variation-settings: 'FILL' 1, 'wght' 600; }
.wiz-icon-bad {
  background: rgba(244,93,93,0.10); border: 1px solid rgba(244,93,93,0.4);
  color: #ff7e7e;
  box-shadow: 0 0 30px rgba(244,93,93,0.18);
}
.wiz-icon-bad .material-symbols-outlined { font-size: 36px; }
.wiz-icon-loading {
  background: rgba(255,145,87,0.10); border: 1px solid rgba(255,145,87,0.35);
}
.wiz-spinner {
  display: inline-block; width: 28px; height: 28px;
  border: 3px solid rgba(255,145,87,0.25);
  border-top-color: #FF9157;
  border-radius: 50%;
  animation: wizSpin 0.8s linear infinite;
}
@keyframes wizSpin { to { transform: rotate(360deg); } }

.wiz-success-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
  text-align: left;
}
.wiz-success-head .wiz-icon { margin: 0; flex-shrink: 0; width: 56px; height: 56px; }
.wiz-success-head .wiz-icon .material-symbols-outlined { font-size: 28px; }
.wiz-success-head .wiz-sub { margin-bottom: 0; }
.wiz-calendar {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.wiz-calendar iframe { display: block; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .wiz-overlay, .wiz-modal, .wiz-step, .wiz-spinner { transition: none !important; animation: none !important; }
}


/* ===== Wizard cursor & polish fixes ===== */
/* Restore native cursor when the wizard is open */
body.wiz-locked,
body.wiz-locked a,
body.wiz-locked button,
body.wiz-locked input,
body.wiz-locked textarea,
body.wiz-locked .wiz-choice,
body.wiz-locked .wiz-close {
  cursor: auto !important;
}
body.wiz-locked a,
body.wiz-locked button,
body.wiz-locked .wiz-choice,
body.wiz-locked .wiz-close,
body.wiz-locked [data-back],
body.wiz-locked [data-next],
body.wiz-locked [data-submit],
body.wiz-locked [data-wiz-close] {
  cursor: pointer !important;
}
body.wiz-locked input,
body.wiz-locked textarea {
  cursor: text !important;
}
/* Hide the custom orange cursor entirely while the wizard is open */
body.wiz-locked #cursor-dot,
body.wiz-locked #cursor-ring {
  display: none !important;
}

/* Mobile polish: smoother wizard scrolling and fit-on-screen */
@media (max-width: 560px) {
  .wiz-overlay { padding: 10px; align-items: flex-start; padding-top: 24px; }
  .wiz-modal { max-height: calc(100vh - 24px); }
  .wiz-body { padding: 32px 20px 22px; }
  .wiz-q { font-size: 1.25rem; }
  .wiz-sub { font-size: 13px; margin-bottom: 18px; }
  .wiz-actions { gap: 8px; }
  .wiz-actions .btn-primary, .wiz-actions .btn-ghost {
    padding: 12px 16px; font-size: 11px; flex: 1; justify-content: center;
  }
  .wiz-choice { padding: 14px 16px; font-size: 14px; }
  .wiz-choices-2 .wiz-choice { padding: 18px 10px; font-size: 14px; }
  .wiz-success-head { flex-direction: column; text-align: center; gap: 12px; }
  .wiz-success-head .wiz-icon { margin: 0 auto; }
  .wiz-calendar iframe { min-height: 640px; }
}

/* Smooth scroll inside modal on iOS */
.wiz-body { -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }

/* Reduce ambient-cursor cost on mobile */
@media (max-width: 768px) {
  .ambient-cursor::before { display: none; }
}

/* ===== Proof Carousel ===== */
.proof-carousel { max-width: 640px; margin-inline: auto; }
.proof-track-wrap { overflow: hidden; border-radius: 1.5rem; }
.proof-track {
  display: flex;
  transition: transform 480ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.proof-slide {
  flex: 0 0 100%;
  width: 100%;
}

/* Dots */
.proof-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none; cursor: pointer; padding: 0;
  transition: background 250ms, transform 250ms, width 250ms;
}
.proof-dot.is-active {
  background: #FF9157;
  width: 24px; border-radius: 4px;
  box-shadow: 0 0 10px rgba(255,145,87,0.6);
}
.proof-dot:hover:not(.is-active) { background: rgba(255,255,255,0.4); }

/* Swipe hint on touch devices — subtle fade on edges */
@media (max-width: 768px) {
  .proof-carousel { max-width: 100%; }
}
