:root {
  --msa-green: #00b200;
  --msa-green-dark: #008f2f;
  --msa-orange: #ff8300;
  --msa-ink: #122019;
  --msa-muted: #637168;
  --msa-border: #dce6de;
  --msa-soft: #f4f9f5;
  --msa-white: #ffffff;
  --msa-danger: #b42318;
  --msa-shadow: 0 22px 65px rgba(10, 48, 28, 0.22);
  --msa-radius: 24px;
}

.msa-open,
.msa-recovery-open {
  overflow: hidden;
}

.msa-cart-icon {
  display: block;
  width: 42px;
  height: 38px;
  object-fit: contain;
  object-position: center center;
}

.msa-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9000;
  min-height: 52px;
  border: 1px solid rgba(0, 178, 0, 0.12);
  border-radius: 999px;
  background: var(--msa-white);
  color: var(--msa-ink);
  box-shadow: 0 14px 40px rgba(14, 58, 31, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 8px;
  font: 600 13px/1.2 Inter, system-ui, -apple-system, sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.msa-launcher:hover,
.msa-launcher:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 178, 0, 0.35);
  box-shadow: 0 18px 48px rgba(14, 58, 31, 0.25);
  outline: none;
}

.msa-launcher-icon {
  position: relative;
  width: 42px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.msa-launcher-cart {
  width: 34px;
  height: 30px;
}

.msa-launcher-label {
  white-space: nowrap;
}

.msa-launcher-dot {
  position: absolute;
  top: 0;
  right: -1px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--msa-white);
  border-radius: 999px;
  background: var(--msa-green);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.msa-launcher.has-message .msa-launcher-dot {
  opacity: 1;
  transform: scale(1);
}

.msa-launcher.has-message {
  animation: msa-launcher-attention 600ms cubic-bezier(0.22, 0.75, 0.32, 1) 1;
}

@keyframes msa-launcher-attention {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-4px); }
}

.msa-teaser {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 9001;
  width: min(338px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: start;
  border: 1px solid var(--msa-border);
  border-radius: 20px;
  background: var(--msa-white);
  box-shadow: var(--msa-shadow);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 220ms ease, transform 220ms ease;
}

.msa-teaser::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-right: 1px solid var(--msa-border);
  border-bottom: 1px solid var(--msa-border);
  background: var(--msa-white);
  transform: rotate(45deg);
}

.msa-teaser.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.msa-teaser-main {
  min-width: 0;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px 4px 12px 12px;
  text-align: left;
  cursor: pointer;
}

.msa-teaser-main:focus-visible {
  outline: 3px solid rgba(0, 178, 0, 0.16);
  outline-offset: -2px;
  border-radius: 18px;
}

.msa-teaser-brand {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: #eff9f0;
  display: grid;
  place-items: center;
}

.msa-teaser-cart {
  width: 34px;
  height: 30px;
}

.msa-teaser-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.msa-teaser-copy b {
  color: var(--msa-ink);
  font: 600 13.5px/1.42 Poppins, Inter, system-ui, sans-serif;
}

.msa-teaser-copy small {
  color: var(--msa-muted);
  font: 500 11px/1.3 Inter, system-ui, sans-serif;
}

