:root {
  --bg: #fff;
  --bg-subtle: #f8f9fc;
  --card-bg: #fff;
  --card-border: #e2e5ee;
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --text: #1a1d2b;
  --text-sec: #5a5f78;
  --text-muted: #9498ae;
  --coral: #ff5a3c;
  --magenta: #d63384;
  --violet: #7c3aed;
  --indigo: #4f46e5;
  --blue: #2563eb;
  --teal: #0d9488;
  --emerald: #059669;
  --amber: #d97706;
  --g-ingest: linear-gradient(135deg, #ff5a3c, #d63384);
  --g-privacy: linear-gradient(135deg, #d97706, #059669);
  --g-analyze: linear-gradient(135deg, #7c3aed, #4f46e5);
  --g-assess: linear-gradient(135deg, #d63384, #ff5a3c);
  --g-detoken: linear-gradient(135deg, #059669, #d97706);
  --g-act: linear-gradient(135deg, #0d9488, #2563eb);
  --g-manage: linear-gradient(135deg, #4f46e5, #7c3aed)
}

/* Removed global resets to prevent theme breakage */

.cy-sec-ops-container {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  overflow-x: hidden;
  padding: 50px 24px;
  position: relative;

  /* Hidden until scrolled into view */
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Revealed by IntersectionObserver */
.cy-sec-ops-container.cw-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* Reduced motion: show immediately */
@media (prefers-reduced-motion: reduce) {
  .cy-sec-ops-container {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
  }
}

.cy-sec-ops-container::before {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 15% 25%, rgba(127, 63, 237, .04) 0%, transparent 45%), radial-gradient(circle at 85% 75%, rgba(13, 148, 136, .04) 0%, transparent 45%);
  pointer-events: none
}

.cy-sec-ops-container::after {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, .035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none
}

.cy-sec-header {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-animation: fadeSlideDown .8s ease forwards;
  animation: fadeSlideDown .8s ease forwards
}

.cy-sec-badge {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.cy-sec-badge .cy-sec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  -webkit-animation: statusPulse 2s ease infinite;
  animation: statusPulse 2s ease infinite
}

.cy-sec-ops-container h1 {
  font-size: 36px;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15
}

.cy-sec-ops-container h1 span {
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent
}

.cy-sec-subtitle {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--text-sec);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55
}

.cy-sec-status-bar {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  opacity: 0;
  -webkit-animation: fadeIn .5s ease .4s forwards;
  animation: fadeIn .5s ease .4s forwards;
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 8px 18px
}

.cy-sec-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  -webkit-animation: statusPulse 2s ease infinite;
  animation: statusPulse 2s ease infinite
}

.cy-sec-status-text {
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--text-muted);
  letter-spacing: .04em
}

.cy-sec-status-text .cy-sec-phase {
  color: var(--text);
  font-weight: 500
}

.cy-sec-workflow-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px
}

.cy-sec-workflow {
  display: grid;
  grid-template-columns: 90px 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
  gap: 0;
  -webkit-align-items: start;
  align-items: start;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.cy-sec-sources {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 7px
}

.cy-sec-source-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 3px;
  padding-left: 4px;
  opacity: 0
}

.cy-sec-source-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 3px solid;
  border-radius: 9px;
  padding: 7px 8px;
  font-weight: 600;
  font-size: 11px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  opacity: 0;
  -webkit-transform: translateX(-25px);
  transform: translateX(-25px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  -webkit-transition: box-shadow .3s;
  transition: box-shadow .3s
}

.cy-sec-source-item.cy-sec-active {
  box-shadow: 0 2px 16px rgba(0, 0, 0, .1)
}

.cy-sec-source-item .cy-sec-icon-wrap {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 10px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0
}

.cy-sec-source-item:nth-child(2) {
  border-left-color: var(--coral)
}

.cy-sec-source-item:nth-child(2) .cy-sec-icon-wrap {
  background: rgba(255, 90, 60, .1);
  color: var(--coral)
}

.cy-sec-source-item:nth-child(3) {
  border-left-color: var(--magenta)
}

.cy-sec-source-item:nth-child(3) .cy-sec-icon-wrap {
  background: rgba(214, 51, 132, .1);
  color: var(--magenta)
}

.cy-sec-source-item:nth-child(4) {
  border-left-color: var(--violet)
}

.cy-sec-source-item:nth-child(4) .cy-sec-icon-wrap {
  background: rgba(124, 58, 237, .1);
  color: var(--violet)
}

.cy-sec-source-item:nth-child(5) {
  border-left-color: var(--indigo)
}

.cy-sec-source-item:nth-child(5) .cy-sec-icon-wrap {
  background: rgba(79, 70, 229, .1);
  color: var(--indigo)
}

.cy-sec-source-item:nth-child(6) {
  border-left-color: var(--blue)
}

.cy-sec-source-item:nth-child(6) .cy-sec-icon-wrap {
  background: rgba(37, 99, 235, .1);
  color: var(--blue)
}

.cy-sec-source-item:nth-child(7) {
  border-left-color: var(--teal)
}

.cy-sec-source-item:nth-child(7) .cy-sec-icon-wrap {
  background: rgba(13, 148, 136, .1);
  color: var(--teal)
}

.cy-sec-pulse-ring {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: 9px;
  border: 2px solid var(--coral);
  opacity: 0;
  pointer-events: none
}

.cy-sec-source-item.cy-sec-firing .cy-sec-pulse-ring {
  -webkit-animation: pulseOut .8s ease-out;
  animation: pulseOut .8s ease-out
}

.cy-sec-connector {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-self: center;
  align-self: center;
  position: relative;
  height: 24px;
  width: 24px;
  opacity: 0
}

.cy-sec-conn-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 8px;
  height: 2px;
  background: var(--card-border);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 1px;
  overflow: hidden
}

.cy-sec-conn-line .cy-sec-fill {
  height: 100%;
  width: 0;
  border-radius: 1px;
  -webkit-transition: width .6s ease;
  transition: width .6s ease
}

.cy-sec-connector.cy-sec-active .cy-sec-conn-line .cy-sec-fill {
  width: 100%
}

.cy-sec-conn-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid var(--card-border);
  -webkit-transition: border-left-color .4s;
  transition: border-left-color .4s
}

.cy-sec-conn-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0
}

