:root {
  color-scheme: light;
  --ljsc-navy: #071a33;
  --ljsc-navy-soft: #17324f;
  --ljsc-blue: #1769e0;
  --ljsc-blue-hover: #0f59c6;
  --ljsc-blue-soft: #eaf2ff;
  --ljsc-line: #dce5f0;
  --ljsc-muted: #5d6d80;
  --ljsc-bg: #f4f7fb;
  --ljsc-success: #118052;
  --ljsc-white: #fff;
  --ljsc-shadow: 0 24px 60px rgba(7, 26, 51, .09);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ljsc-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ljsc-navy);
  background:
    radial-gradient(circle at 8% 4%, rgba(23, 105, 224, .09), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(57, 189, 248, .08), transparent 25rem),
    var(--ljsc-bg);
  font: 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

.ljsc-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 64px;
}

.ljsc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.ljsc-brand {
  display: inline-flex;
  border-radius: 10px;
  text-decoration: none;
}

.ljsc-brand img {
  display: block;
  width: 150px;
  height: auto;
}

.ljsc-brand:focus-visible,
button:focus-visible,
.ljsc-button:focus-visible {
  outline: 3px solid #1769e0;
  outline-offset: 3px;
}

.ljsc-security-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ljsc-navy-soft);
}

.ljsc-security-label > span:last-child {
  display: grid;
  line-height: 1.2;
}

.ljsc-security-label strong {
  font-size: 13px;
}

.ljsc-security-label small {
  margin-top: 3px;
  color: var(--ljsc-muted);
  font-size: 11px;
}

.ljsc-security-mark,
.ljsc-trust-icon {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5f7ef;
}

.ljsc-security-mark::before,
.ljsc-trust-icon::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 9px;
  height: 6px;
  border-left: 2px solid var(--ljsc-success);
  border-bottom: 2px solid var(--ljsc-success);
  transform: rotate(-45deg);
}

.ljsc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
  gap: 24px;
  align-items: start;
}

.ljsc-card {
  border: 1px solid rgba(204, 217, 232, .92);
  border-radius: 22px;
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--ljsc-shadow);
}

.ljsc-form-card {
  padding: 32px;
}

.ljsc-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: #5d6d80;
  font-size: 12px;
  font-weight: 700;
}

.ljsc-progress > span:not(.ljsc-progress-line) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.ljsc-progress b {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #cfd9e5;
  border-radius: 50%;
  background: #fff;
  font-size: 11px;
}

.ljsc-progress .ljsc-progress-current {
  color: var(--ljsc-blue);
}

.ljsc-progress-current b {
  border-color: var(--ljsc-blue);
  background: var(--ljsc-blue);
  color: #fff;
}

.ljsc-progress-line {
  width: 42px;
  height: 1px;
  background: #d7e0eb;
}

.ljsc-title-group {
  margin-bottom: 26px;
}

.ljsc-title-group h1,
.ljsc-summary h2,
.ljsc-return-card h1,
.ljsc-card > h1 {
  margin: 0;
  color: var(--ljsc-navy);
  line-height: 1.13;
  letter-spacing: -.025em;
}

.ljsc-title-group h1 {
  font-size: clamp(30px, 4vw, 39px);
}

.ljsc-title-group > p:last-child {
  max-width: 570px;
  margin: 11px 0 0;
  color: var(--ljsc-muted);
}

.ljsc-eyebrow {
  margin: 0 0 8px;
  color: var(--ljsc-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .105em;
  text-transform: uppercase;
}

form {
  display: grid;
  gap: 17px;
}

.ljsc-payment-selector {
  display: grid;
  gap: 11px;
  min-width: 0;
  margin: 0 0 3px;
  border: 0;
  padding: 0;
}

.ljsc-payment-selector legend {
  margin-bottom: 10px;
  padding: 0;
  color: var(--ljsc-navy-soft);
  font-size: 14px;
  font-weight: 800;
}

.ljsc-payment-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.ljsc-payment-option {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  min-height: 68px;
  border: 1px solid #bdcad8;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease, transform .16s ease;
}

.ljsc-payment-option:hover {
  border-color: #86a8d3;
  transform: translateY(-1px);
}

.ljsc-payment-option:focus-within {
  outline: 3px solid #1769e0;
  outline-offset: 2px;
}

.ljsc-payment-option.is-selected,
.ljsc-payment-option:has(input:checked) {
  border-color: var(--ljsc-blue);
  background: #f6f9ff;
  box-shadow: 0 0 0 1px var(--ljsc-blue), 0 8px 20px rgba(23, 105, 224, .09);
}

.ljsc-payment-option.is-disabled {
  opacity: .52;
  cursor: not-allowed;
  filter: grayscale(.35);
}

.ljsc-payment-option.is-disabled:hover {
  border-color: #bdcad8;
  transform: none;
}

.ljsc-payment-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ljsc-method-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #edf3fb;
}

