:root {
  --signup-text: #101828;
  --signup-muted: #667085;
  --signup-muted-2: #98a2b3;
  --signup-accent: #2f3192;
  --signup-accent-2: #5659d6;
  --signup-accent-soft: #eef0ff;
  --signup-gold: #d7b56d;
  --signup-success: #067647;
  --signup-danger: #b42318;
  --signup-line: rgba(16, 24, 40, 0.1);
  --signup-heading: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  --signup-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body.signup-page,
body.success-page {
  margin: 0;
  min-height: 100vh;
  color: var(--signup-text);
  font-family: var(--signup-font);
  background:
    radial-gradient(circle at 78% 5%, rgba(82, 86, 224, 0.12), transparent 29%),
    radial-gradient(circle at 8% 88%, rgba(215, 181, 109, 0.12), transparent 27%),
    linear-gradient(180deg, #fbfcff 0%, #f4f6fb 100%);
}

button,
input {
  font: inherit;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(47, 49, 146, 0.22);
  outline-offset: 3px;
}

/* Checkout page */

.checkout-main {
  overflow: hidden;
}

.checkout-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 100px) 0;
}

.checkout-intro {
  min-width: 0;
}

.checkout-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  color: var(--signup-text);
  text-decoration: none;
}

.checkout-brand img {
  width: 48px;
  height: 48px;
}

.checkout-brand > span {
  display: grid;
  font-family: var(--signup-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.checkout-brand small {
  margin-top: 2px;
  color: var(--signup-muted);
  font-family: var(--signup-font);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-kicker,
.checkout-card-kicker,
.account-card-kicker,
.success-kicker {
  width: fit-content;
  margin: 0 0 18px;
  color: var(--signup-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-intro h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--signup-heading);
  font-size: clamp(46px, 6.2vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.068em;
  font-weight: 800;
  text-wrap: balance;
}

.checkout-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--signup-muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  font-weight: 520;
}

.checkout-outcomes {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin-top: 38px;
}

.checkout-outcomes article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(16, 24, 40, 0.075);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.035);
}

.checkout-outcomes article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--signup-accent);
  background: var(--signup-accent-soft);
  font-size: 11px;
  font-weight: 900;
}

.checkout-outcomes strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 850;
}

.checkout-outcomes p {
  margin: 5px 0 0;
  color: var(--signup-muted);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-parent-note {
  max-width: 680px;
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--signup-gold);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.48);
}

.checkout-parent-note span {
  display: block;
  color: #8a6828;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-parent-note p {
  margin: 7px 0 0;
  color: #475467;
  font-size: 13px;
  line-height: 1.55;
}

.checkout-card,
.account-access-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(47, 49, 146, 0.13);
  border-radius: 40px;
  background:
    radial-gradient(circle at 100% 0%, rgba(86, 89, 214, 0.16), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(47, 49, 146, 0.07), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 255, 0.95));
  box-shadow:
    0 38px 100px rgba(16, 24, 40, 0.16),
    0 12px 32px rgba(47, 49, 146, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.checkout-card::before,
.account-access-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 35%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.82), transparent 28%);
}

.checkout-card > *,
.account-access-card > * {
  position: relative;
  z-index: 1;
}

.checkout-card-topline,
.account-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.checkout-card-topline > span,
.account-card-topline > span {
  width: 56px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--signup-accent), #ff8a3d);
  box-shadow: 0 8px 20px rgba(255, 138, 61, 0.16);
}

.checkout-card-topline p,
.account-card-topline p {
  margin: 0;
  color: var(--signup-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-card-heading h2,
.account-card-heading h2,
.account-state-screen h2 {
  margin: 0;
  font-family: var(--signup-heading);
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.062em;
  font-weight: 800;
  text-wrap: balance;
}

.checkout-card-heading > p:last-child,
.account-card-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--signup-muted);
  font-size: 15px;
  line-height: 1.55;
}

.checkout-form {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.checkout-form label {
  display: grid;
  gap: 9px;
}

.checkout-form label > span {
  color: #344054;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-form input {
  width: 100%;
  height: 62px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 19px;
  padding: 0 18px;
  color: var(--signup-text);
  background: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 650;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 20px rgba(16, 24, 40, 0.025);
}

.checkout-form input:focus {
  border-color: rgba(86, 89, 214, 0.48);
  box-shadow:
    0 0 0 5px rgba(86, 89, 214, 0.09),
    0 10px 24px rgba(16, 24, 40, 0.045);
}

.checkout-form button,
.account-primary-button,
.account-google-button,
.account-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, opacity 170ms ease;
}