.cy-sec-connector.cy-sec-active .cy-sec-conn-dot {
  -webkit-animation: dotTravel 1.2s ease-in-out infinite;
  animation: dotTravel 1.2s ease-in-out infinite
}

.cy-sec-connector.cy-sec-active .cy-sec-conn-dot:nth-child(4) {
  animation-delay: .4s
}

.cy-sec-connector.cy-sec-active .cy-sec-conn-dot:nth-child(5) {
  animation-delay: .8s
}

.cy-sec-v-connector {
  display: none;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  padding: 6px 0;
  opacity: 0
}

.cy-sec-v-connector .cy-sec-v-line {
  width: 2px;
  height: 24px;
  background: var(--card-border);
  border-radius: 1px;
  overflow: hidden;
  position: relative
}

.cy-sec-v-connector .cy-sec-v-line .cy-sec-fill {
  width: 100%;
  height: 0;
  border-radius: 1px;
  -webkit-transition: height .6s ease;
  transition: height .6s ease
}

.cy-sec-v-connector.cy-sec-active .cy-sec-v-line .cy-sec-fill {
  height: 100%
}

.cy-sec-v-connector .cy-sec-v-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid var(--card-border);
  -webkit-transition: border-top-color .4s;
  transition: border-top-color .4s
}

.cy-sec-stage-column {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  min-width: 0
}

.cy-sec-stage-card {
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  position: relative;
  box-shadow: var(--card-shadow);
  -webkit-transition: box-shadow .4s;
  transition: box-shadow .4s
}

.cy-sec-stage-card.cy-sec-revealed {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08)
}

.cy-sec-stage-header {
  padding: 10px 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 700;
  font-size: 11.5px;
  color: #fff;
  letter-spacing: .01em;
  gap: 3px;
  border-radius: 12px 12px 0 0
}