.ljsc-method-card::before {
  content: "";
  width: 23px;
  height: 16px;
  border: 2px solid #31506f;
  border-radius: 3px;
  background: linear-gradient(to bottom, transparent 4px, #31506f 4px, #31506f 7px, transparent 7px);
}

.ljsc-method-pix {
  background: #eaf9f7;
}

.ljsc-method-pix img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.ljsc-payment-copy {
  display: block;
  min-width: 0;
  line-height: 1.25;
}

.ljsc-payment-copy strong {
  color: var(--ljsc-navy);
  font-size: 15px;
  font-weight: 750;
}

.ljsc-option-check {
  position: relative;
  width: 19px;
  height: 19px;
  border: 1.5px solid #aebdcd;
  border-radius: 50%;
}

.ljsc-payment-option.is-selected .ljsc-option-check,
.ljsc-payment-option:has(input:checked) .ljsc-option-check {
  border-color: var(--ljsc-blue);
  background: var(--ljsc-blue);
}

.ljsc-payment-option.is-selected .ljsc-option-check::after,
.ljsc-payment-option:has(input:checked) .ljsc-option-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}

.ljsc-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.ljsc-field {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  color: var(--ljsc-navy-soft);
  font-size: 14px;
  font-weight: 700;
}

.ljsc-pix-document[hidden] {
  display: none !important;
}

.ljsc-field small {
  color: var(--ljsc-muted);
  font-size: 11px;
  font-weight: 500;
}

input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #b8c6d6;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  color: var(--ljsc-navy);
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

input::placeholder {
  color: #66778a;
}

input:hover {
  border-color: #8fa2b7;
}

input:focus {
  border-color: var(--ljsc-blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(23, 105, 224, .13);
}

input:user-invalid {
  border-color: #cf4651;
}

button,
.ljsc-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #1b73ec, #145dcc);
  box-shadow: 0 10px 24px rgba(23, 105, 224, .22);
  color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

button:hover,
.ljsc-button:hover {
  background: linear-gradient(135deg, #1769e0, var(--ljsc-blue-hover));
  box-shadow: 0 13px 28px rgba(23, 105, 224, .28);
  transform: translateY(-1px);
}

button:active,
.ljsc-button:active {
  transform: translateY(0);
}

button:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.ljsc-button-arrow {
  font-size: 21px;
  line-height: .8;
}

.ljsc-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 13px 0 0;
  color: var(--ljsc-muted);
  font-size: 12px;
  text-align: center;
}

.ljsc-secure-note > span[aria-hidden="true"] {
  flex: 0 0 auto;
  position: relative;
  width: 12px;
  height: 10px;
  border: 1.5px solid #7c8da1;
  border-radius: 2px;
}

.ljsc-secure-note > span[aria-hidden="true"]::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -7px;
  width: 5px;
  height: 6px;
  border: 1.5px solid #7c8da1;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.ljsc-summary {
  position: sticky;
  top: 24px;
  overflow: hidden;
  padding: 28px;
}

.ljsc-summary::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--ljsc-blue), #49b8ed);
}

.ljsc-summary-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.ljsc-summary h2 {
  color: #2b435d;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.ljsc-plan-badge {
  flex: 0 0 auto;
  border: 1px solid #c9dcf8;
  border-radius: 999px;
  background: var(--ljsc-blue-soft);
  color: #1357ad;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 800;
}

.ljsc-price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin: 18px 0 21px;
}

.ljsc-price strong {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
  letter-spacing: 0;
}

.ljsc-price > span {
  color: #5d6d80;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .01em;
  white-space: nowrap;
}

.ljsc-price .ljsc-currency {
  color: var(--ljsc-navy-soft);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -.01em;
}

