:root {
  --page-ink: #14263a;
  --field: #ffffff;
  --accent: #c51f2c;
  --accent-dark: #951620;
  --notice: #fff3a6;
  --reopen-yellow: #ffd83d;
  --reopen-yellow-hover: #ffe36a;
}

/* START SPECIAL REPORT SLIDER */
    .report-slider,
    .report-reopen-tab {
      font-family: Arial, Helvetica, sans-serif;
    }

    .report-slider h2,
    .report-slider h3 {
      font-family: Arial, Helvetica, sans-serif;
    }

    .report-backdrop {
      position: fixed;
      inset: 0;
      z-index: 80;
      visibility: hidden;
      background: rgba(16, 29, 42, 0.5);
      opacity: 0;
      transition: opacity 220ms ease, visibility 0s linear 220ms;
    }

    .report-slider {
      position: fixed;
      top: 50%;
      right: 18px;
      z-index: 81;
      width: min(760px, calc(100vw - 36px));
      max-height: calc(100dvh - 36px);
      overflow: auto;
      border: 3px solid var(--accent);
      border-radius: 10px;
      background: #ffffff;
      box-shadow: 0 20px 58px rgba(30, 46, 62, 0.3);
      transform: translate3d(calc(100% + 48px), -50%, 0);
      transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1);
    }

    .report-backdrop.is-open {
      visibility: visible;
      opacity: 1;
      transition: opacity 220ms ease;
    }

    .report-slider.is-open {
      transform: translate3d(0, -50%, 0);
    }

    .report-reopen-tab {
      position: fixed;
      top: 50%;
      right: 0;
      z-index: 79;
      display: grid;
      width: 50px;
      min-height: 282px;
      place-items: center;
      padding: 15px 9px;
      border: 1px solid #a91825;
      border-right: 0;
      border-radius: 7px 0 0 7px;
      color: var(--accent);
      background: var(--reopen-yellow);
      font: inherit;
      font-size: 0.96rem;
      font-weight: 500;
      line-height: 1.05;
      text-transform: none;
      letter-spacing: 0.02em;
      box-shadow: -5px 5px 14px rgba(149, 22, 32, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      cursor: pointer;
      isolation: isolate;
      will-change: transform;
      transform: translate3d(100%, -50%, 0);
      transition: background 180ms ease, box-shadow 180ms ease, opacity 180ms ease,
        transform 260ms cubic-bezier(0.2, 0.78, 0.2, 1), visibility 0s linear 260ms;
    }

    .report-reopen-tab::before {
      content: "";
      position: absolute;
      top: 5px;
      bottom: 5px;
      left: -9px;
      z-index: 0;
      width: 11px;
      background: var(--reopen-yellow);
      clip-path: polygon(
        100% 0, 100% 100%, 58% 100%, 0 96%, 62% 91%, 12% 86%,
        72% 81%, 0 76%, 58% 71%, 8% 66%, 74% 61%, 0 56%,
        54% 51%, 10% 46%, 70% 41%, 0 36%, 60% 31%, 12% 26%,
        74% 21%, 0 16%, 58% 11%, 8% 6%, 62% 0
      );
      filter: drop-shadow(-2px 1px 2px rgba(149, 22, 32, 0.2));
      pointer-events: none;
      transition: background 180ms ease;
    }

    .report-reopen-label {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 11px;
      line-height: 0.92;
      letter-spacing: 0.02em;
      text-align: center;
    }

    .report-reopen-word {
      display: block;
    }

    .report-reopen-tab.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate3d(0, -50%, 0);
      transition-delay: 0s;
    }

    .report-reopen-tab.is-visible.is-tease-retracted {
      transform: translate3d(28px, -50%, 0);
      transition-duration: 320ms;
      transition-timing-function: cubic-bezier(0.4, 0, 0.8, 0.2);
    }

    .report-reopen-tab.is-visible.is-tease-popped {
      transform: translate3d(-12px, -50%, 0);
      transition-duration: 190ms;
      transition-timing-function: cubic-bezier(0.18, 0.85, 0.3, 1.2);
    }

    .report-reopen-tab.is-visible.is-tease-bounce {
      transform: translate3d(5px, -50%, 0);
      transition-duration: 150ms;
    }

    .report-reopen-tab.is-visible.is-tease-nudge {
      transform: translate3d(-3px, -50%, 0);
      transition-duration: 130ms;
    }

    .report-reopen-tab:hover,
    .report-reopen-tab:focus-visible {
      color: var(--accent-dark);
      background: var(--reopen-yellow-hover);
      box-shadow: -7px 6px 17px rgba(149, 22, 32, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .report-reopen-tab:hover::before,
    .report-reopen-tab:focus-visible::before {
      background: var(--reopen-yellow-hover);
    }

    .report-reopen-tab:focus-visible {
      outline: 3px solid rgba(197, 31, 44, 0.28);
      outline-offset: 3px;
    }

    .report-reopen-tab:active {
      box-shadow: -2px 3px 8px rgba(149, 22, 32, 0.25);
    }

    .report-close {
      position: absolute;
      top: 8px;
      right: 8px;
      z-index: 2;
      width: 30px;
      height: 30px;
      border: 0;
      border-radius: 50%;
      background: #ffffff;
      color: var(--page-ink);
      font-size: 1.35rem;
      font-weight: 800;
      line-height: 1;
      box-shadow: 0 1px 8px rgba(20, 38, 58, 0.18);
    }

    .report-close:hover,
    .report-close:focus-visible {
      color: #ffffff;
      background: var(--page-ink);
    }

    .report-layout {
      display: grid;
      grid-template-columns: minmax(230px, 0.82fr) minmax(390px, 1.18fr);
    }

    .report-offer {
      display: flex;
      min-width: 0;
      flex-direction: column;
      justify-content: flex-start;
      padding: 22px 18px 20px;
      border-right: 1px solid #d9dee3;
      background: #fffdf9;
      text-align: center;
    }

    .report-portrait {
      display: block;
      width: 100%;
      height: 205px;
      aspect-ratio: 1.28 / 1;
      margin: 0 0 14px;
      object-fit: cover;
      object-position: center;
      border-radius: 6px 6px 2px 2px;
      background: #ffffff;
    }

    .report-copy h2 {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      color: #101820;
      font-size: clamp(1.4rem, 2.2vw, 1.5rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.04em;
      text-align: center;
    }

    .headline-lead,
    .headline-tail {
      display: block;
      white-space: nowrap;
    }

    .report-copy .headline-stop {
      display: block;
      margin: 3px 0;
      color: #e11920;
      font-size: 1.35em;
      letter-spacing: -0.04em;
    }

    .report-download-banner {
      display: grid;
      min-height: 104px;
      margin-top: 34px;
      padding: 18px;
      place-items: center;
      border: 1px solid #d7b20f;
      background: var(--notice);
      color: #101820;
      font-size: 1.45rem;
      font-weight: 900;
      line-height: 1.16;
      text-align: left;
    }

    .report-title {
      display: grid;
      min-height: 104px;
      padding: 18px 38px 18px 14px;
      place-items: center;
      border: 1px solid #cfd5da;
      background: #eef0f2;
      color: #3d2c00;
      line-height: 1.03;
      text-align: center;
    }

    .report-title-name {
      font-size: clamp(1.45rem, 3.3vw, 1.85rem);
      font-weight: 900;
      letter-spacing: -0.025em;
    }

    .report-title-name span {
      display: block;
      white-space: nowrap;
    }

    .report-free {
      color: #e11920;
      font-weight: 900;
    }

    .variant-download-gray .report-download-banner {
      border-color: #cfd5da;
      background: #eef0f2;
    }

    .variant-title-gray .report-title {
      border-color: #cfd5da;
      background: #eef0f2;
    }

    .variant-title-white .report-title {
      border: 0;
      background: #ffffff;
    }

    .report-form-wrap {
      min-width: 0;
      padding: 18px;
      background: #ffffff;
    }

    .report-form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 9px;
      margin-top: 12px;
    }

    .report-field {
      display: grid;
      gap: 4px;
    }

    .form-message,
    .report-submit {
      grid-column: 1 / -1;
    }

    .report-field--contact {
      width: 75%;
    }

    .report-field label {
      color: #182838;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .report-field input,
    .report-field textarea {
      width: 100%;
      border: 1px solid #aab4bd;
      border-radius: 4px;
      color: #14263a;
      background: var(--field);
      outline: 0;
      box-shadow: inset 0 1px 2px rgba(20, 38, 58, 0.05);
      transition: border-color 180ms ease, box-shadow 180ms ease;
    }

    .report-field input {
      min-height: 34px;
      padding: 6px 8px;
    }

    .report-field textarea {
      min-height: 55px;
      padding: 7px 8px;
      resize: vertical;
    }

    .report-field input:focus,
    .report-field textarea:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(197, 31, 44, 0.12);
    }

    .form-message {
      min-height: 0;
      margin: -1px 0 0;
      color: var(--accent-dark);
      font-size: 0.76rem;
      font-weight: 800;
      line-height: 1.25;
    }

    .form-message:empty {
      display: none;
    }

    .report-submit {
      min-height: 42px;
      padding: 9px 14px;
      border: 1px solid #a91825;
      border-radius: 5px;
      color: #ffffff;
      background: var(--accent);
      font-size: 0.9rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.015em;
      box-shadow: 0 5px 12px rgba(149, 22, 32, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
      transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    }

    .report-submit:hover,
    .report-submit:focus-visible {
      background: var(--accent-dark);
      transform: translateY(-1px);
      box-shadow: 0 7px 16px rgba(149, 22, 32, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }

    .report-submit:active {
      box-shadow: 0 2px 6px rgba(149, 22, 32, 0.22);
      transform: translateY(0) scale(0.99);
    }

    .report-success {
      display: none;
      min-height: 360px;
      align-content: center;
      gap: 14px;
    }

    .report-success.is-visible {
      display: grid;
    }

    .report-success h3 {
      margin: 0;
      color: #000000;
      font-size: 2rem;
      line-height: 1.05;
    }

    .report-success p {
      margin: 0;
      color: #344555;
      line-height: 1.55;
    }

    .report-reset {
      width: fit-content;
      min-height: 42px;
      padding: 8px 14px;
      border: 2px solid var(--page-ink);
      border-radius: 0;
      color: var(--page-ink);
      background: #ffffff;
      font-weight: 800;
    }

    @media (max-width: 780px) {
      .demo-nav {
        display: none;
      }

      .report-slider {
        top: auto;
        right: 8px;
        bottom: 8px;
        width: calc(100vw - 16px);
        max-height: calc(100dvh - 16px);
        transform: translate3d(0, calc(100% + 24px), 0);
      }

      .report-slider.is-open {
        transform: translate3d(0, 0, 0);
      }

      .report-reopen-tab {
        width: 46px;
        min-height: 258px;
        padding: 12px 8px;
        font-size: 0.86rem;
      }

      .report-layout {
        grid-template-columns: 1fr;
      }

      .report-offer {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        align-items: center;
        gap: 12px 16px;
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid #d9dee3;
        text-align: left;
      }

      .report-portrait {
        height: 112px;
        aspect-ratio: 1 / 1;
        margin: 0;
      }

      .report-copy h2 {
        max-width: none;
        margin: 0;
        font-size: clamp(1.05rem, 4.2vw, 1.25rem);
        text-align: center;
      }

      .report-download-banner {
        grid-column: 1 / -1;
        min-height: 70px;
        margin-top: 0;
        padding: 14px 18px;
        font-size: 1.2rem;
      }

      .report-form-wrap {
        padding: 14px 16px 17px;
      }

      .report-title {
        min-height: 86px;
        padding: 14px 12px;
      }

      .report-title-name {
        font-size: clamp(1.25rem, 5.8vw, 1.55rem);
        letter-spacing: -0.025em;
      }

    }

    @media (max-width: 480px) {
      .report-field,
      .form-message,
      .report-submit {
        grid-column: 1;
      }

      .report-field--contact {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
      }

    }
    /* END SPECIAL REPORT SLIDER */