.cy-sec-stage-header .cy-sec-left {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.cy-sec-stage-header .cy-sec-gear {
  font-size: 12px;
  opacity: .85
}

.cy-sec-stage-header .cy-sec-chevron {
  font-size: 13px;
  opacity: .6;
  -webkit-flex-shrink: 0;
  flex-shrink: 0
}

.cy-sec-ingest-stage .cy-sec-stage-header {
  background: var(--g-ingest)
}

.cy-sec-privacy-stage .cy-sec-stage-header {
  background: var(--g-privacy)
}

.cy-sec-analyze-stage .cy-sec-stage-header {
  background: var(--g-analyze)
}

.cy-sec-assess-stage .cy-sec-stage-header {
  background: var(--g-assess)
}

.cy-sec-detoken-stage .cy-sec-stage-header {
  background: var(--g-detoken)
}

.cy-sec-act-stage .cy-sec-stage-header {
  background: var(--g-act)
}

.cy-sec-stage-body {
  padding: 4px 6px 6px;
  overflow: hidden;
  border-radius: 0 0 12px 12px
}

.cy-sec-check-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-sec);
  -webkit-transition: background .3s, color .3s;
  transition: background .3s, color .3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.cy-sec-check-item.cy-sec-processing {
  background: rgba(79, 70, 229, .04);
  color: var(--text)
}

.cy-sec-check-item.cy-sec-done-state {
  color: var(--text)
}

.cy-sec-check-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 8px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  background: var(--bg-subtle);
  border: 1px solid var(--card-border);
  color: transparent;
  -webkit-transition: all .4s ease;
  transition: all .4s ease
}

.cy-sec-check-icon.cy-sec-done {
  background: rgba(5, 150, 105, .1);
  border-color: rgba(5, 150, 105, .3);
  color: var(--emerald)
}

.cy-sec-check-item .cy-sec-progress-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  border-radius: 1px;
  -webkit-transition: width .5s ease;
  transition: width .5s ease
}

.cy-sec-ingest-stage .cy-sec-progress-bar {
  background: var(--g-ingest)
}

.cy-sec-privacy-stage .cy-sec-progress-bar {
  background: var(--g-privacy)
}

.cy-sec-analyze-stage .cy-sec-progress-bar {
  background: var(--g-analyze)
}

.cy-sec-assess-stage .cy-sec-progress-bar {
  background: var(--g-assess)
}

.cy-sec-detoken-stage .cy-sec-progress-bar {
  background: var(--g-detoken)
}

.cy-sec-act-stage .cy-sec-progress-bar {
  background: var(--g-act)
}

.cy-sec-accent-bar {
  position: absolute;
  top: 40px;
  right: 0;
  width: 3px;
  height: 0;
  border-radius: 2px;
  -webkit-transition: height 1.2s ease;
  transition: height 1.2s ease;
  z-index: 2
}

.cy-sec-ingest-stage .cy-sec-accent-bar {
  background: var(--g-ingest)
}

.cy-sec-privacy-stage .cy-sec-accent-bar {
  background: var(--g-privacy)
}

.cy-sec-analyze-stage .cy-sec-accent-bar {
  background: var(--g-analyze)
}

.cy-sec-assess-stage .cy-sec-accent-bar {
  background: var(--g-assess)
}

.cy-sec-detoken-stage .cy-sec-accent-bar {
  background: var(--g-detoken)
}

.cy-sec-act-stage .cy-sec-accent-bar {
  background: var(--g-act)
}

.cy-sec-stage-card.cy-sec-revealed .cy-sec-accent-bar {
  height: calc(100% - 46px)
}

.cy-sec-counter {
  position: absolute;
  top: 10px;
  right: 26px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, .55);
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s
}

.cy-sec-stage-card.cy-sec-revealed .cy-sec-counter {
  opacity: 1
}

.cy-sec-privacy-stage {
  border-color: rgba(217, 119, 6, .2)
}

