:root {
  --amsb-ink: #0f172a;
  --amsb-muted: #475569;
  --amsb-line: rgba(15, 23, 42, 0.12);
  --amsb-surface-soft: rgba(9, 23, 43, 0.9);
  --amsb-surface-soft-2: rgba(13, 30, 53, 0.94);
  --amsb-accent: #22d3ee;
  --amsb-accent-strong: #38bdf8;
  --amsb-warm: #f59e0b;
  --amsb-shadow: 0 28px 60px rgba(2, 6, 23, 0.32);
  --amsb-radius-xl: 28px;
  --amsb-radius-lg: 20px;
  --amsb-terminal-ink: #e5f3ff;
  --amsb-terminal-muted: #9ab7d4;
  --amsb-terminal-line: rgba(103, 232, 249, 0.16);
  --amsb-terminal-glow: 0 0 24px rgba(34, 211, 238, 0.14);
  --amsb-mono: "SFMono-Regular", "Menlo", "Monaco", "Consolas", monospace;
}

.amsb-result-card,
.amsb-upgrade-card,
.amsb-thank-you-card,
.amsb-cancel-card,
.amsb-funnel-notice {
  position: relative;
  margin: 2rem auto;
  padding: clamp(1.5rem, 3vw, 3rem);
  max-width: 1040px;
  color: var(--amsb-terminal-ink);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 26%),
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(3, 12, 25, 0.98), rgba(7, 19, 37, 0.97));
  border: 1px solid var(--amsb-terminal-line);
  border-radius: var(--amsb-radius-xl);
  box-shadow: var(--amsb-shadow);
  overflow: hidden;
}

.amsb-processing-card {
  isolation: isolate;
}

.amsb-processing-shell {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
}

.amsb-processing-orb {
  position: relative;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6, #38bdf8);
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.34);
  animation: amsb-processing-pulse 1.8s ease-out infinite;
}

.amsb-processing-beam {
  width: 6rem;
  max-width: 30vw;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.1), rgba(56, 189, 248, 0.95), rgba(20, 184, 166, 0.1));
  background-size: 180% 100%;
  animation: amsb-processing-scan 1.4s linear infinite;
}

.amsb-processing-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
  font-weight: 600;
  color: var(--amsb-accent-strong);
}

.amsb-processing-status::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
  animation: amsb-processing-blink 1.3s ease-in-out infinite;
}

.amsb-processing-progress {
  position: relative;
  width: min(420px, 100%);
  height: 0.72rem;
  margin-top: 0.95rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.amsb-processing-progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.92), rgba(56, 189, 248, 0.96), rgba(37, 99, 235, 0.92));
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.32);
  animation: amsb-processing-progress 2.6s ease-in-out infinite;
}

.amsb-processing-refresh {
  position: relative;
  overflow: hidden;
}

.amsb-processing-refresh::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  transform: translateX(-140%);
  animation: amsb-processing-cta-sheen 2.7s ease-in-out infinite;
  pointer-events: none;
}

[data-amsb-processing-state="ready"] .amsb-processing-status,
[data-amsb-processing-state="ready"] .amsb-processing-status::before {
  color: #0f766e;
}

[data-amsb-processing-state="ready"] .amsb-processing-progress-bar {
  animation-duration: 0.9s;
}

.amsb-result-card::before,
.amsb-upgrade-card::before,
.amsb-thank-you-card::before,
.amsb-cancel-card::before,
.amsb-funnel-notice::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(125, 211, 252, 0.08), rgba(125, 211, 252, 0) 24%),
    linear-gradient(120deg, rgba(34, 211, 238, 0.08), transparent 48%),
    repeating-linear-gradient(
      180deg,
      rgba(148, 163, 184, 0.05) 0,
      rgba(148, 163, 184, 0.05) 1px,
      transparent 1px,
      transparent 18px
    );
  pointer-events: none;
}

.amsb-result-card > *,
.amsb-upgrade-card > *,
.amsb-thank-you-card > *,
.amsb-cancel-card > *,
.amsb-funnel-notice > * {
  position: relative;
  z-index: 1;
}

.amsb-result-kicker,
.amsb-upgrade-eyebrow,
.amsb-funnel-notice-kicker {
  margin: 0 0 0.85rem;
  color: var(--amsb-accent);
  font: 700 0.78rem/1.2 var(--amsb-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.16);
}

.amsb-result-card h2,
.amsb-upgrade-card h2,
.amsb-thank-you-card h2,
.amsb-cancel-card h2,
.amsb-funnel-notice h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: #f8fcff;
}