.ljsc-price .ljsc-amount {
  color: var(--ljsc-navy);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.ljsc-quota {
  display: grid;
  gap: 2px;
  border: 1px solid #d6e5fa;
  border-radius: 15px;
  background: linear-gradient(145deg, #f4f8ff, #eef5ff);
  padding: 16px;
}

.ljsc-quota > span,
.ljsc-quota small {
  color: var(--ljsc-muted);
  font-size: 11px;
}

.ljsc-quota strong {
  color: #0d4f9f;
  font-size: 21px;
  letter-spacing: -.01em;
}

.ljsc-benefits {
  display: grid;
  gap: 11px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.ljsc-benefits li {
  position: relative;
  padding-left: 27px;
  color: var(--ljsc-navy-soft);
  font-size: 13px;
}

.ljsc-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: #e3f6ed;
  color: var(--ljsc-success);
  font-size: 11px;
  font-weight: 900;
}

.ljsc-summary-trust {
  display: flex;
  align-items: center;
  gap: 11px;
  border-top: 1px solid var(--ljsc-line);
  padding-top: 19px;
}

.ljsc-summary-trust p {
  display: grid;
  gap: 2px;
  margin: 0;
  line-height: 1.25;
}

.ljsc-summary-trust strong {
  font-size: 12px;
}

.ljsc-summary-trust small {
  color: var(--ljsc-muted);
  font-size: 11px;
}

.ljsc-notice,
.ljsc-error {
  border-radius: 11px;
  padding: 12px 14px;
  font-size: 13px;
}

.ljsc-notice {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  border: 1px solid #f3d37c;
  background: #fff7de;
  color: #79570a;
}

.ljsc-notice > span:last-child {
  display: grid;
  gap: 2px;
}

.ljsc-notice strong,
.ljsc-notice small {
  display: block;
}

.ljsc-recovery-checkout-page .ljsc-notice {
  border-color: #c8dcf7;
  background: #f2f7fe;
  color: var(--ljsc-navy-soft);
}

.ljsc-recovery-checkout-page .ljsc-notice strong {
  color: var(--ljsc-navy);
}

.ljsc-recovery-checkout-page .ljsc-notice small {
  color: var(--ljsc-muted);
  font-size: 12px;
}

.ljsc-cancelled-notice {
  display: flex;
  align-items: center;
  gap: 11px;
  border-color: #d7e5f6;
  background: #f4f8fd;
  color: var(--ljsc-navy-soft);
}

.ljsc-cancelled-notice > span:last-child {
  display: grid;
  gap: 1px;
}

.ljsc-cancelled-notice strong {
  color: var(--ljsc-navy);
  font-size: 13px;
}

.ljsc-cancelled-notice small {
  color: var(--ljsc-muted);
  font-size: 12px;
}

.ljsc-notice-icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e4eefb;
}

.ljsc-notice-icon::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 7px;
  width: 2px;
  height: 9px;
  border-radius: 2px;
  background: #315f94;
  box-shadow: 0 12px 0 #315f94;
}

.ljsc-error {
  margin-bottom: 16px;
  border: 1px solid #f1b9bd;
  background: #fff0f1;
  color: #8b1717;
}

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

.ljsc-return-shell {
  max-width: 790px;
}

.ljsc-return-header {
  margin-bottom: 18px;
}

.ljsc-return-card {
  padding: 44px;
  text-align: center;
}

.ljsc-recovery-card {
  overflow: hidden;
  padding: 36px;
  text-align: left;
}

.ljsc-recovery-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1769e0, #4a94f4);
}

.ljsc-recovery-card {
  position: relative;
}

.ljsc-recovery-status {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.ljsc-recovery-status .ljsc-status-icon {
  margin: 2px 0 0;
}

.ljsc-recovery-status .ljsc-eyebrow {
  margin-bottom: 6px;
  color: #145dcc;
}

.ljsc-recovery-status h1 {
  font-size: clamp(28px, 5vw, 38px);
}

.ljsc-recovery-status .ljsc-return-message {
  max-width: 570px;
  margin: 11px 0 0;
}

.ljsc-status-recovery {
  border: 1px solid #c8dcf7;
  background: #eaf2ff;
}

.ljsc-status-recovery::after {
  inset: auto;
  left: 27px;
  top: 15px;
  width: 4px;
  height: 17px;
  border: 0;
  border-radius: 999px;
  background: #1769e0;
  box-shadow: 0 22px 0 #1769e0;
  transform: none;
}

.ljsc-recovery-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 0 0;
  border: 1px solid #dbe5ef;
  border-radius: 14px;
  background: #f8fafc;
  padding: 13px 16px;
}

.ljsc-recovery-order > span {
  display: grid;
  gap: 1px;
}