.cy-sec-privacy-stage.cy-sec-revealed {
  box-shadow: 0 4px 24px rgba(217, 119, 6, .1)
}

.cy-sec-detoken-stage {
  border-color: rgba(5, 150, 105, .2)
}

.cy-sec-detoken-stage.cy-sec-revealed {
  box-shadow: 0 4px 24px rgba(5, 150, 105, .1)
}

.mb-5 {
  margin-bottom: 20px;
}

.cy-sec-shield-badge {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  background: rgba(217, 119, 6, .08);
  border: 1px solid rgba(217, 119, 6, .15);
  color: var(--amber);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 1px 5px;
}

.privacy-flow-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--amber);
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  padding: 2px 0;
  min-height: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.cy-sec-privacy-flow-label.cy-sec-visible {
  opacity: 1
}

.privacy-flow-label.green {
  color: var(--emerald)
}

.cy-sec-desktop-only {
  display: block
}

.cy-sec-bottom-section {
  max-width: 1520px;
  width: 100%;
  margin-top: 28px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  gap: 12px;
  z-index: 1
}

.cy-sec-flow-down {
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--card-border), rgba(79, 70, 229, .3));
  border-radius: 1px;
  -webkit-transition: height .6s ease;
  transition: height .6s ease
}

.cy-sec-flow-down.visible {
  height: 22px
}

.cy-sec-oversight-pill {
  background: linear-gradient(135deg, rgba(79, 70, 229, .06), rgba(124, 58, 237, .06));
  border: 1px solid rgba(79, 70, 229, .18);
  border-radius: 28px;
  padding: 10px 32px;
  font-weight: 600;
  font-size: 13px;
  color: var(--indigo);
  letter-spacing: .02em;
  opacity: 0;
  -webkit-transform: scale(.92);
  transform: scale(.92);
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 8px
}

.cy-sec-oversight-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 70, 229, .08), transparent);
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s
}

.cy-sec-oversight-pill.cy-sec-active::after {
  opacity: 1;
  -webkit-animation: shimmer 3s ease-in-out infinite;
  animation: shimmer 3s ease-in-out infinite
}

.cy-sec-case-card {
  background: var(--card-bg);
  border: 1px solid rgba(79, 70, 229, .2);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
  box-shadow: 0 4px 20px rgba(79, 70, 229, .06)
}

.cy-sec-case-header {
  background: var(--g-manage);
  padding: 12px 22px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  text-align: center;
  letter-spacing: .02em
}

.cy-sec-case-body {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  padding: 12px 24px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap
}

.cy-sec-case-item {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-sec)
}

.cy-sec-case-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 10px;
  background: rgba(5, 150, 105, .1);
  border: 1px solid rgba(5, 150, 105, .25);
  color: var(--emerald);
  opacity: 0;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  -webkit-transition: all .4s ease;
  transition: all .4s ease
}

.cy-sec-case-check.cy-sec-visible {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1)
}

@-webkit-keyframes fadeSlideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px)
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px)
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1
  }
}

@keyframes fadeIn {
  to {
    opacity: 1
  }
}

@-webkit-keyframes fadeSlideRight {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes fadeSlideRight {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@-webkit-keyframes fadeSlideUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@-webkit-keyframes scaleIn {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@-webkit-keyframes pulseOut {
  0% {
    opacity: .6;
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.18);
    transform: scale(1.18)
  }
}

@keyframes pulseOut {
  0% {
    opacity: .6;
    -webkit-transform: scale(1);
    transform: scale(1)
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.18);
    transform: scale(1.18)
  }
}

@-webkit-keyframes statusPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, .35)
  }

  50% {
    box-shadow: 0 0 0 5px rgba(5, 150, 105, 0)
  }
}

@keyframes statusPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, .35)
  }

  50% {
    box-shadow: 0 0 0 5px rgba(5, 150, 105, 0)
  }
}

@-webkit-keyframes shimmer {
  0% {
    left: -100%
  }

  100% {
    left: 200%
  }
}

@keyframes shimmer {
  0% {
    left: -100%
  }

  100% {
    left: 200%
  }
}