.amsb-result-card h3,
.amsb-upgrade-card h3,
.amsb-thank-you-card h3,
.amsb-cancel-card h3 {
  margin: 0 0 0.85rem;
  color: #f4fbff;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.amsb-result-card p,
.amsb-upgrade-card p,
.amsb-thank-you-card p,
.amsb-cancel-card p,
.amsb-funnel-notice p,
.amsb-result-card li,
.amsb-upgrade-card li,
.amsb-thank-you-card li,
.amsb-cancel-card li,
.amsb-funnel-notice li {
  color: var(--amsb-terminal-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.amsb-confidence,
.amsb-confidence-label,
.amsb-result-summary,
.amsb-upgrade-reasoning,
.amsb-upgrade-time,
.amsb-thank-you-summary,
.amsb-thank-you-path,
.amsb-thank-you-reasoning,
.amsb-thank-you-confidence,
.amsb-thank-you-time {
  margin: 0.4rem 0 0;
}

.amsb-confidence-bar {
  margin-top: 0.85rem;
  width: min(320px, 100%);
  height: 0.7rem;
  background: rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.amsb-result-columns,
.amsb-result-meaning,
.amsb-upgrade-proof,
.amsb-thank-you-delivery,
.amsb-thank-you-upsells {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.amsb-result-panel,
.amsb-result-decision,
.amsb-result-action-panel,
.amsb-result-signal-card,
.amsb-selection-influence,
.amsb-result-worklist-primary,
.amsb-result-worklist-secondary,
.amsb-result-lockbox,
.amsb-result-offer-card,
.amsb-upgrade-proof,
.amsb-upgrade-gaps,
.amsb-upgrade-offer,
.amsb-upgrade-offer-ladder,
.amsb-upgrade-alternatives,
.amsb-thank-you-delivery,
.amsb-thank-you-upsells,
.amsb-upsell-card,
.amsb-cancel-card {
  padding: 1.15rem 1.2rem;
  background: linear-gradient(180deg, rgba(8, 20, 39, 0.94), rgba(10, 24, 46, 0.92));
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: var(--amsb-radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), var(--amsb-terminal-glow);
}

.amsb-upgrade-proof,
.amsb-thank-you-delivery,
.amsb-thank-you-upsells {
  grid-template-columns: 1fr;
}

.amsb-selection-influence__note {
  margin: 0.45rem 0 0.65rem;
}

.amsb-selection-influence__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.amsb-selection-influence__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.48rem 0.58rem;
  border-radius: 12px;
  border: 1px solid rgba(103, 232, 249, 0.14);
  background: rgba(8, 20, 39, 0.54);
}

.amsb-selection-influence__list strong {
  color: #dbf4ff;
  font: 700 0.72rem/1 var(--amsb-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.amsb-thank-you-trust,
.amsb-cancel-proof {
  margin-top: 1.25rem;
}

.amsb-upgrade-offer--primary {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.9fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(37, 99, 235, 0.08)),
    linear-gradient(180deg, rgba(10, 24, 46, 0.96), rgba(8, 20, 39, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 42px rgba(2, 6, 23, 0.18);
}

.amsb-upgrade-offer-copy > :first-child,
.amsb-upgrade-offer-action > :first-child {
  margin-top: 0;
}

.amsb-upgrade-offer-copy > :last-child,
.amsb-upgrade-offer-action > :last-child {
  margin-bottom: 0;
}

.amsb-upgrade-offer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
}

.amsb-upgrade-offer-action p {
  margin: 0;
}

.amsb-result-proof {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1.15rem;
}

.amsb-result-topband {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.amsb-result-topband {
  margin-top: 1rem;
}

.amsb-result-worklist {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.72fr);
  gap: 1rem;
  align-items: start;
  margin: 1rem 0 1.2rem;
}

.amsb-result-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.amsb-result-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.14);
  background: rgba(15, 23, 42, 0.48);
  color: #dff7ff;
  font: 700 0.75rem/1 var(--amsb-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.amsb-result-chip--muted {
  color: rgba(223, 247, 255, 0.72);
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.34);
}

.amsb-result-chip--verdict.is-low {
  color: #cffafe;
  background: rgba(6, 78, 59, 0.42);
  border-color: rgba(45, 212, 191, 0.28);
}

.amsb-result-chip--verdict.is-medium {
  color: #fef3c7;
  background: rgba(120, 53, 15, 0.36);
  border-color: rgba(251, 191, 36, 0.28);
}

.amsb-result-chip--verdict.is-high {
  color: #dcfce7;
  background: rgba(20, 83, 45, 0.4);
  border-color: rgba(74, 222, 128, 0.26);
}

.amsb-result-hero-support,
.amsb-result-snapshot-detail,
.amsb-result-action-copy,
.amsb-result-action-status {
  margin: 0.45rem 0 0;
  color: rgba(223, 247, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.48;
}

.amsb-result-signal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.amsb-result-signal-card,
.amsb-result-step {
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(9, 22, 42, 0.96), rgba(7, 18, 34, 0.92));
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.amsb-result-signal-card strong,
.amsb-result-step h3 {
  display: block;
  color: #edf7ff;
  line-height: 1.3;
}

.amsb-result-signal-card strong {
  font-size: 1rem;
}

.amsb-result-snapshot-label,
.amsb-result-lockbox-label,
.amsb-result-offer-eyebrow,
.amsb-result-step-index {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--amsb-accent);
  font: 700 0.74rem/1.2 var(--amsb-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amsb-result-snapshot-detail {
  margin-top: 0.4rem;
}

.amsb-result-usage {
  grid-column: 1 / -1;
}

.amsb-result-action-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(37, 99, 235, 0.08)),
    linear-gradient(180deg, rgba(10, 24, 46, 0.96), rgba(8, 20, 39, 0.94));
}

.amsb-result-action-panel .amsb-primary-cta {
  width: 100%;
}

.amsb-result-action-panel > :first-child,
.amsb-result-proof-support > :first-child {
  margin-top: 0;
}

.amsb-result-action-panel > :last-child,
.amsb-result-proof-support > :last-child {
  margin-bottom: 0;
}

.amsb-result-action-panel h3,
.amsb-result-proof-support h3 {
  margin: 0;
  color: #edf7ff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.amsb-result-action-status {
  margin: 0;
  color: #67e8f9;
  font: 700 0.8rem/1.2 var(--amsb-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amsb-result-evidence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.amsb-result-evidence-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.7rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(103, 232, 249, 0.14);
  color: #ecfeff;
  font: 700 0.78rem/1 var(--amsb-mono);
  letter-spacing: 0.04em;
}

.amsb-result-offer,
.amsb-upgrade-price {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f4fbff;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(37, 99, 235, 0.14));
  border-radius: var(--amsb-radius-lg);
  border: 1px solid rgba(103, 232, 249, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 34px rgba(2, 6, 23, 0.18);
}

.amsb-result-lockbox-copy {
  margin: 0 0 0.9rem;
  color: rgba(223, 247, 255, 0.78);
}

.amsb-result-lockbox-label {
  margin-bottom: 0.6rem;
}

.amsb-result-offer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.amsb-result-proof-support,
.amsb-result-worklist-secondary {
  align-self: start;
}

.amsb-result-proof-support .amsb-result-offer {
  justify-content: flex-start;
}

.amsb-result-proof-support .amsb-result-cta-note {
  margin: 0;
}

.amsb-result-offer-card .amsb-result-offer {
  justify-content: flex-start;
  width: 100%;
}

.amsb-result-offer-card .amsb-primary-cta {
  width: 100%;
}

.amsb-result-worklist-primary {
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(37, 99, 235, 0.04)),
    linear-gradient(180deg, rgba(8, 20, 39, 0.95), rgba(10, 24, 46, 0.94));
}

.amsb-result-worklist-secondary {
  background: linear-gradient(180deg, rgba(9, 22, 42, 0.94), rgba(7, 18, 34, 0.9));
}

.amsb-result-offer {
  position: relative;
  overflow: hidden;
}

.amsb-result-offer::before,
.amsb-upgrade-offer--primary::before,
.amsb-thank-you-trust::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.24rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.92), rgba(37, 99, 235, 0.5));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.16);
  pointer-events: none;
}

.amsb-result-list,
.amsb-upgrade-next-step ul,
.amsb-upgrade-proof ul,
.amsb-upgrade-gaps ul,
.amsb-upgrade-offer-ladder ul,
.amsb-upgrade-alternatives ul,
.amsb-thank-you-delivery ul,
.amsb-thank-you-upsells ul,
.amsb-alternatives {
  margin: 0;
  padding: 0;
  list-style: none;
}

.amsb-result-list li,
.amsb-upgrade-next-step li,
.amsb-upgrade-proof li,
.amsb-upgrade-gaps li,
.amsb-upgrade-offer-ladder li,
.amsb-upgrade-alternatives li,
.amsb-thank-you-delivery li,
.amsb-thank-you-upsells li,
.amsb-alternatives li {
  position: relative;
  margin-top: 0.8rem;
  padding-left: 1.1rem;
}

.amsb-upgrade-offer-ladder ul,
.amsb-thank-you-upsells ul {
  display: grid;
  gap: 0.8rem;
}

.amsb-upgrade-offer-ladder li,
.amsb-thank-you-upsells .amsb-upsell-card {
  margin-top: 0;
  padding: 1rem 1rem 1rem 1.35rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 19, 33, 0.72), rgba(4, 12, 24, 0.86));
  border: 1px solid rgba(103, 232, 249, 0.1);
}

