/* Scene 13, the employee policy journey. */
body[data-scene="13"] {
  --policy-ink: #0b2450;
  --policy-muted: #51617e;
  --policy-line: #dfe5ef;
  --policy-blue: #1558dc;
  --policy-navy: #061d49;
  --policy-purple: #6d49db;
  --policy-green: #39ad78;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -14%, #ffffff 0, #ffffff 28%, transparent 58%),
    #f7f8fc;
  color: var(--policy-ink);
}

body[data-scene="13"] .site-header {
  display: none !important;
}

body[data-scene="13"] .workspace {
  margin-left: 0;
  padding-bottom: 36px;
}

body[data-scene="13"] #main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 34px clamp(18px, 3.4vw, 54px) 38px;
  color: var(--policy-ink);
}

body[data-scene="13"] .product-foot {
  display: none;
}

body[data-scene="13"] .scene13-page {
  max-width: 1500px;
  margin: 0 auto;
}

body[data-scene="13"] .scene13-heading {
  align-items: flex-end;
  max-width: 1120px;
  margin: 0 auto 26px;
}

body[data-scene="13"] .scene13-heading .small {
  display: none;
}

body[data-scene="13"] .scene13-heading h1,
body[data-scene="13"] .scene13-heading .title {
  margin: 0 0 8px;
  color: var(--policy-ink);
  font-size: clamp(29px, 3.1vw, 42px);
  font-weight: 780;
  letter-spacing: -1.35px;
  line-height: 1.1;
}

body[data-scene="13"] .scene13-heading .lead {
  max-width: 720px;
  margin: 0;
  color: #172e55;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.55;
}

body[data-scene="13"] .scene13-heading > .badge {
  display: inline-flex;
  flex: 0 0 auto;
  margin-bottom: 4px;
  padding: 7px 11px;
  border: 1px solid #cedcff;
  border-radius: 999px;
  background: #eef3ff;
  color: #1e54c9;
  font-size: 12px;
  font-weight: 780;
}

body[data-scene="13"] .scene13-journey-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 30px);
  max-width: 1340px;
  margin: 0 auto 18px;
  padding: 0 4px;
}

body[data-scene="13"] .scene13-journey-map::before {
  position: absolute;
  top: 17px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: #d9e2f2;
  content: "";
}

body[data-scene="13"] .scene13-journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  padding: 0 3px 10px;
}

body[data-scene="13"] .scene13-journey-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 3px solid #f7f8fc;
  border-radius: 50%;
  background: #e2e8f4;
  color: #5a6c8f;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 0 1px #d4deee;
}

body[data-scene="13"] .scene13-journey-step.is-current .scene13-journey-number,
body[data-scene="13"] .scene13-journey-step.is-complete .scene13-journey-number {
  background: var(--policy-blue);
  color: #fff;
  box-shadow: 0 0 0 1px var(--policy-blue), 0 4px 10px rgb(21 88 220 / 20%);
}

body[data-scene="13"] .scene13-journey-step strong {
  display: block;
  min-height: 37px;
  color: var(--policy-ink);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 780;
  line-height: 1.3;
}

body[data-scene="13"] .scene13-journey-step p {
  max-width: 225px;
  margin: 8px 0 0;
  color: #283d63;
  font-size: 13px;
  line-height: 1.55;
}

body[data-scene="13"] .scene13-journey-step:not(.is-current):not(.is-complete) {
  opacity: .9;
}

body[data-scene="13"] .scene13-device-stage {
  display: flex;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 4px 0 12px;
}

body[data-scene="13"] .scene13-phone {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 390px);
  max-width: 390px;
  min-height: 650px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 7px solid #aeb8c8;
  border-radius: 39px;
  background: #fbfcff;
  box-shadow:
    0 22px 45px rgb(16 38 79 / 15%),
    0 2px 0 #ffffff inset,
    0 0 0 1px rgb(85 104 142 / 25%);
}

body[data-scene="13"] .scene13-phone::before {
  display: none;
}

body[data-scene="13"] .scene13-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 7px 17px 0;
  color: var(--policy-ink);
  font-size: 11px;
}

body[data-scene="13"] .scene13-phone-status span {
  font-size: 10px;
  letter-spacing: 1px;
}

body[data-scene="13"] .scene13-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 47px;
  padding: 0 17px;
  border-bottom: 1px solid #e4e8f0;
  color: var(--policy-ink);
}

body[data-scene="13"] .scene13-phone-bar strong {
  font-size: 16px;
  letter-spacing: -.25px;
}

body[data-scene="13"] .scene13-phone-back {
  font-size: 31px;
  font-weight: 300;
  line-height: .8;
}

body[data-scene="13"] .scene13-phone-more {
  font-size: 16px;
  letter-spacing: 2px;
}