@-webkit-keyframes dotTravel {
  0% {
    left: 0;
    opacity: 0
  }

  20% {
    opacity: .8
  }

  80% {
    opacity: .8
  }

  100% {
    left: 16px;
    opacity: 0
  }
}

@keyframes dotTravel {
  0% {
    left: 0;
    opacity: 0
  }

  20% {
    opacity: .8
  }

  80% {
    opacity: .8
  }

  100% {
    left: 16px;
    opacity: 0
  }
}

@-webkit-keyframes shieldPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(217, 119, 6, .06)
  }

  50% {
    box-shadow: 0 4px 28px rgba(217, 119, 6, .16)
  }
}

@keyframes shieldPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(217, 119, 6, .06)
  }

  50% {
    box-shadow: 0 4px 28px rgba(217, 119, 6, .16)
  }
}

@-webkit-keyframes completePulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(79, 70, 229, .06)
  }

  50% {
    box-shadow: 0 4px 30px rgba(79, 70, 229, .14)
  }
}

@keyframes completePulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(79, 70, 229, .06)
  }

  50% {
    box-shadow: 0 4px 30px rgba(79, 70, 229, .14)
  }
}

.cy-sec-workflow-scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--card-border) var(--bg-subtle)
}

.cy-sec-workflow-scroll::-webkit-scrollbar {
  height: 6px
}

.cy-sec-workflow-scroll::-webkit-scrollbar-track {
  background: var(--bg-subtle);
  border-radius: 3px
}

.cy-sec-workflow-scroll::-webkit-scrollbar-thumb {
  background: var(--card-border);
  border-radius: 3px
}

@media(max-width:1024px) {
  .cy-sec-ops-container {
    padding: 30px 16px
  }

  .cy-sec-workflow-scroll {
    overflow-x: visible;
    overflow-y: visible
  }

  .cy-sec-workflow {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 540px;
    margin: 0 auto
  }

  .cy-sec-sources {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
    width: 100%
  }

  .cy-sec-source-label {
    text-align: center;
    width: 100%
  }

  .cy-sec-source-item {
    flex: 1;
    min-width: 70px;
    -webkit-justify-content: center;
    justify-content: center
  }

  .cy-sec-connector {
    display: none !important
  }

  .cy-sec-v-connector {
    display: -webkit-flex;
    display: flex
  }

  .cy-sec-desktop-only {
    display: none
  }

  .cy-sec-stage-column {
    width: 100%
  }

  .cy-sec-stage-card {
    border-radius: 14px
  }

  .cy-sec-stage-header {
    font-size: 14px;
    padding: 13px 16px;
    border-radius: 14px 14px 0 0
  }

  .cy-sec-stage-header .cy-sec-left {
    gap: 7px
  }

  .cy-sec-check-item {
    font-size: 13px;
    padding: 9px 14px;
    white-space: normal;
    gap: 10px
  }

  .cy-sec-check-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
    border-radius: 6px
  }

  .cy-sec-stage-body {
    padding: 6px 10px 10px
  }

  .cy-sec-privacy-flow-label {
    font-size: 11px;
    min-height: auto;
    padding: 8px 0 4px;
    white-space: normal
  }

  .cy-sec-counter {
    font-size: 11px;
    right: 40px;
    top: 14px
  }

  .cy-sec-shield-badge {
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px
  }

  .cy-sec-case-card {
    width: 100%;
    max-width: 540px
  }

  .cy-sec-case-body {
    gap: 16px
  }

  .cy-sec-oversight-pill {
    padding: 10px 24px;
    font-size: 12px
  }

  .cy-sec-accent-bar {
    top: 48px
  }

  .cy-sec-stage-card.cy-sec-revealed .cy-sec-accent-bar {
    height: calc(100% - 54px)
  }

  .cy-sec-ops-container h1 {
    font-size: 32px
  }

  .cy-sec-subtitle {
    font-size: 14px
  }

  .cy-sec-v-connector .cy-sec-v-line {
    height: 28px
  }
}