.checkout-form button,
.account-primary-button {
  border: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.26), transparent 36%),
    linear-gradient(180deg, #5b5eff 0%, #2f3192 100%);
  box-shadow:
    0 22px 46px rgba(47, 49, 146, 0.31),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.checkout-form button:hover:not(:disabled),
.account-primary-button:hover:not(:disabled),
.account-google-button:hover:not(:disabled),
.account-secondary-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.checkout-form button:disabled,
.account-primary-button:disabled,
.account-google-button:disabled,
.account-secondary-button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.checkout-form-status,
.account-status {
  min-height: 20px;
  margin: 0;
  color: var(--signup-muted);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
}

.checkout-form-status.error,
.account-status.error {
  color: var(--signup-danger);
}

.checkout-form-status.success,
.account-status.success {
  color: var(--signup-success);
}

.checkout-trust-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(16, 24, 40, 0.075);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.checkout-trust-list span {
  position: relative;
  padding-left: 24px;
  color: #475467;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.checkout-trust-list span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--signup-accent);
  background: var(--signup-accent-soft);
  font-size: 10px;
  font-weight: 900;
}

.checkout-flow-preview {
  display: grid;
  grid-template-columns: 1fr 26px 1fr 26px 1fr;
  align-items: center;
  gap: 5px;
  margin-top: 22px;
  padding: 15px 12px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.checkout-flow-preview div {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.checkout-flow-preview i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--signup-accent);
  background: var(--signup-accent-soft);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.checkout-flow-preview span {
  color: #475467;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 800;
}

.checkout-flow-preview em {
  height: 1px;
  background: rgba(47, 49, 146, 0.16);
}

.checkout-signin-note,
.existing-account-note {
  margin: 22px 0 0;
  color: var(--signup-muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
  text-align: center;
}

.checkout-signin-note a,
.account-help-link,
.success-help a {
  color: var(--signup-accent);
  font-weight: 850;
  text-decoration: none;
}

/* Payment success and account claim */

.success-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.success-story {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: clamp(30px, 4vw, 54px);
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.11), transparent 26%),
    radial-gradient(circle at 90% 72%, rgba(83, 97, 255, 0.27), transparent 38%),
    linear-gradient(180deg, #07162c 0%, #081327 48%, #071b33 100%);
  isolation: isolate;
}

.success-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

.success-brand {
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.success-brand img {
  display: block;
  width: 180px;
  height: auto;
}

.success-copy {
  margin-top: clamp(64px, 10vh, 120px);
}

.success-kicker {
  color: #f2d594;
}

.success-copy h1 {
  max-width: 470px;
  margin: 0;
  color: #ffffff !important;
  font-family: var(--signup-heading);
  font-size: clamp(50px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.068em;
  font-weight: 800;
}

.success-copy > p:last-child {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.62;
}

.success-steps {
  display: grid;
  gap: 10px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.success-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.035);
}

.success-steps li.active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.success-steps li.complete {
  color: rgba(255, 255, 255, 0.78);
}

.success-steps li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #f2d594;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.success-steps strong,
.success-steps p {
  display: block;
}

.success-steps strong {
  font-size: 13px;
  font-weight: 850;
}

.success-steps p {
  margin: 4px 0 0;
  color: inherit;
  font-size: 11.5px;
  line-height: 1.45;
}

.success-trust-note {
  margin-top: auto;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.success-trust-note span {
  display: block;
  color: #f2d594;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-trust-note p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.success-access-area {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(28px, 6vw, 80px);
}

.success-progress {
  width: min(100%, 600px);
  height: 6px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.07);
}

.success-progress span {
  display: block;
  width: 66.666%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--signup-accent), #6d70ef);
}

.account-access-card {
  width: min(100%, 600px);
  padding: clamp(30px, 5vw, 48px);
}

.purchase-email-block {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(47, 49, 146, 0.11);
  border-radius: 20px;
  background: rgba(238, 240, 255, 0.68);
}

.purchase-email-block > span {
  color: var(--signup-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.purchase-email-block strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 850;
}

.purchase-email-block em {
  color: var(--signup-muted);
  font-size: 11px;
  line-height: 1.4;
  font-style: normal;
}

.purchase-email-block.loading strong {
  color: var(--signup-muted-2);
}

.account-access-actions {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.account-google-button,
.account-secondary-button {
  border: 1px solid var(--signup-line);
  color: var(--signup-text);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.055);
}

.account-google-button {
  gap: 10px;
}

.account-divider,
.signup-divider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.account-divider span,
.signup-divider span {
  height: 1px;
  flex: 1;
  background: var(--signup-line);
}

.account-divider p,
.signup-divider p {
  margin: 0;
  color: var(--signup-muted);
  font-size: 11px;
  font-weight: 800;
}

.account-state-screen {
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.account-state-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border-radius: 27px;
  color: var(--signup-accent);
  background: var(--signup-accent-soft);
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(47, 49, 146, 0.14);
}

.account-state-icon.verified {
  color: #ffffff;
  background: #087443;
}

.account-state-icon.warning {
  color: #b54708;
  background: #fff4e5;
}

.account-state-screen > p {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--signup-muted);
  font-size: 14px;
  line-height: 1.55;
}

.account-state-email {
  display: block;
  max-width: 100%;
  margin: 14px 0 2px;
  padding: 12px 16px;
  overflow-wrap: anywhere;
  border-radius: 14px;
  color: var(--signup-accent);
  background: var(--signup-accent-soft);
  font-size: 14px;
  font-weight: 850;
}

.account-state-screen .account-primary-button,
.account-state-screen .account-secondary-button {
  margin-top: 24px;
}

.account-help-link {
  display: inline-flex;
  margin-top: 18px;
  font-size: 12px;
}

.account-loading-bar {
  width: min(100%, 360px);
  height: 7px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.07);
}

.account-loading-bar span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--signup-accent), #6d70ef);
  animation: accountLoading 1.2s ease-in-out infinite;
}