.amsb-upgrade-offer-ladder li {
  color: #f4fbff;
  font-weight: 700;
}

.amsb-upgrade-offer-ladder li p {
  margin: 0.28rem 0 0;
  color: var(--amsb-terminal-muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.5;
}

.amsb-upgrade-offer-ladder li p:first-of-type {
  color: #dff7ff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amsb-result-list li::before,
.amsb-upgrade-next-step li::before,
.amsb-upgrade-proof li::before,
.amsb-upgrade-gaps li::before,
.amsb-upgrade-offer-ladder li::before,
.amsb-upgrade-alternatives li::before,
.amsb-thank-you-delivery li::before,
.amsb-thank-you-upsells li::before,
.amsb-alternatives li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amsb-accent), var(--amsb-accent-strong));
  box-shadow: 0 0 0.65rem rgba(34, 211, 238, 0.28);
}

.amsb-upgrade-offer-ladder li::before,
.amsb-thank-you-upsells li::before {
  top: 1.15rem;
}

.amsb-upgrade-next-step {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8, 18, 34, 0.88), rgba(5, 13, 24, 0.94));
  border: 1px solid rgba(103, 232, 249, 0.08);
}

.amsb-upgrade-next-step h3 {
  margin: 0 0 0.65rem;
}

.amsb-upgrade-next-step ul {
  display: grid;
  gap: 0.55rem;
}