.ljsc-recovery-order small {
  color: var(--ljsc-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ljsc-recovery-order strong {
  color: var(--ljsc-navy-soft);
  font-size: 14px;
}

.ljsc-recovery-order > strong {
  color: var(--ljsc-navy);
  font-size: 18px;
  white-space: nowrap;
}

.ljsc-recovery-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.ljsc-recovery-button {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  min-height: 60px;
  border: 1px solid #cad7e5;
  border-radius: 14px;
  background: #fff;
  color: var(--ljsc-navy);
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease, transform .16s ease;
}

.ljsc-recovery-button:hover {
  border-color: #89a6c6;
  box-shadow: 0 10px 22px rgba(7, 26, 51, .08);
  transform: translateY(-1px);
}

.ljsc-recovery-button:focus-visible {
  outline: 3px solid #1769e0;
  outline-offset: 3px;
}

.ljsc-recovery-button-pix {
  border-color: #0b7a5b;
  background: linear-gradient(135deg, #0b7a5b, #096449);
  box-shadow: 0 10px 24px rgba(13, 137, 104, .19);
  color: #fff;
}

.ljsc-recovery-button-pix:hover {
  border-color: #096449;
  background: linear-gradient(135deg, #096f53, #075840);
  box-shadow: 0 12px 26px rgba(13, 137, 104, .25);
}

.ljsc-recovery-button-card.is-primary {
  border-color: var(--ljsc-blue);
  background: linear-gradient(135deg, #1b73ec, #145dcc);
  box-shadow: 0 10px 24px rgba(23, 105, 224, .2);
  color: #fff;
}

.ljsc-recovery-method-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
}

.ljsc-recovery-method-icon img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.ljsc-recovery-button-card:not(.is-primary) .ljsc-recovery-method-icon {
  background: #edf3fb;
}

.ljsc-recovery-card-icon::before {
  content: "";
  width: 21px;
  height: 14px;
  border: 2px solid #31506f;
  border-radius: 3px;
  background: linear-gradient(to bottom, transparent 3px, #31506f 3px, #31506f 6px, transparent 6px);
}

.ljsc-recovery-button-card.is-primary .ljsc-recovery-card-icon::before {
  border-color: #31506f;
}

.ljsc-recovery-arrow {
  justify-self: end;
  font-size: 20px;
  font-weight: 500;
}

.ljsc-recovery-button.is-loading {
  pointer-events: none;
  opacity: .72;
  transform: none;
}

.ljsc-recovery-button.is-loading .ljsc-recovery-arrow {
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  font-size: 0;
  animation: ljsc-spin .75s linear infinite;
}

@keyframes ljsc-spin {
  to { transform: rotate(360deg); }
}

.ljsc-recovery-guidance {
  margin: 9px 0 0;
  color: var(--ljsc-muted);
  font-size: 11px;
  text-align: center;
}

.ljsc-recovery-assurance {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  border-top: 1px solid #e4ebf2;
  padding-top: 20px;
}

.ljsc-recovery-assurance .ljsc-security-mark {
  width: 34px;
  height: 34px;
}

.ljsc-recovery-assurance .ljsc-security-mark::before {
  left: 11px;
  top: 9px;
}

.ljsc-recovery-assurance p {
  display: grid;
  gap: 1px;
  margin: 0;
}

.ljsc-recovery-assurance strong {
  color: var(--ljsc-navy-soft);
  font-size: 12px;
}

.ljsc-recovery-assurance small {
  color: var(--ljsc-muted);
  font-size: 11px;
}

.ljsc-recovery-support {
  display: table;
  margin: 18px auto 0;
  color: #4e6279;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 3px;
}

.ljsc-recovery-error {
  margin: 16px 0 0;
  border: 1px solid #f1b9bd;
  border-radius: 11px;
  background: #fff0f1;
  padding: 11px 13px;
  color: #8b1717;
  font-size: 12px;
  text-align: center;
}

.ljsc-status-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
}

.ljsc-status-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}

.ljsc-status-success {
  background: #138a4b;
}

.ljsc-status-pending {
  background: #d38400;
}

.ljsc-status-error {
  background: #b42318;
}

.ljsc-status-pending::after {
  inset: 12px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  transform: none;
}

.ljsc-status-error::after {
  inset: 16px 26px;
  width: 6px;
  height: 26px;
  border: 0;
  border-radius: 3px;
  background: #fff;
  transform: none;
}

.ljsc-status-icon.ljsc-status-recovery::after {
  content: "i";
  inset: 0;
  display: grid;
  width: auto;
  height: auto;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #1769e0;
  font-size: 24px;
  font-weight: 850;
  line-height: 1;
  transform: none;
}

.ljsc-return-message {
  max-width: 540px;
  margin: 12px auto 24px;
  color: var(--ljsc-muted);
}

.ljsc-return-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ljsc-button-secondary {
  background: #edf3fb;
  box-shadow: none;
  color: var(--ljsc-navy);
}

.ljsc-state-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 720px);
  margin: clamp(28px, 6vw, 72px) auto 0;
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
}

.ljsc-state-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #1769e0, #4a94f4);
}