.msa-teaser-close {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  margin: 6px 6px 0 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #7a877e;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.msa-teaser-close:hover,
.msa-teaser-close:focus-visible {
  background: #f0f5f1;
  color: var(--msa-ink);
  outline: none;
}

.msa-backdrop,
.msa-recovery-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(6, 22, 13, 0.66);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.msa-panel {
  width: min(540px, 100%);
  max-height: min(790px, calc(100dvh - 36px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--msa-radius);
  background: var(--msa-white);
  box-shadow: 0 30px 95px rgba(0, 0, 0, 0.34);
  color: var(--msa-ink);
  outline: none;
  animation: msa-panel-in 220ms cubic-bezier(0.22, 0.75, 0.32, 1);
}

@keyframes msa-panel-in {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.msa-panel > header {
  position: sticky;
  top: 0;
  z-index: 6;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 17px 11px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.msa-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.msa-header-cart {
  width: 37px;
  height: 33px;
}

.msa-logo > span {
  display: grid;
  gap: 1px;
}

.msa-logo b {
  color: var(--msa-ink);
  font: 600 14px/1.15 Poppins, Inter, sans-serif;
}

.msa-logo small {
  color: var(--msa-green);
  font: 700 10px/1.15 Inter, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.msa-close,
.msa-recovery-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  background: #eff4f0;
  color: #3f4d44;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.msa-close:hover,
.msa-close:focus-visible,
.msa-recovery-close:hover,
.msa-recovery-close:focus-visible {
  background: #e5eee7;
  color: var(--msa-ink);
  outline: 3px solid rgba(0, 178, 0, 0.12);
}

.msa-progress {
  height: 3px;
  background: #edf2ee;
  overflow: hidden;
}

.msa-progress i {
  display: block;
  height: 100%;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(90deg, var(--msa-green), var(--msa-orange));
  transition: width 260ms ease;
}

.msa-panel main,
.msa-form {
  max-height: calc(min(790px, 100dvh - 36px) - 72px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px 26px 28px;
  -webkit-overflow-scrolling: touch;
}

.msa-kicker {
  margin: 0 0 8px !important;
  color: var(--msa-green) !important;
  font: 700 10px/1.2 Inter, sans-serif !important;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.msa-panel h2,
.msa-recovery h2 {
  margin: 0 0 10px;
  color: var(--msa-ink);
  font: 650 25px/1.2 Poppins, Inter, sans-serif;
  letter-spacing: -0.025em;
}

.msa-panel p,
.msa-recovery p {
  margin: 0 0 17px;
  color: var(--msa-muted);
  font: 400 14px/1.58 Inter, system-ui, sans-serif;
}

.msa-product {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 16px 0;
  padding: 12px;
  border: 1px solid var(--msa-border);
  border-radius: 18px;
  background: var(--msa-soft);
}

.msa-product.is-compact {
  grid-template-columns: 78px minmax(0, 1fr);
  padding: 10px 12px;
}

.msa-product > img {
  width: 94px;
  height: 72px;
  object-fit: contain;
  object-position: center center;
}

.msa-product.is-compact > img {
  width: 78px;
  height: 58px;
}

.msa-product > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.msa-product strong {
  overflow: hidden;
  color: var(--msa-ink);
  font: 600 15px/1.35 Poppins, Inter, sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.msa-product span {
  color: var(--msa-green-dark);
  font: 700 14px/1.35 Inter, sans-serif;
}

.msa-product small {
  color: var(--msa-muted);
  font: 500 11px/1.35 Inter, sans-serif;
}

.msa-fieldset {
  min-width: 0;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.msa-fieldset legend,
.msa-question-block h3 {
  margin: 0 0 10px;
  color: var(--msa-ink);
  font: 600 13px/1.45 Poppins, Inter, sans-serif;
}

.msa-question-block h3 small,
.msa-question-input > span small {
  color: #8a958d;
  font-weight: 500;
}

.msa-intent-list {
  display: grid;
  gap: 9px;
}

.msa-intent-option {
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--msa-border);
  border-radius: 16px;
  background: var(--msa-white);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.msa-intent-option:hover,
.msa-intent-option:focus-visible {
  border-color: rgba(0, 178, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 178, 0, 0.09);
  outline: none;
}

.msa-intent-option.is-selected {
  border-color: var(--msa-green);
  background: #f1fbf2;
  box-shadow: inset 0 0 0 1px rgba(0, 178, 0, 0.12);
}

.msa-option-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd8ce;
  border-radius: 999px;
  color: var(--msa-white);
  background: var(--msa-white);
  font: 800 13px/1 Inter, sans-serif;
}

.msa-intent-option.is-selected .msa-option-check {
  border-color: var(--msa-green);
  background: var(--msa-green);
}

.msa-intent-option > span:last-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.msa-intent-option b {
  color: var(--msa-ink);
  font: 600 14px/1.35 Poppins, Inter, sans-serif;
}

.msa-intent-option small {
  color: var(--msa-muted);
  font: 500 11px/1.35 Inter, sans-serif;
}

.msa-primary,
.msa-secondary,
.msa-tertiary,
.msa-back {
  font-family: Inter, system-ui, sans-serif;
  cursor: pointer;
}

.msa-primary {
  width: 100%;
  min-height: 51px;
  margin-top: 14px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  background: var(--msa-green);
  color: var(--msa-white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 178, 0, 0.14);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.msa-primary:hover:not(:disabled),
.msa-primary:focus-visible:not(:disabled) {
  background: var(--msa-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 13px 28px rgba(0, 143, 47, 0.24);
  outline: none;
}

.msa-primary:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
}

.msa-secondary {
  width: 100%;
  min-height: 47px;
  margin-top: 9px;
  padding: 10px 16px;
  border: 1px solid var(--msa-border);
  border-radius: 13px;
  background: var(--msa-white);
  color: var(--msa-ink);
  font-size: 13px;
  font-weight: 600;
}

.msa-secondary:hover,
.msa-secondary:focus-visible {
  border-color: rgba(0, 178, 0, 0.45);
  background: #f6fbf7;
  outline: 3px solid rgba(0, 178, 0, 0.08);
}

.msa-tertiary {
  width: 100%;
  margin-top: 12px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: var(--msa-green-dark);
  font-size: 12px;
  font-weight: 600;
}

.msa-tertiary:hover,
.msa-tertiary:focus-visible {
  text-decoration: underline;
  outline: none;
}

.msa-back {
  min-height: 40px;
  margin: -5px 0 8px -8px;
  padding: 6px 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--msa-green-dark);
  font-size: 12px;
  font-weight: 600;
}

.msa-back:hover,
.msa-back:focus-visible {
  background: #eff8f0;
  outline: none;
}

.msa-summary {
  margin: 15px 0 18px;
  border: 1px solid var(--msa-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--msa-white);
}

.msa-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 11px 13px;
  border-bottom: 1px solid var(--msa-border);
}

.msa-summary > div:last-child {
  border-bottom: 0;
}

.msa-summary > div.is-highlight {
  background: #f0faf1;
}

.msa-summary span {
  color: var(--msa-muted);
  font-size: 12px;
}

.msa-summary b {
  color: var(--msa-ink);
  font-size: 13px;
  text-align: right;
}

.msa-summary .is-highlight b {
  color: var(--msa-green-dark);
  font-size: 14px;
}

.msa-note {
  display: grid;
  gap: 4px;
  margin: 15px 0 18px;
  padding: 13px 14px;
  border: 1px solid #e2eadf;
  border-radius: 15px;
  background: #f7faf7;
}

.msa-note b {
  color: var(--msa-ink);
  font-size: 13px;
}

.msa-note span {
  color: var(--msa-muted);
  font-size: 12px;
  line-height: 1.45;
}

.msa-question-block {
  margin: 18px 0;
}

.msa-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.msa-chip {
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid var(--msa-border);
  border-radius: 12px;
  background: var(--msa-white);
  color: var(--msa-ink);
  font: 600 12px/1.3 Inter, sans-serif;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.msa-chip:hover,
.msa-chip:focus-visible {
  border-color: rgba(0, 178, 0, 0.45);
  outline: 3px solid rgba(0, 178, 0, 0.08);
}

.msa-chip.is-selected {
  border-color: var(--msa-green);
  background: #edf9ef;
  color: var(--msa-green-dark);
}

.msa-question-input {
  display: grid;
  gap: 7px;
  margin: 17px 0;
  color: var(--msa-ink);
  font-size: 12px;
  font-weight: 600;
}

.msa-question-input textarea {
  width: 100%;
  min-height: 84px;
  resize: vertical;
  border: 1px solid var(--msa-border);
  border-radius: 13px;
  padding: 11px 12px;
  color: var(--msa-ink);
  background: var(--msa-white);
  font: 400 13px/1.45 Inter, sans-serif;
}

.msa-question-input textarea:focus {
  border-color: var(--msa-green);
  outline: 3px solid rgba(0, 178, 0, 0.11);
}

.msa-question-input > small {
  justify-self: end;
  color: #8b968e;
  font-size: 10px;
  font-weight: 500;
}

.msa-connecting {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.msa-connecting-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: #eff9f0;
}

.msa-connecting-icon::before,
.msa-connecting-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(0, 178, 0, 0.18);
  border-radius: 36px;
  opacity: 0;
}

.msa-connecting-icon.is-checking::before {
  animation: msa-connection-ring 1.55s ease-out infinite;
}

.msa-connecting-icon.is-checking::after {
  animation: msa-connection-ring 1.55s ease-out 0.45s infinite;
}

@keyframes msa-connection-ring {
  0% { opacity: 0.6; transform: scale(0.82); }
  100% { opacity: 0; transform: scale(1.28); }
}

.msa-connecting-cart {
  width: 70px;
  height: 62px;
}

.msa-connecting-icon.is-checking .msa-connecting-cart {
  animation: msa-cart-float 1.15s ease-in-out infinite;
}

@keyframes msa-cart-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.msa-connecting h2 {
  max-width: 390px;
  text-align: center;
}

.msa-connecting p {
  max-width: 410px;
  text-align: center;
}

.msa-connecting-dots {
  display: flex;
  gap: 7px;
  margin: 2px 0 13px;
}

.msa-connecting-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--msa-green);
  animation: msa-dot 1.05s ease-in-out infinite;
}

.msa-connecting-dots i:nth-child(2) { animation-delay: 0.16s; }
.msa-connecting-dots i:nth-child(3) { animation-delay: 0.32s; }

@keyframes msa-dot {
  0%, 80%, 100% { opacity: 0.28; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.msa-connecting-note {
  color: #869188;
  font: 500 11px/1.4 Inter, sans-serif;
}

.msa-presence-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f6f3;
  color: #536058;
  font: 700 10px/1 Inter, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.msa-presence-badge > span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #839087;
}

.msa-presence-badge.is-online {
  background: #eaf8ec;
  color: #08792e;
}

.msa-presence-badge.is-online > span { background: var(--msa-green); }
.msa-presence-badge.is-busy { background: #fff4e8; color: #a75000; }
.msa-presence-badge.is-busy > span { background: var(--msa-orange); }
.msa-presence-badge.is-offline > span,
.msa-presence-badge.is-unknown > span { background: #7e8a82; }

.msa-form label:not(.msa-consent):not(.msa-honeypot label) {
  display: grid;
  gap: 7px;
  margin: 13px 0;
  color: var(--msa-ink);
  font: 600 12px/1.4 Inter, sans-serif;
}

.msa-form input,
.msa-form select {
  width: 100%;
  min-height: 49px;
  border: 1px solid var(--msa-border);
  border-radius: 13px;
  padding: 0 13px;
  color: var(--msa-ink);
  background: var(--msa-white);
  font: 400 14px/1 Inter, sans-serif;
}

.msa-form input:focus,
.msa-form select:focus {
  border-color: var(--msa-green);
  outline: 3px solid rgba(0, 178, 0, 0.11);
}

.msa-form [aria-invalid="true"] {
  border-color: #d92d20;
}

.msa-field-error {
  min-height: 0;
  color: var(--msa-danger);
  font-size: 10px;
  font-weight: 600;
}

.msa-field-error:empty {
  display: none;
}

.msa-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  margin: 16px 0 8px;
  color: var(--msa-muted);
  font: 500 11px/1.45 Inter, sans-serif;
}

.msa-consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 1px;
  accent-color: var(--msa-green);
}

.msa-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.msa-status {
  min-height: 18px;
  margin-top: 9px;
  color: var(--msa-danger);
  font: 600 11px/1.4 Inter, sans-serif;
  text-align: center;
}

.msa-success {
  min-height: 380px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.msa-success-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #eaf8ec;
  color: var(--msa-green);
  font: 700 30px/1 Inter, sans-serif;
}

.msa-success h2,
.msa-success p {
  text-align: center;
}

.msa-success .msa-product {
  width: 100%;
  text-align: left;
}

.msa-trust-row {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 2px 0 6px;
  color: #647168;
  font: 600 10px/1.3 Inter, sans-serif;
}

.msa-recovery-root {
  position: relative;
  z-index: 10050;
}

.msa-recovery {
  position: relative;
  width: min(500px, 100%);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 26px;
  background: var(--msa-white);
  box-shadow: 0 30px 95px rgba(0, 0, 0, 0.36);
  outline: none;
  text-align: center;
  animation: msa-panel-in 220ms cubic-bezier(0.22, 0.75, 0.32, 1);
}

.msa-recovery-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.msa-recovery-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: #eff9f0;
}

.msa-recovery-cart {
  width: 62px;
  height: 55px;
}

.msa-recovery .msa-product {
  text-align: left;
}

@media (max-width: 640px) {
  .msa-launcher {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 6px;
  }

  .msa-launcher-label {
    display: none;
  }

  .msa-launcher-icon {
    width: 44px;
    height: 42px;
  }

  .msa-launcher-cart {
    width: 38px;
    height: 34px;
  }

  .msa-teaser {
    right: 12px;
    left: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    width: auto;
  }

  .msa-teaser::after {
    right: 22px;
  }

  .msa-backdrop,
  .msa-recovery-backdrop {
    display: flex;
    align-items: flex-end;
    justify-content: stretch;
    padding: 0;
    background: rgba(3, 24, 16, 0.58);
  }

  .msa-panel,
  .msa-recovery {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -22px 64px rgba(0, 32, 20, 0.28), 0 -2px 14px rgba(0, 32, 20, 0.1);
    animation: msa-mobile-sheet-in 260ms cubic-bezier(0.22, 0.75, 0.32, 1);
  }

  .msa-panel::before,
  .msa-recovery::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    z-index: 8;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: rgba(12, 54, 40, 0.18);
    transform: translateX(-50%);
  }

  .msa-panel[data-step="intent"] { max-height: 70dvh; }
  .msa-panel[data-step="qualify"] { max-height: 78dvh; }
  .msa-panel[data-step="connecting"] { max-height: 60dvh; }
  .msa-panel[data-step="contact"] { max-height: 86dvh; }
  .msa-panel[data-step="success"] { max-height: 72dvh; }

  .msa-panel > header {
    min-height: 66px;
    padding: 17px 14px 10px;
  }

  .msa-panel main,
  .msa-form {
    max-height: calc(86dvh - 70px);
    padding: 18px 16px calc(24px + env(safe-area-inset-bottom));
  }

  .msa-panel[data-step="intent"] main { max-height: calc(70dvh - 70px); }
  .msa-panel[data-step="qualify"] main { max-height: calc(78dvh - 70px); }
  .msa-panel[data-step="connecting"] main { max-height: calc(60dvh - 70px); }
  .msa-panel[data-step="success"] main { max-height: calc(72dvh - 70px); }

  .msa-panel h2,
  .msa-recovery h2 {
    font-size: 22px;
  }

  .msa-product {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .msa-product > img {
    width: 76px;
    height: 60px;
  }

  .msa-intent-option {
    min-height: 66px;
  }

  .msa-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .msa-connecting {
    min-height: 300px;
  }

  .msa-connecting-icon {
    width: 88px;
    height: 88px;
  }

  .msa-connecting-cart {
    width: 58px;
    height: 51px;
  }

  .msa-recovery {
    max-height: 72dvh;
    padding: 28px 18px calc(24px + env(safe-area-inset-bottom));
  }
}

@keyframes msa-mobile-sheet-in {
  from { opacity: 0.45; transform: translateY(38px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 380px) {
  .msa-chip-grid { grid-template-columns: 1fr; }
  .msa-panel h2,
  .msa-recovery h2 { font-size: 21px; }
}


/* Corrective refinement: optical framing and calmer hierarchy. */
.msa-launcher-icon,
.msa-teaser-brand,
.msa-logo,
.msa-connecting-icon,
.msa-recovery-icon {
  overflow: visible;
}

.msa-cart-icon {
  max-width: 100%;
  max-height: 100%;
}

.msa-launcher-cart { width: 38px; height: 34px; }
.msa-teaser-cart { width: 34px; height: 30px; }
.msa-header-cart { width: 37px; height: 33px; }
.msa-connecting-cart { width: 62px; height: 55px; }
.msa-recovery-cart { width: 56px; height: 50px; }

.msa-panel p,
.msa-recovery p {
  color: #6f7c74;
}

.msa-summary b,
.msa-note b {
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .msa-launcher,
  .msa-teaser,
  .msa-panel,
  .msa-recovery,
  .msa-progress i,
  .msa-connecting-cart,
  .msa-connecting-dots i,
  .msa-connecting-icon::before,
  .msa-connecting-icon::after {
    animation: none !important;
    transition: none !important;
  }
}