.amsb-upgrade-next-step li {
  margin-top: 0;
  padding-left: 1rem;
}

.amsb-upgrade-next-step li strong {
  display: block;
  color: #f4fbff;
  font-size: 0.92rem;
}

.amsb-upgrade-next-step li p {
  margin: 0.18rem 0 0;
  color: var(--amsb-terminal-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.amsb-result-next-steps,
.amsb-result-progression {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.92fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.amsb-result-step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  padding-top: 1.35rem;
}

.amsb-result-progression .amsb-result-step:first-child {
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(37, 99, 235, 0.05)),
    linear-gradient(180deg, rgba(9, 22, 42, 0.96), rgba(7, 18, 34, 0.92));
  border-color: rgba(103, 232, 249, 0.18);
}

.amsb-result-step h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.amsb-result-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.22);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(37, 99, 235, 0.18));
  color: #edf7ff;
  font: 700 0.95rem/1 var(--amsb-mono);
}

.amsb-result-step p:last-child {
  margin: 0;
}

@keyframes amsb-processing-pulse {
  0% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.34);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 14px rgba(20, 184, 166, 0);
  }
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
  }
}

@keyframes amsb-processing-scan {
  0% {
    background-position: 140% 0;
  }
  100% {
    background-position: -40% 0;
  }
}

@keyframes amsb-processing-progress {
  0% {
    width: 16%;
    transform: translateX(-8%);
  }
  50% {
    width: 68%;
    transform: translateX(34%);
  }
  100% {
    width: 16%;
    transform: translateX(500%);
  }
}

@keyframes amsb-processing-blink {
  0%, 100% {
    opacity: 0.28;
  }
  50% {
    opacity: 1;
  }
}

@keyframes amsb-processing-cta-sheen {
  0%, 100% {
    transform: translateX(-140%);
  }
  55% {
    transform: translateX(160%);
  }
}

.amsb-primary-cta,
.amsb-upsell-cta,
.amsb-alternatives a,
.amsb-thank-you-actions a,
.amsb-cancel-card a {
  color: var(--amsb-accent);
}

.amsb-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1d4ed8 48%, #22d3ee);
  color: #f8fafc;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 18px 30px rgba(34, 211, 238, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease, border-color 180ms ease;
  border: 1px solid rgba(125, 211, 252, 0.18);
}

.amsb-primary-cta::before,
.amsb-secondary-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0) 82%);
  transform: translateX(-140%);
  transition: transform 440ms ease;
  pointer-events: none;
}

.amsb-primary-cta:hover,
.amsb-primary-cta:focus-visible,
.amsb-secondary-link:hover,
.amsb-secondary-link:focus-visible,
.amsb-upsell-cta:hover,
.amsb-upsell-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 24px 42px rgba(34, 211, 238, 0.28);
}

.amsb-primary-cta:hover::before,
.amsb-primary-cta:focus-visible::before,
.amsb-secondary-link:hover::before,
.amsb-secondary-link:focus-visible::before {
  transform: translateX(140%);
}