body[data-scene="13"] .scene13-phone-progress {
  height: 3px;
  margin: 0 21px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7ebf3;
}

body[data-scene="13"] .scene13-phone-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1658da, #6e4ad8);
  transition: width .2s ease;
}

body[data-scene="13"] .scene13-phone-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 22px 21px 42px;
  overflow: auto;
  color: var(--policy-ink);
}

body[data-scene="13"] .scene13-phone-body h2 {
  margin: 10px 0 4px;
  color: var(--policy-ink);
  font-size: 25px;
  font-weight: 780;
  letter-spacing: -.75px;
  line-height: 1.18;
}

body[data-scene="13"] .scene13-phone-body > p {
  color: #1c345b;
  font-size: 14px;
  line-height: 1.55;
}

body[data-scene="13"] .scene13-phone-body > .btn.primary {
  width: 100%;
  min-height: 43px;
  margin-top: auto;
  border-color: var(--policy-navy);
  border-radius: 8px;
  background: var(--policy-navy);
  font-weight: 760;
}

body[data-scene="13"] .scene13-phone-body > .btn.primary:hover,
body[data-scene="13"] .scene13-phone-body > .btn.primary:focus-visible {
  border-color: #173b76;
  background: #173b76;
}

body[data-scene="13"] .scene13-phone-body > .btn.link {
  width: fit-content;
  min-height: 30px;
  margin-top: 7px;
  color: var(--policy-blue);
  font-size: 13px;
}

body[data-scene="13"] .scene13-phone-tag {
  margin-bottom: 1px;
}

body[data-scene="13"] .scene13-phone-tag .badge {
  padding: 5px 9px;
  border-radius: 6px;
  background: #eee8ff;
  color: #5a32cb;
  font-size: 11px;
  font-weight: 780;
}

body[data-scene="13"] .scene13-phone-date {
  margin: 0 0 13px;
  color: #405579 !important;
  font-size: 12px !important;
}

body[data-scene="13"] .scene13-travel-visual {
  position: relative;
  height: 140px;
  margin: 0 0 17px;
  overflow: hidden;
  border-radius: 8px;
  background: #d9e8fb;
}

body[data-scene="13"] .scene13-travel-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-scene="13"] .scene13-travel-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgb(5 25 62 / 52%));
  content: "";
}

body[data-scene="13"] .scene13-travel-visual span {
  position: absolute;
  z-index: 1;
  right: 11px;
  bottom: 9px;
  left: 11px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

body[data-scene="13"] .scene13-info-block {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 9px;
  margin: 0 0 15px;
}

body[data-scene="13"] .scene13-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  background: #eee9ff;
  color: #6138cd;
  font-size: 16px;
  font-weight: 800;
}

body[data-scene="13"] .scene13-info-blue .scene13-info-icon {
  background: #eaf1ff;
  color: #1f59d8;
}

body[data-scene="13"] .scene13-info-block strong {
  display: block;
  margin: 2px 0 5px;
  font-size: 13px;
}

body[data-scene="13"] .scene13-info-block p {
  margin: 0;
  color: #19335d;
  font-size: 12px;
  line-height: 1.55;
}

body[data-scene="13"] .scene13-phone-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin: 3px auto 24px;
  border-radius: 50%;
  background: #eee9ff;
  color: #6534d5;
  font-size: 34px;
  font-weight: 780;
}

body[data-scene="13"] .scene13-illustration-document,
body[data-scene="13"] .scene13-illustration-question {
  position: relative;
}

body[data-scene="13"] .scene13-illustration-document i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border: 3px solid #fbfcff;
  border-radius: 50%;
  background: var(--policy-green);
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

body[data-scene="13"] .scene13-centred-copy {
  max-width: 280px;
  margin: 0 auto 22px;
  text-align: center;
}

body[data-scene="13"] .scene13-centred-copy h2 {
  margin: 0 0 9px;
  font-size: 24px;
}

body[data-scene="13"] .scene13-centred-copy p {
  margin: 0;
  color: #1b345b;
  font-size: 14px;
  line-height: 1.55;
}

body[data-scene="13"] .scene13-check-field {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 49px;
  margin: 0 0 17px;
  padding: 11px 12px;
  border: 1px solid #2c65df;
  border-radius: 7px;
  background: #fbfcff;
  color: var(--policy-ink);
  font-size: 13px;
}

body[data-scene="13"] .scene13-check-field input {
  flex: 0 0 auto;
  margin: 0;
}

body[data-scene="13"] .scene13-ack-note,
body[data-scene="13"] .scene13-result-note {
  margin-top: auto;
  margin-bottom: 18px;
  padding: 13px 12px;
  font-size: 12px;
  line-height: 1.5;
}