.ljsc-state-icon {
  margin: 0 auto 18px;
}

.ljsc-state-card h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.13;
  letter-spacing: -.025em;
}

.ljsc-state-message {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--ljsc-muted);
  line-height: 1.65;
}

.ljsc-state-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ljsc-state-actions .ljsc-button {
  min-width: 190px;
}

.ljsc-state-actions .ljsc-button-secondary:hover {
  background: #e3ebf6;
  box-shadow: none;
  color: var(--ljsc-navy);
}

.ljsc-state-note {
  margin: 18px 0 0;
  color: var(--ljsc-muted);
  font-size: 12px;
}

.ljsc-footnote {
  color: var(--ljsc-muted);
  font-size: 12px;
}

@media (max-width: 820px) {
  .ljsc-shell {
    width: min(100% - 32px, 640px);
    padding: 18px 0 42px;
  }

  .ljsc-header {
    margin-bottom: 16px;
  }

  .ljsc-brand img {
    width: 132px;
  }

  .ljsc-security-label small {
    display: none;
  }

  .ljsc-security-mark {
    width: 30px;
    height: 30px;
  }

  .ljsc-security-mark::before {
    left: 10px;
    top: 8px;
  }

  .ljsc-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .ljsc-summary {
    position: relative;
    top: auto;
    order: -1;
    padding: 21px;
  }

  .ljsc-summary-heading {
    align-items: center;
  }

  .ljsc-summary h2 {
    font-size: 17px;
  }

  .ljsc-summary .ljsc-eyebrow {
    margin-bottom: 5px;
  }

  .ljsc-price {
    margin: 17px 0 14px;
  }

  .ljsc-price .ljsc-amount {
    font-size: 32px;
  }

  .ljsc-quota {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px 14px;
  }

  .ljsc-quota strong {
    font-size: 17px;
  }

  .ljsc-quota small {
    grid-column: 1 / -1;
  }

  .ljsc-benefits,
  .ljsc-summary-trust {
    display: none;
  }

  .ljsc-form-card {
    padding: 22px 20px;
  }

  .ljsc-progress {
    margin-bottom: 22px;
  }

  .ljsc-title-group {
    margin-bottom: 22px;
  }

  .ljsc-title-group h1 {
    font-size: 31px;
  }

  .ljsc-title-group > p:last-child {
    font-size: 14px;
  }

  .ljsc-field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .ljsc-payment-options {
    grid-template-columns: minmax(0, 1fr);
  }

  .ljsc-payment-option {
    min-height: 64px;
  }

  .ljsc-return-card {
    padding: 30px 20px;
  }

  .ljsc-recovery-card {
    padding: 27px 20px 24px;
  }

  .ljsc-recovery-status {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    text-align: center;
  }

  .ljsc-recovery-status .ljsc-status-icon {
    margin: 0 auto;
  }

  .ljsc-recovery-status .ljsc-return-message {
    margin-right: auto;
    margin-left: auto;
  }

  .ljsc-recovery-actions {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 22px;
  }

  .ljsc-recovery-button {
    min-height: 58px;
  }

  .ljsc-recovery-assurance {
    align-items: flex-start;
  }

  .ljsc-return-actions {
    display: grid;
  }

  .ljsc-return-actions .ljsc-button {
    width: 100%;
  }

  .ljsc-state-card {
    margin-top: 20px;
    padding: 30px 20px 26px;
  }

  .ljsc-state-card h1 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .ljsc-state-message {
    font-size: 14px;
  }

  .ljsc-state-actions {
    display: grid;
    margin-top: 24px;
  }

  .ljsc-state-actions .ljsc-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .ljsc-shell {
    width: min(100% - 24px, 640px);
  }

  .ljsc-security-label > span:last-child {
    display: none;
  }

  .ljsc-plan-badge {
    display: none;
  }

  .ljsc-progress-line {
    width: 22px;
  }

}

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