.amsb-primary-cta.is-disabled {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.72));
  color: rgba(223, 247, 255, 0.62);
  box-shadow: none;
  border-color: rgba(103, 232, 249, 0.08);
  cursor: not-allowed;
  opacity: 0.86;
}

.amsb-primary-cta.is-disabled::before {
  display: none;
}

.amsb-upgrade-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.amsb-upgrade-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.15rem;
  position: relative;
}

.amsb-upgrade-snapshot-item {
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(9, 22, 42, 0.96), rgba(7, 18, 34, 0.92));
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.amsb-upgrade-snapshot-item strong {
  display: block;
  color: #edf7ff;
  font-size: 1rem;
  line-height: 1.3;
}

.amsb-upgrade-snapshot-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--amsb-accent);
  font: 700 0.76rem/1.2 var(--amsb-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amsb-upgrade-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  color: var(--amsb-accent);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(103, 232, 249, 0.12);
}

.amsb-upgrade-status,
.amsb-result-status,
.amsb-thank-you-warning {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--amsb-warm);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.14);
  color: #f8d38a;
}

.amsb-thank-you-trust h3,
.amsb-cancel-proof h3 {
  color: #f4fbff;
}

.amsb-thank-you-primary {
  margin-top: 1rem;
}

.amsb-upgrade-offer-ladder li.is-recommended {
  padding: 0.95rem 1rem 0.95rem 1.4rem;
  background: rgba(15, 118, 110, 0.08);
  border-radius: 14px;
}

.amsb-upgrade-offer-ladder li.is-recommended::before {
  top: 1.15rem;
}

.amsb-alternative-meta,
.amsb-upsell-price {
  color: #edf7ff;
  font-weight: 600;
}

.amsb-result-cta-note,
.amsb-upgrade-cta-note {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: var(--amsb-terminal-muted);
}

.amsb-live-experiment-note {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: #ecfeff;
}

.amsb-result-summary {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.55rem;
  color: #dff7ff;
  font: 700 0.78rem/1.2 var(--amsb-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amsb-upgrade-card {
  isolation: isolate;
}

/* CRO: primary offer emphasis + trust */
.amsb-upgrade-offer-copy h3 {
  font-size: clamp(1.12rem, 2.3vw, 1.38rem);
  color: #fbfeff;
  letter-spacing: -0.02em;
}

.amsb-upgrade-offer--primary .amsb-upgrade-price {
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  font-weight: 800;
  color: #ecfeff;
}

.amsb-upgrade-trust-row {
  margin: 0.7rem 0 0;
  max-width: 42ch;
  font-size: 0.84rem;
  line-height: 1.42;
  color: rgba(154, 183, 212, 0.96);
  text-align: right;
  align-self: stretch;
}

.amsb-upgrade-offer-action .amsb-primary-cta {
  min-height: 3.5rem;
  padding: 1rem 1.55rem;
  font-size: 1.04rem;
  box-shadow: 0 26px 50px rgba(34, 211, 238, 0.28);
}

/* CRO: de-emphasize secondary funnel blocks below the primary offer */
.amsb-upgrade-next-step,
.amsb-upgrade-offer-ladder {
  opacity: 0.9;
  border-color: rgba(103, 232, 249, 0.07);
  background: linear-gradient(180deg, rgba(8, 18, 34, 0.72), rgba(5, 13, 24, 0.82));
}

.amsb-upgrade-next-step h3,
.amsb-upgrade-offer-ladder > h3 {
  font-size: 0.94rem;
  color: rgba(244, 251, 255, 0.88);
  letter-spacing: 0.01em;
}

.amsb-upgrade-proof {
  border-color: rgba(103, 232, 249, 0.09);
  background: linear-gradient(180deg, rgba(8, 18, 34, 0.78), rgba(5, 13, 24, 0.88));
}

.amsb-upgrade-proof > h3 {
  font-size: 0.95rem;
  color: rgba(244, 251, 255, 0.9);
}

/* CRO: result → upgrade story — hero reads as one continuous beat */
.amsb-result-card .amsb-result-kicker {
  margin-bottom: 0.65rem;
}

.amsb-result-card h2 {
  text-shadow: 0 2px 28px rgba(34, 211, 238, 0.14);
}

.amsb-result-action-panel h3 {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.amsb-thank-you-card {
  isolation: isolate;
}

.amsb-thank-you-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.88), rgba(34, 211, 238, 0.94), rgba(37, 99, 235, 0.84));
  opacity: 0.92;
  pointer-events: none;
}

.amsb-thank-you-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.3rem 0 0;
  color: #ecfeff;
  font-weight: 700;
}

.amsb-thank-you-summary::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6, #67e8f9);
  box-shadow: 0 0 0.7rem rgba(34, 211, 238, 0.38);
}