body[data-scene="13"] .scene13-choice-list {
  gap: 8px;
  margin: 4px 0 16px;
}

body[data-scene="13"] .scene13-choice {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 52px;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid #d8e0ec;
  border-radius: 7px;
  background: #fff;
  color: var(--policy-ink);
  font-size: 12px;
  line-height: 1.4;
}

body[data-scene="13"] .scene13-choice:has(input:checked) {
  border-color: #6f8ff1;
  background: #f4f7ff;
  box-shadow: 0 0 0 1px #a9baf8 inset;
}

body[data-scene="13"] .scene13-choice input {
  flex: 0 0 auto;
  margin: 0 6px 0 0;
}

body[data-scene="13"] .scene13-result-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 34px auto 26px;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 500;
}

body[data-scene="13"] .scene13-result-correct {
  background: var(--policy-green);
  color: #fff;
  box-shadow: 0 0 0 14px #e5f4ec, 0 0 0 15px #d6eddf;
}

body[data-scene="13"] .scene13-result-wrong {
  background: #ef9a42;
  color: #fff;
  box-shadow: 0 0 0 14px #fff0df, 0 0 0 15px #ffe5c4;
}

body[data-scene="13"] .scene13-trip-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  margin: 6px 0 18px;
  padding: 12px 11px;
  border-radius: 7px;
  background: #fff;
}

body[data-scene="13"] .scene13-trip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #edf2ff;
  color: var(--policy-blue);
}

body[data-scene="13"] .scene13-trip-card p {
  margin: 4px 0 0;
  font-size: 11px;
}

body[data-scene="13"] .scene13-help-link {
  margin: -7px 0 8px;
}

body[data-scene="13"] .scene13-save-note {
  max-width: 720px;
  margin: 6px auto 0;
  padding: 11px 13px;
  color: #25436d;
  font-size: 12px;
}

body[data-scene="13"] .presenter {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  max-width: 1500px;
  margin: 0 auto 12px;
}

@media (max-width: 900px) {
  body[data-scene="13"] #main {
    padding-top: 26px;
  }

  body[data-scene="13"] .scene13-heading {
    align-items: flex-start;
  }

  body[data-scene="13"] .scene13-journey-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 12px;
  }

  body[data-scene="13"] .scene13-journey-map::before {
    display: none;
  }
}

@media (max-width: 620px) {
  body[data-scene="13"] .workspace {
    padding-bottom: 36px;
  }

  body[data-scene="13"] #main {
    padding: 22px 12px 28px;
  }

  body[data-scene="13"] .scene13-heading {
    display: block;
    margin-bottom: 18px;
  }

  body[data-scene="13"] .scene13-heading h1,
  body[data-scene="13"] .scene13-heading .title {
    margin-bottom: 8px;
    font-size: 28px;
    letter-spacing: -.85px;
  }

  body[data-scene="13"] .scene13-heading .lead {
    font-size: 14px;
  }

  body[data-scene="13"] .scene13-heading > .badge {
    margin-top: 10px;
  }

  body[data-scene="13"] .scene13-journey-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
  }

  body[data-scene="13"] .scene13-journey-step {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 7px;
    padding: 8px 7px;
    border: 1px solid #e1e7f1;
    border-radius: 10px;
    background: rgb(255 255 255 / 75%);
  }

  body[data-scene="13"] .scene13-journey-step.is-current {
    border-color: #becfff;
    background: #f3f6ff;
  }

  body[data-scene="13"] .scene13-journey-number {
    width: 26px;
    height: 26px;
    border-width: 2px;
    font-size: 12px;
  }

  body[data-scene="13"] .scene13-journey-step strong {
    min-height: auto;
    font-size: 12px;
  }

  body[data-scene="13"] .scene13-journey-step p {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.4;
  }

  body[data-scene="13"] .scene13-device-stage {
    padding-top: 3px;
  }

  body[data-scene="13"] .scene13-phone {
    width: 100%;
    min-height: min(680px, calc(100vh - 132px));
    border-width: 5px;
    border-radius: 29px;
  }

  body[data-scene="13"] .scene13-phone-body {
    padding: 19px 17px 32px;
  }

  body[data-scene="13"] .scene13-phone-body h2 {
    font-size: 24px;
  }

  body[data-scene="13"] .scene13-travel-visual {
    height: 128px;
  }

  body[data-scene="13"] .scene13-save-note {
    margin-top: 10px;
    font-size: 11px;
  }

}

@media (max-width: 380px) {
  body[data-scene="13"] .scene13-journey-map {
    grid-template-columns: 1fr;
  }

  body[data-scene="13"] .scene13-journey-step p {
    max-width: none;
  }
}

body[data-scene="7"] .my-actions-progress-label {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #edf3ff;
  color: #285bc2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}