@keyframes accountLoading {
  from { transform: translateX(-110%); }
  to { transform: translateX(260%); }
}

.success-help {
  margin: 20px 0 0;
  color: var(--signup-muted);
  font-size: 12px;
  text-align: center;
}

/* Shared classes retained for the existing login screen */

.google-signup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--signup-line);
  border-radius: 999px;
  color: var(--signup-text);
  background: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

/* Responsive */

@media (max-width: 980px) {
  .checkout-shell {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .checkout-intro h1,
  .checkout-lede {
    max-width: none;
  }

  .checkout-card {
    max-width: 620px;
  }

  .success-shell {
    grid-template-columns: 330px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .checkout-shell {
    width: min(100% - 24px, 620px);
    gap: 34px;
    padding: 32px 0 54px;
  }

  .checkout-brand {
    margin-bottom: 34px;
  }

  .checkout-intro h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .checkout-lede {
    font-size: 17px;
  }

  .checkout-card,
  .account-access-card {
    padding: 26px 21px;
    border-radius: 30px;
  }

  .checkout-flow-preview {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .checkout-flow-preview em {
    width: 1px;
    height: 12px;
    justify-self: center;
  }

  .success-shell {
    display: block;
  }

  .success-story {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 24px 20px 34px;
  }

  .success-brand img {
    width: 150px;
  }

  .success-copy {
    margin-top: 50px;
  }

  .success-copy h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .success-steps {
    margin-top: 34px;
  }

  .success-trust-note {
    margin-top: 24px;
  }

  .success-access-area {
    padding: 24px 12px 48px;
  }

  .account-state-screen {
    min-height: 360px;
  }
}

@media (max-width: 430px) {
  .checkout-outcomes article {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 16px;
  }

  .checkout-outcomes article > span {
    width: 36px;
    height: 36px;
  }

  .checkout-card-heading h2,
  .account-card-heading h2,
  .account-state-screen h2 {
    font-size: 36px;
  }
}

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


/* Quiet counselor discovery path while the professional library remains in early access. */
.checkout-counselor-path {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding: 16px 17px;
  border: 1px solid rgba(79, 70, 229, 0.13);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(248, 248, 255, 0.92), rgba(255, 255, 255, 0.96));
  text-align: left;
}

.checkout-counselor-path span {
  color: #667085;
  font-size: 11px;
  font-weight: 700;
}

.checkout-counselor-path a {
  color: #4038c7;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.checkout-counselor-path a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkout-counselor-path small {
  color: #8a93a5;
  font-size: 10px;
  line-height: 1.45;
}


.checkout-ai-coach-note {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  max-width: 680px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(79,70,229,.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(167,139,250,.16), transparent 36%),
    rgba(255,255,255,.72);
  box-shadow: 0 14px 32px rgba(47,49,146,.06);
}

.checkout-ai-coach-note p {
  margin: 5px 0 0;
  color: var(--signup-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Signup hero refinement: the global site header already carries the Compass logo. */
@media (min-width: 981px) {
  .checkout-shell {
    min-height: auto;
    align-items: start;
    padding-top: clamp(34px, 4vw, 52px);
    padding-bottom: clamp(64px, 7vw, 96px);
  }
}

.checkout-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 0 14px;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 240, 255, 0.92));
  box-shadow: 0 10px 26px rgba(47, 49, 146, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  color: #34339a;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
}

@media (max-width: 980px) {
  .checkout-shell {
    min-height: auto;
    align-items: start;
    padding-top: 30px;
  }
}


/* Family plan chooser */
.checkout-plan-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}

.checkout-plan-picker button {
  min-height: 76px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(47,49,146,.11);
  border-radius: 18px;
  color: #344054;
  background: rgba(255,255,255,.70);
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.checkout-plan-picker button strong {
  color: #101828;
  font-size: 13px;
}

.checkout-plan-picker button span {
  color: #667085;
  font-size: 11px;
  line-height: 1.4;
}

.checkout-plan-picker button.active {
  border-color: rgba(86,89,214,.34);
  background: #f1f2ff;
  box-shadow: inset 0 0 0 1px rgba(86,89,214,.08);
}

.checkout-plan-picker button.active strong {
  color: #303392;
}

@media (max-width: 520px) {
  .checkout-plan-picker {
    grid-template-columns: 1fr;
  }
}