.amsb-thank-you-offer {
  margin: 0.65rem 0 0;
  color: #dff7ff;
  font: 700 0.76rem/1.2 var(--amsb-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amsb-thank-you-trust {
  position: relative;
  margin-top: 1.2rem;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(37, 99, 235, 0.08)),
    linear-gradient(180deg, rgba(10, 24, 46, 0.96), rgba(8, 20, 39, 0.94));
  border-color: rgba(103, 232, 249, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 42px rgba(2, 6, 23, 0.18);
}

.amsb-upgrade-offer--primary {
  position: relative;
  overflow: visible;
  border-color: rgba(103, 232, 249, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 44px rgba(2, 6, 23, 0.22);
}

.amsb-thank-you-trust::before {
  content: "";
  position: absolute;
  inset: 0.9rem auto 0.9rem 0.78rem;
  width: 0.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.9), rgba(37, 99, 235, 0.44));
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.2);
}

.amsb-thank-you-trust > * {
  position: relative;
  z-index: 1;
}

.amsb-thank-you-trust h3,
.amsb-thank-you-trust p,
.amsb-thank-you-trust .amsb-thank-you-primary {
  margin-left: 0.75rem;
}

.amsb-thank-you-primary .amsb-primary-cta {
  min-width: 14rem;
}

.amsb-thank-you-path,
.amsb-thank-you-reasoning,
.amsb-thank-you-confidence,
.amsb-thank-you-time {
  position: relative;
  padding-left: 0.92rem;
}

.amsb-thank-you-path::before,
.amsb-thank-you-reasoning::before,
.amsb-thank-you-confidence::before,
.amsb-thank-you-time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amsb-accent), #14b8a6);
  box-shadow: 0 0 0.65rem rgba(34, 211, 238, 0.28);
}

.amsb-thank-you-delivery {
  margin-top: 1.35rem;
  background:
    linear-gradient(180deg, rgba(9, 22, 42, 0.96), rgba(7, 18, 34, 0.92)),
    rgba(7, 19, 33, 0.88);
  border-color: rgba(103, 232, 249, 0.14);
}

.amsb-thank-you-status-list {
  display: grid;
  gap: 0.35rem;
}

.amsb-thank-you-actions {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(103, 232, 249, 0.12);
}

.amsb-thank-you-actions a {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.amsb-result-card .amsb-primary-cta,
.amsb-thank-you-primary .amsb-primary-cta {
  min-height: 3.45rem;
  box-shadow: 0 22px 40px rgba(34, 211, 238, 0.22);
}

.amsb-result-card .amsb-result-cta-note,
.amsb-upgrade-card .amsb-upgrade-cta-note,
.amsb-thank-you-card .amsb-thank-you-offer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.amsb-result-card .amsb-result-cta-note::before,
.amsb-upgrade-card .amsb-upgrade-cta-note::before,
.amsb-thank-you-card .amsb-thank-you-offer::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.94), rgba(37, 99, 235, 0.82));
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.22);
}

.amsb-upsell-card strong {
  display: inline-block;
  margin-right: 0.25rem;
  color: #f4fbff;
  font-size: 1.02rem;
}

.amsb-upsell-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  font-weight: 700;
  text-decoration: none;
}

.amsb-cancel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.amsb-cancel-actions p,
.amsb-thank-you-primary {
  margin-bottom: 0;
}

.amsb-cancel-actions-secondary {
  margin-top: 0;
}

.amsb-thank-you-actions,
.amsb-cancel-card p:last-child {
  margin-top: 1.5rem;
}

.amsb-thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.amsb-thank-you-actions a,
.amsb-cancel-actions-secondary a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  background: linear-gradient(180deg, rgba(9, 22, 42, 0.94), rgba(7, 18, 34, 0.92));
  color: #cffafe;
  font-weight: 700;
  text-decoration: none;
}

.amsb-thank-you-actions span {
  display: none;
}

.amsb-thank-you-delivery p[data-qa="order-status"] {
  color: rgba(191, 219, 254, 0.74);
  font-size: 0.88rem;
}

.amsb-funnel-notice-proof {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(9, 22, 42, 0.96), rgba(7, 18, 34, 0.92));
  border: 1px solid rgba(103, 232, 249, 0.12);
  border-radius: var(--amsb-radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), var(--amsb-terminal-glow);
}

.amsb-funnel-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  margin-top: 1rem;
}

.amsb-funnel-notice h2,
.amsb-surface-empty h2 {
  margin-bottom: 0.72rem;
}

.amsb-funnel-notice > p,
.amsb-surface-empty-copy {
  max-width: 44rem;
  color: rgba(213, 230, 246, 0.8);
}