@media(max-width:767px) {
  .cy-sec-ops-container {
    padding: 24px 12px
  }

  .cy-sec-header {
    margin-bottom: 24px
  }

  .cy-sec-ops-container h1 {
    font-size: 26px
  }

  .cy-sec-subtitle {
    font-size: 13px;
    max-width: 100%
  }

  .cy-sec-badge {
    font-size: 10px;
    padding: 5px 12px
  }

  .cy-sec-status-bar {
    margin-bottom: 20px;
    padding: 6px 12px
  }

  .cy-sec-status-text {
    font-size: 10px
  }

  .cy-sec-workflow {
    max-width: 100%
  }

  .cy-sec-sources {
    gap: 5px
  }

  .cy-sec-source-item {
    padding: 7px 6px;
    font-size: 10.5px;
    min-width: 60px
  }

  .cy-sec-source-item .icon-wrap {
    width: 18px;
    height: 18px;
    font-size: 9px
  }

  .cy-sec-stage-card {
    border-radius: 12px
  }

  .cy-sec-stage-header {
    font-size: 13px;
    padding: 11px 14px;
    border-radius: 12px 12px 0 0
  }

  .cy-sec-stage-header .cy-sec-left {
    gap: 6px
  }

  .cy-sec-stage-header .cy-sec-gear {
    font-size: 12px
  }

  .cy-sec-check-item {
    font-size: 12.5px;
    padding: 8px 12px;
    gap: 9px
  }

  .cy-sec-check-icon {
    width: 20px;
    height: 20px;
    font-size: 9px;
    border-radius: 5px
  }

  .cy-sec-stage-body {
    padding: 5px 8px 8px
  }

  .cy-sec-privacy-flow-label {
    font-size: 10px;
    padding: 6px 0 2px
  }

  .cy-sec-counter {
    font-size: 10px;
    right: 36px;
    top: 12px
  }

  .cy-sec-shield-badge {
    font-size: 8px;
    padding: 2px 7px
  }

  .cy-sec-case-card {
    width: 100%
  }

  .cy-sec-case-header {
    font-size: 12px;
    padding: 10px 16px
  }

  .cy-sec-case-body {
    gap: 12px;
    padding: 10px 16px
  }

  .cy-sec-case-item {
    font-size: 12px
  }

  .cy-sec-case-check {
    width: 18px;
    height: 18px;
    font-size: 9px
  }

  .cy-sec-oversight-pill {
    padding: 9px 20px;
    font-size: 11.5px;
    border-radius: 24px
  }

  .cy-sec-bottom-section {
    gap: 10px;
    margin-top: 20px
  }

  .cy-sec-accent-bar {
    top: 44px
  }

  .cy-sec-stage-card.cy-sec-revealed .cy-sec-accent-bar {
    height: calc(100% - 50px)
  }

  .cy-sec-v-connector .cy-sec-v-line {
    height: 22px
  }

  .cy-sec-v-connector {
    padding: 4px 0
  }
}

@media(max-width:400px) {
  .cy-sec-ops-container {
    padding: 20px 8px
  }

  .cy-sec-ops-container h1 {
    font-size: 22px
  }

  .cy-sec-subtitle {
    font-size: 12px
  }

  .cy-sec-sources {
    gap: 4px
  }

  .cy-sec-source-item {
    padding: 6px 5px;
    font-size: 10px;
    min-width: 55px
  }

  .cy-sec-source-item .cy-sec-icon-wrap {
    width: 16px;
    height: 16px;
    font-size: 8px;
    border-radius: 4px
  }

  .cy-sec-stage-header {
    font-size: 12px;
    padding: 10px 12px
  }

  .cy-sec-check-item {
    font-size: 12px;
    padding: 7px 10px
  }

  .cy-sec-check-icon {
    width: 18px;
    height: 18px
  }

  .cy-sec-case-body {
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    -webkit-align-items: center;
    align-items: center
  }

  .cy-sec-oversight-pill {
    padding: 8px 16px;
    font-size: 11px
  }
}