.mcaf {
    --mcaf-blue: #2C3486;
    --mcaf-blue-dark: #20265f;
    --mcaf-pink: #EE5186;
    --mcaf-teal: #24C8E8;
    --mcaf-orange: #F7941E;
    --mcaf-purple: #6B2286;
    --mcaf-ink: #17182d;
    --mcaf-muted: #64657a;
    --mcaf-line: #dedfeb;
    --mcaf-soft: #f6f6fb;
    --mcaf-white: #ffffff;
    width: min(100%, 1180px);
    margin: 36px auto;
    color: var(--mcaf-ink);
    font-family: "Helvetica Now Display", Arial, sans-serif;
    line-height: 1.45;
    isolation: isolate;
  }

  .mcaf,
  .mcaf * {
    box-sizing: border-box;
  }

  .mcaf :where(h2, h3, p, dl, dd, dt) {
    margin: 0;
  }

  .mcaf :where(button, a) {
    font: inherit;
  }

  .mcaf button {
    text-transform: none;
  }

  .mcaf [hidden] {
    display: none !important;
  }

  .mcaf-shell {
    position: relative;
    border: 1px solid rgba(44, 52, 134, 0.14);
    border-radius: 32px;
    background: var(--mcaf-white);
    box-shadow: 0 22px 65px rgba(32, 38, 95, 0.16);
  }

  .mcaf-step-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .mcaf-question h3,
  .mcaf-result-intro h3 {
    font-family: Rubik, "Helvetica Now Display", Arial, sans-serif;
    letter-spacing: -.025em;
  }

  .mcaf-main {
    position: relative;
    min-height: 580px;
    padding: 30px 64px 42px;
    border-radius: 31px;
    background:
      radial-gradient(circle at 100% 100%, rgba(36,200,232,.08), transparent 32%),
      linear-gradient(180deg, #fff, #fbfbfe);
  }

  .mcaf-toolbar {
    display: grid;
    grid-template-columns: 110px 1fr 110px;
    gap: 24px;
    align-items: end;
    min-height: 48px;
    margin-bottom: 40px;
  }

  .mcaf-back,
  .mcaf-restart,
  .mcaf-not-right {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--mcaf-blue);
    cursor: pointer;
    font-weight: 700;
  }

  .mcaf-back {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-self: start;
    padding: 8px 0;
  }

  .mcaf-back svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mcaf-restart {
    justify-self: end;
    padding: 8px 0;
    color: var(--mcaf-muted);
    font-size: 14px;
  }

  .mcaf-back:hover,
  .mcaf-restart:hover,
  .mcaf-not-right:hover {
    color: var(--mcaf-pink);
  }

  .mcaf-progress-wrap {
    width: 100%;
    max-width: 460px;
    justify-self: center;
  }

  .mcaf-progress-text {
    margin-bottom: 8px;
    color: var(--mcaf-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
  }

  .mcaf-progress {
    width: 100%;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8e8f2;
  }

  .mcaf-progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--mcaf-pink), var(--mcaf-purple), var(--mcaf-teal));
    transition: width .35s ease;
  }

  .mcaf-screen {
    animation: mcaf-in .32s ease both;
  }

  @keyframes mcaf-in {
    from { opacity: 0; transform: translateY(9px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mcaf-question {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
  }

  .mcaf-step-label {
    margin-bottom: 10px;
    color: var(--mcaf-pink);
  }

  .mcaf-question h3,
  .mcaf-result-intro h3 {
    color: var(--mcaf-blue-dark);
    font-size: clamp(27px, 3.5vw, 40px);
    font-weight: 650;
    line-height: 1.12;
  }

  .mcaf-question > p {
    max-width: 740px;
    margin: 13px auto 0;
    color: var(--mcaf-muted);
    font-size: 17px;
  }

  .mcaf-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
  }

  .mcaf-choice-grid-two {
    max-width: 900px;
  }

  .mcaf-choice {
    --mcaf-choice-color: var(--mcaf-blue);
    position: relative;
    z-index: 1;
    min-height: 174px;
    border: 1px solid var(--mcaf-line);
    border-radius: 22px;
    background: var(--mcaf-white);
    box-shadow: 0 8px 25px rgba(32, 38, 95, .07);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .mcaf-choice:hover,
  .mcaf-choice:focus-within,
  .mcaf-choice.is-info-open {
    z-index: 20;
    border-color: color-mix(in srgb, var(--mcaf-choice-color), white 30%);
    box-shadow: 0 15px 36px rgba(32, 38, 95, .16);
    transform: translateY(-3px);
  }

  .mcaf-choice-pink { --mcaf-choice-color: var(--mcaf-pink); }
  .mcaf-choice-blue { --mcaf-choice-color: var(--mcaf-blue); }
  .mcaf-choice-teal { --mcaf-choice-color: #079ab7; }
  .mcaf-choice-orange { --mcaf-choice-color: #d87000; }
  .mcaf-choice-purple { --mcaf-choice-color: var(--mcaf-purple); }

  .mcaf-choice::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: var(--mcaf-choice-color);
  }

  .mcaf-choice-main {
    display: grid;
    grid-template-columns: 54px 1fr 24px;
    gap: 16px;
    align-items: start;
    width: 100%;
    min-height: 174px;
    padding: 28px 24px 52px;
    border: 0;
    border-radius: 22px;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
  }

  .mcaf-choice-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 17px;
    background: color-mix(in srgb, var(--mcaf-choice-color), white 88%);
    color: var(--mcaf-choice-color);
  }

  .mcaf-choice-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mcaf-choice-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mcaf-choice-copy strong {
    color: var(--mcaf-blue-dark);
    font-family: Rubik, "Helvetica Now Display", Arial, sans-serif;
    font-size: 20px;
    font-weight: 650;
    line-height: 1.18;
  }

  .mcaf-choice-copy > span {
    color: var(--mcaf-muted);
    font-size: 15px;
    line-height: 1.42;
  }

  .mcaf-choice-arrow {
    color: var(--mcaf-choice-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    transform: translateX(0);
    transition: transform .2s ease;
  }

  .mcaf-choice-main:hover .mcaf-choice-arrow,
  .mcaf-choice-main:focus-visible .mcaf-choice-arrow {
    transform: translateX(4px);
  }

  .mcaf-choice-main:focus-visible,
  .mcaf-details-toggle:focus-visible,
  .mcaf-back:focus-visible,
  .mcaf-restart:focus-visible,
  .mcaf-not-right:focus-visible,
  .mcaf-primary-cta:focus-visible,
  .mcaf-text-link:focus-visible {
    outline: 3px solid var(--mcaf-teal);
    outline-offset: 4px;
  }

  .mcaf-details-toggle {
    position: absolute;
    left: 24px;
    bottom: 17px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 4px 0;
    border: 0;
    background: transparent;
    color: var(--mcaf-choice-color);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  .mcaf-details-toggle > span[aria-hidden="true"] {
    display: inline-grid;
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    place-items: center;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    font-size: 0;
    line-height: 1;
  }

  .mcaf-details-toggle > span[aria-hidden="true"]::after {
    content: "i";
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
  }

  .mcaf-tooltip {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: hidden;
    padding: 20px 22px;
    border-radius: 15px;
    background: var(--mcaf-blue-dark);
    color: var(--mcaf-white);
    box-shadow: 0 14px 34px rgba(23,24,45,.25);
    opacity: 0;
    pointer-events: none;
    transform: scale(.985);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  }

  .mcaf-tooltip::before {
    display: none;
  }

  .mcaf-tooltip strong {
    display: block;
    margin-bottom: 4px;
    color: var(--mcaf-teal);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mcaf-tooltip p {
    color: rgba(255,255,255,.9);
    font-size: 14px;
    line-height: 1.42;
  }

  @media (hover: hover) and (pointer: fine) {
    .mcaf-choice:hover .mcaf-tooltip,
    .mcaf-choice:focus-within .mcaf-tooltip,
    .mcaf-choice.is-info-open .mcaf-tooltip {
      visibility: visible;
      opacity: 1;
      transform: scale(1);
    }
  }

  .mcaf-result-screen {
    max-width: 900px;
    margin: 0 auto;
    padding: 4px 0 10px;
  }

  .mcaf-result-intro {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
  }

  .mcaf-result-check {
    display: grid;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--mcaf-pink), var(--mcaf-purple));
    color: var(--mcaf-white);
    box-shadow: 0 12px 30px rgba(107,34,134,.24);
  }

  .mcaf-result-check svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mcaf-result-intro .mcaf-step-label {
    margin-bottom: 4px;
  }

  .mcaf-result-summary {
    max-width: 830px;
    color: var(--mcaf-muted);
    font-size: 18px;
    line-height: 1.55;
  }

  .mcaf-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 28px;
  }

  .mcaf-fact {
    padding: 18px 20px;
    border: 1px solid var(--mcaf-line);
    border-radius: 16px;
    background: var(--mcaf-white);
  }

  .mcaf-fact dt {
    margin-bottom: 5px;
    color: var(--mcaf-pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .mcaf-fact dd {
    color: var(--mcaf-blue-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
  }

  .mcaf-result-note {
    margin-top: 18px;
    padding: 18px 20px;
    border-left: 5px solid var(--mcaf-teal);
    border-radius: 0 14px 14px 0;
    background: #eefbfe;
  }

  .mcaf-result-note strong {
    display: block;
    margin-bottom: 4px;
    color: var(--mcaf-blue-dark);
  }

  .mcaf-result-note p {
    color: #4d546c;
    font-size: 15px;
  }

  .mcaf-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    align-items: center;
    margin-top: 28px;
  }

  .mcaf-primary-cta {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border: 2px solid var(--mcaf-pink);
    border-radius: 999px;
    background: var(--mcaf-pink);
    box-shadow: 0 9px 24px rgba(238,81,134,.22);
    color: var(--mcaf-white) !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }

  .mcaf-primary-cta:hover {
    border-color: var(--mcaf-purple);
    background: var(--mcaf-purple);
    color: var(--mcaf-white) !important;
    transform: translateY(-2px);
  }

  .mcaf-primary-cta.is-disabled {
    border-color: #c9cad8;
    background: #e5e5ed;
    box-shadow: none;
    color: #666879 !important;
    cursor: not-allowed;
  }

  .mcaf-text-link {
    color: var(--mcaf-blue) !important;
    font-weight: 800;
    text-decoration: none !important;
  }

  .mcaf-text-link:hover {
    color: var(--mcaf-pink) !important;
  }

  .mcaf-not-right {
    margin-top: 24px;
    padding: 6px 0;
    font-size: 14px;
  }

  @media (max-width: 820px) {
    .mcaf {
      margin: 24px auto;
    }

    .mcaf-shell,
    .mcaf-main {
      border-radius: 24px;
    }

    .mcaf-main {
      padding: 24px 28px 34px;
      border-radius: 23px;
    }

    .mcaf-toolbar {
      grid-template-columns: 90px 1fr 90px;
      gap: 12px;
      margin-bottom: 34px;
    }

    .mcaf-choice-grid {
      grid-template-columns: 1fr;
      max-width: 640px;
    }

    .mcaf-choice,
    .mcaf-choice-main {
      min-height: 156px;
    }

    .mcaf-choice-main {
      padding-top: 25px;
    }

    .mcaf-facts {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 560px) {
    .mcaf {
      margin: 18px 0;
    }

    .mcaf-shell {
      border-radius: 20px;
    }

    .mcaf-main {
      padding: 21px 17px 30px;
      border-radius: 19px;
    }

    .mcaf-toolbar {
      grid-template-columns: 1fr 1fr;
      align-items: center;
      margin-bottom: 32px;
    }

    .mcaf-progress-wrap {
      grid-column: 1 / -1;
      grid-row: 2;
    }

    .mcaf-back {
      grid-column: 1;
      grid-row: 1;
    }

    .mcaf-restart {
      grid-column: 2;
      grid-row: 1;
    }

    .mcaf-question {
      margin-bottom: 25px;
    }

    .mcaf-question h3,
    .mcaf-result-intro h3 {
      font-size: 29px;
    }

    .mcaf-question > p {
      font-size: 15px;
    }

    .mcaf-choice {
      min-height: 0;
    }

    .mcaf-choice-main {
      grid-template-columns: 46px 1fr 18px;
      gap: 12px;
      min-height: 0;
      padding: 23px 17px 51px;
    }

    .mcaf-choice-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
    }

    .mcaf-choice-icon svg {
      width: 25px;
      height: 25px;
    }

    .mcaf-choice-copy strong {
      font-size: 18px;
    }

    .mcaf-choice-copy > span {
      font-size: 14px;
    }

    .mcaf-details-toggle {
      left: 75px;
      bottom: 16px;
    }

    .mcaf-tooltip {
      position: static;
      display: none;
      visibility: visible;
      bottom: auto;
      margin: -2px 16px 16px;
      opacity: 1;
      transform: none;
    }

    .mcaf-tooltip::before {
      display: none;
    }

    .mcaf-choice.is-info-open {
      transform: none;
    }

    .mcaf-choice.is-info-open .mcaf-tooltip {
      display: block;
    }

    .mcaf-result-intro {
      align-items: flex-start;
    }

    .mcaf-result-check {
      flex-basis: 52px;
      width: 52px;
      height: 52px;
      border-radius: 16px;
    }

    .mcaf-result-summary {
      font-size: 16px;
    }

    .mcaf-result-actions {
      align-items: stretch;
      flex-direction: column;
    }

    .mcaf-primary-cta {
      width: 100%;
    }

  }

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