.amsb-funnel-notice-proof h3,
.amsb-surface-message h3 {
  margin-bottom: 0.65rem;
  color: #f8fcff;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.amsb-funnel-notice-proof .amsb-result-list,
.amsb-surface-message .amsb-result-list {
  display: grid;
  gap: 0.48rem;
}

.amsb-funnel-notice-actions .amsb-primary-cta,
.amsb-surface-actions .amsb-primary-cta {
  min-height: 3.25rem;
  box-shadow: 0 18px 34px rgba(34, 211, 238, 0.2);
}

.amsb-funnel-notice-actions .amsb-secondary-link,
.amsb-surface-actions .amsb-secondary-cta {
  min-height: 3rem;
}

.amsb-upgrade-card .amsb-upgrade-hero-body,
.amsb-thank-you-card .amsb-thank-you-summary,
.amsb-thank-you-card .amsb-thank-you-reasoning,
.amsb-result-card .amsb-reasoning {
  max-width: 42rem;
}

.amsb-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(9, 22, 42, 0.96), rgba(7, 18, 34, 0.92));
  color: var(--amsb-accent);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 800px) {
  .amsb-result-topband,
  .amsb-result-signal-summary,
  .amsb-result-worklist,
  .amsb-result-next-steps,
  .amsb-result-proof,
  .amsb-upgrade-proof,
  .amsb-thank-you-delivery,
  .amsb-thank-you-upsells {
    grid-template-columns: 1fr;
  }

  .amsb-result-card,
  .amsb-upgrade-card,
  .amsb-thank-you-card,
  .amsb-cancel-card,
  .amsb-funnel-notice {
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 22px;
  }

  .amsb-result-card h2,
  .amsb-upgrade-card h2,
  .amsb-thank-you-card h2,
  .amsb-cancel-card h2,
  .amsb-funnel-notice h2 {
    font-size: clamp(1.46rem, 6.6vw, 1.96rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }

  .amsb-upgrade-card p,
  .amsb-result-card p,
  .amsb-thank-you-card p,
  .amsb-result-card li,
  .amsb-upgrade-card li,
  .amsb-thank-you-card li {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .amsb-result-summary,
  .amsb-upgrade-hero-body,
  .amsb-upgrade-reasoning,
  .amsb-upgrade-time,
  .amsb-upgrade-cta-note,
  .amsb-thank-you-summary,
  .amsb-thank-you-path,
  .amsb-thank-you-reasoning,
  .amsb-thank-you-confidence,
  .amsb-thank-you-time,
  .amsb-thank-you-delivery p,
  .amsb-thank-you-trust p {
    max-width: 32ch;
  }

  .amsb-upgrade-cta-note,
  .amsb-thank-you-delivery p[data-qa="order-status"] {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .amsb-upgrade-hero-body,
  .amsb-upgrade-next-step,
  .amsb-upgrade-reasoning,
  .amsb-thank-you-delivery,
  .amsb-thank-you-upsells {
    margin-top: 1rem;
  }

  .amsb-upgrade-snapshot {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1rem;
  }

  .amsb-upgrade-snapshot-item {
    padding: 0.82rem 0.9rem;
  }

  .amsb-result-signal-card,
  .amsb-result-step {
    padding: 0.88rem 0.9rem;
  }

  .amsb-upgrade-snapshot-item strong {
    font-size: 0.95rem;
    line-height: 1.28;
  }

  .amsb-result-signal-card strong,
  .amsb-result-step h3 {
    font-size: 0.95rem;
    line-height: 1.28;
  }

  .amsb-upgrade-snapshot-label,
  .amsb-result-snapshot-label,
  .amsb-result-lockbox-label,
  .amsb-result-offer-eyebrow,
  .amsb-result-step-index,
  .amsb-thank-you-offer {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
  }

  .amsb-upgrade-offer--primary {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .amsb-upgrade-offer-action {
    align-items: stretch;
    justify-content: flex-start;
    position: sticky;
    bottom: max(0.25rem, env(safe-area-inset-bottom));
    z-index: 8;
    align-self: stretch;
    padding-top: 0.55rem;
    padding-bottom: max(0.45rem, env(safe-area-inset-bottom));
    margin-top: 0.15rem;
    background: linear-gradient(
      180deg,
      rgba(8, 20, 39, 0) 0%,
      rgba(8, 20, 39, 0.82) 22%,
      rgba(7, 18, 34, 0.97) 100%
    );
    border-radius: 0 0 16px 16px;
  }

  .amsb-upgrade-offer-action .amsb-primary-cta,
  .amsb-upgrade-offer-action .amsb-primary-cta.is-disabled {
    width: 100%;
  }

  .amsb-result-card .amsb-primary-cta,
  .amsb-result-card .amsb-result-offer,
  .amsb-result-card .amsb-result-cta-note {
    width: 100%;
  }

  .amsb-result-card .amsb-primary-cta {
    justify-content: center;
  }

  .amsb-result-card .amsb-result-proof {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .amsb-result-card .amsb-result-worklist,
  .amsb-result-card .amsb-result-signal-summary {
    gap: 0.75rem;
    margin-top: 0.95rem;
  }

  .amsb-result-card .amsb-result-panel,
  .amsb-result-card .amsb-result-decision,
  .amsb-result-card .amsb-result-action-panel,
  .amsb-result-card .amsb-result-signal-card,
  .amsb-result-card .amsb-result-worklist-primary,
  .amsb-result-card .amsb-result-worklist-secondary,
  .amsb-result-card .amsb-result-lockbox,
  .amsb-result-card .amsb-result-offer-card {
    padding: 0.92rem 0.9rem;
  }

  .amsb-result-card .amsb-alternatives {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.95rem;
  }

  .amsb-result-card .amsb-result-summary {
    margin-bottom: 0.45rem;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .amsb-result-card .amsb-result-snapshot-detail,
  .amsb-result-card .amsb-result-hero-support,
  .amsb-result-card .amsb-result-action-copy,
  .amsb-result-card .amsb-result-action-status {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .amsb-result-card .amsb-confidence-bar {
    margin-top: 0.7rem;
  }

  .amsb-result-card .amsb-reasoning {
    margin-top: 0.7rem;
  }

  .amsb-result-card .amsb-result-next-steps {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .amsb-result-card .amsb-result-evidence-tags {
    margin-top: 0.8rem;
    gap: 0.45rem;
  }

  .amsb-result-card .amsb-result-offer {
    padding: 1rem 0.9rem;
    font-size: 0.96rem;
  }

  .amsb-result-card .amsb-result-chip-row {
    gap: 0.45rem;
    margin-bottom: 0.75rem;
  }

  .amsb-result-card .amsb-result-chip {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .amsb-result-card .amsb-result-step-number {
    width: 1.8rem;
    height: 1.8rem;
    margin-bottom: 0.55rem;
    font-size: 0.88rem;
  }

  .amsb-result-card .amsb-result-offer,
  .amsb-upgrade-offer--primary,
  .amsb-thank-you-trust {
    border-radius: 18px;
  }

  .amsb-result-card .amsb-result-cta-note {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .amsb-cancel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .amsb-thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .amsb-funnel-notice-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .amsb-cancel-actions .amsb-primary-cta,
  .amsb-thank-you-actions a,
  .amsb-cancel-actions-secondary a {
    width: 100%;
  }

  .amsb-funnel-notice-actions .amsb-primary-cta,
  .amsb-funnel-notice-actions .amsb-secondary-link {
    width: 100%;
  }

  .amsb-funnel-notice-proof {
    margin-top: 0.58rem;
    padding: 0.64rem 0.72rem;
  }

  .amsb-funnel-notice-actions {
    margin-top: 0.58rem;
    gap: 0.62rem;
  }

  .amsb-funnel-notice > p,
  .amsb-funnel-notice-proof .amsb-result-list {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .amsb-funnel-notice-actions .amsb-primary-cta,
  .amsb-funnel-notice-actions .amsb-secondary-link {
    min-height: 2.95rem;
  }

  .amsb-thank-you-trust {
    margin-top: 1rem;
  }

  .amsb-thank-you-trust::before {
    inset: 0.75rem auto 0.75rem 0.6rem;
    width: 0.16rem;
  }

  .amsb-thank-you-trust h3,
  .amsb-thank-you-trust p,
  .amsb-thank-you-trust .amsb-thank-you-primary {
    margin-left: 0.5rem;
  }

  .amsb-thank-you-primary .amsb-primary-cta {
    width: 100%;
    min-width: 0;
  }

  .amsb-result-card .amsb-primary-cta,
  .amsb-thank-you-primary .amsb-primary-cta {
    min-height: 3.15rem;
  }

  .amsb-upgrade-offer-action .amsb-primary-cta {
    min-height: 3.35rem;
  }

  .amsb-upgrade-trust-row {
    text-align: left;
    max-width: none;
  }

  .amsb-thank-you-actions {
    padding-top: 0.15rem;
  }

  .amsb-thank-you-delivery li,
  .amsb-upgrade-next-step li,
  .amsb-upgrade-proof li,
  .amsb-upgrade-gaps li {
    margin-top: 0.65rem;
  }

  .amsb-upgrade-next-step li {
    margin-top: 0;
  }
}
