:root {
  --cp-ink: #111331;
  --cp-muted: #62647f;
  --cp-cobalt: #2855ff;
  --cp-cobalt-dark: #1439c8;
  --cp-line: #d9dcf1;
  --cp-lilac: #eee8ff;
  --cp-lilac-strong: #765be6;
  --cp-mint: #dff7ec;
  --cp-mint-strong: #28a879;
  --cp-sky: #e2f2ff;
  --cp-sky-strong: #267bc0;
  --cp-peach: #ffe4db;
  --cp-peach-strong: #e46e55;
  --cp-butter: #fff1ba;
  --cp-butter-strong: #b87d00;
  --cp-white: #fff;
  --cp-radius-sm: 14px;
  --cp-radius: 22px;
  --cp-radius-lg: 30px;
  --cp-display: "Barlow Condensed", sans-serif;
  --cp-body: "DM Sans", sans-serif;
  --cp-shell: min(1360px, calc(100% - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.commercial-page {
  margin: 0;
  color: var(--cp-ink);
  background: var(--cp-white);
  font-family: var(--cp-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.commercial-page button,
.commercial-page input,
.commercial-page select {
  color: inherit;
  font: inherit;
}

.commercial-page button,
.commercial-page a {
  -webkit-tap-highlight-color: transparent;
}

.commercial-page a {
  color: inherit;
}

.commercial-page .cc-menu__demo,
.commercial-page .cc-menu__demo:hover,
.commercial-page .cc-menu__demo:focus-visible {
  color: #fff;
}

.commercial-shell {
  width: var(--cp-shell);
  margin-inline: auto;
}

.commercial-page .skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--cp-ink);
  transform: translateY(-160%);
}

.commercial-page .skip-link:focus {
  transform: none;
}

.commercial-fallback-nav {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #e5e7f3;
  background: rgba(255, 255, 255, .95);
}

.commercial-fallback-nav__inner {
  display: flex;
  width: var(--cp-shell);
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.commercial-fallback-nav__logo img {
  display: block;
  width: 162px;
  height: auto;
}

.commercial-fallback-nav__links,
.commercial-fallback-nav__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.commercial-fallback-nav__links a,
.commercial-fallback-nav__actions a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.commercial-fallback-nav__actions a:last-child {
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--cp-ink);
}

.commercial-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 34px;
  background:
    linear-gradient(180deg, #faf9ff 0%, #fff 72%),
    var(--cp-white);
}

.commercial-hero::after {
  position: absolute;
  top: 26px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(40, 85, 255, .1);
  border-radius: 50%;
  content: "";
}

.commercial-hero__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: end;
  gap: 74px;
  margin-bottom: 34px;
}

.commercial-hero h1,
.comparison-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--cp-display);
  font-size: clamp(58px, 6.6vw, 102px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .88;
}

.commercial-hero__copy > p,
.comparison-hero__copy > p {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--cp-muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.student-control {
  position: relative;
  z-index: 2;
}

.student-control label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.student-control__field {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 2px solid #a997f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(62, 40, 135, .07);
}

.student-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 21px 26px;
  color: var(--cp-ink);
  background: transparent;
  font-family: var(--cp-display);
  font-size: clamp(50px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  appearance: textfield;
}

.student-control input::-webkit-inner-spin-button,
.student-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.student-control__steppers {
  display: grid;
  width: 68px;
  border-left: 1px solid var(--cp-line);
}

.student-control__steppers button {
  display: grid;
  place-items: center;
  border: 0;
  background: #fbfaff;
  cursor: pointer;
}

.student-control__steppers button + button {
  border-top: 1px solid var(--cp-line);
}

.student-control__steppers svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.student-control__hint {
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--cp-muted);
  font-size: 12px;
}

.price-builder {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
  padding: 24px;
  border: 1px solid #aaa8dc;
  border-radius: var(--cp-radius-lg);
  background: rgba(255, 255, 255, .96);
}

.price-builder__label {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.price-builder__label span {
  margin-left: 4px;
  color: var(--cp-cobalt);
  font-weight: 600;
}

.price-builder__help {
  margin: 5px 0 17px;
  color: var(--cp-muted);
  font-size: 13px;
}

.module-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.module-rail::before {
  position: absolute;
  z-index: 0;
  top: 55%;
  right: 4%;
  left: 4%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cp-lilac-strong), var(--cp-mint-strong), var(--cp-butter-strong), var(--cp-cobalt));
  content: "";
  opacity: .34;
}

.module-choice {
  --module-bg: var(--cp-lilac);
  --module-accent: var(--cp-lilac-strong);
  position: relative;
  z-index: 1;
  min-height: 170px;
  padding: 17px 15px;
  border: 1px solid color-mix(in srgb, var(--module-accent) 60%, white);
  border-radius: 18px;
  text-align: left;
  background: color-mix(in srgb, var(--module-bg) 65%, white);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.module-choice[data-module="erp"] {
  --module-bg: var(--cp-mint);
  --module-accent: #2ba9aa;
}

.module-choice[data-module="attendance"] {
  --module-bg: var(--cp-butter);
  --module-accent: #e3a600;
}

.module-choice[data-module="credentials"] {
  --module-bg: var(--cp-sky);
  --module-accent: var(--cp-cobalt);
}

.module-choice:hover {
  transform: translateY(-3px);
}

.module-choice[aria-pressed="true"] {
  border-width: 2px;
  border-color: var(--module-accent);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--module-accent) 14%, transparent);
}

.module-choice:focus-visible,
.quote-option:focus-visible,
.comparison-row:focus-visible,
.commercial-button:focus-visible,
.comparison-select select:focus-visible,
.student-control button:focus-visible {
  outline: 3px solid rgba(40, 85, 255, .35);
  outline-offset: 3px;
}

.module-choice__check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  margin-bottom: 15px;
  border: 1px solid var(--module-accent);
  border-radius: 7px;
  color: transparent;
  background: #fff;
}

.module-choice[aria-pressed="true"] .module-choice__check {
  color: #fff;
  background: var(--module-accent);
}

.module-choice__check svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.module-choice__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 12px;
  color: var(--module-accent);
  background: rgba(255, 255, 255, .72);
}

.module-choice__icon svg,
.suite-map__icon svg,
.quote-option svg,
.comparison-status svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.module-choice strong,
.module-choice small,
.module-choice em {
  display: block;
}

.module-choice strong {
  font-size: 17px;
  line-height: 1.08;
}

.module-choice small {
  margin-top: 7px;
  color: var(--module-accent);
  font-size: 12px;
  font-weight: 800;
}

.module-choice em {
  width: max-content;
  margin-top: 10px;
  padding: 4px 7px;
  border-radius: 6px;
  color: #fff;
  background: var(--module-accent);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.suite-peek {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.suite-peek details {
  border: 1px solid var(--cp-line);
  border-radius: 15px;
  background: #fbfbff;
}

.suite-peek summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.suite-peek summary::-webkit-details-marker {
  display: none;
}

.suite-peek summary::after {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.suite-peek details[open] summary::after {
  transform: rotate(225deg);
}

.suite-peek ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  margin: 0;
  padding: 0 14px 14px;
  list-style: none;
}

.suite-peek li {
  color: var(--cp-muted);
  font-size: 11px;
}

.suite-peek li::before {
  margin-right: 6px;
  color: var(--cp-mint-strong);
  content: "✓";
  font-weight: 900;
}

.quote-mini {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--cp-line);
}

.quote-mini__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.quote-mini__head strong {
  font-size: 14px;
}

.quote-mini__head span {
  color: var(--cp-muted);
  font-size: 11px;
}

.quote-mini__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-mini__list a {
  padding: 8px 11px;
  border: 1px dashed #aba9d7;
  border-radius: 10px;
  color: var(--cp-muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.price-summary {
  position: sticky;
  top: 98px;
  overflow: hidden;
  align-self: start;
  min-height: 548px;
  padding: 24px 22px;
  border: 2px solid var(--cp-cobalt);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(40, 85, 255, .1);
}

.price-summary__content {
  transition: filter .45s ease, opacity .45s ease, transform .45s ease;
}

.price-summary__content > span {
  display: block;
  color: var(--cp-muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.price-summary.is-locked .price-summary__content {
  opacity: .16;
  filter: blur(13px);
  pointer-events: none;
  transform: scale(.98);
  user-select: none;
}

.price-summary.is-unlocked .price-summary__content {
  opacity: 1;
  filter: none;
  transform: none;
}

.pricing-lock {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 24px;
  border-radius: 17px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(143, 177, 255, .28), transparent 34%),
    linear-gradient(155deg, rgba(247, 249, 255, .985), rgba(238, 242, 255, .99));
  backdrop-filter: blur(20px);
  transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
}

.price-summary.is-unlocked .pricing-lock {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(.97);
}

.pricing-lock::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(40, 85, 255, .18);
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.pricing-lock__icon {
  position: relative;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(40, 85, 255, .24);
  border-radius: 22px;
  color: var(--cp-cobalt);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 35px rgba(40, 85, 255, .12);
}

.pricing-lock__icon svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pricing-lock > small {
  color: var(--cp-cobalt);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-lock h2 {
  max-width: 250px;
  margin: 12px 0;
  font-family: var(--cp-display);
  font-size: 39px;
  letter-spacing: -.035em;
  line-height: .94;
}

.pricing-lock p {
  max-width: 245px;
  margin: 0;
  color: var(--cp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.pricing-lock .pricing-lock__button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 22px;
}

.pricing-lock__note {
  margin-top: 12px;
  color: var(--cp-muted);
  font-size: 10px;
  font-weight: 700;
}

.module-choice small.is-revealed {
  color: var(--module-accent);
}

.price-summary__rate {
  margin: 8px 0 16px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--cp-line);
  border-radius: 12px;
  background: #f7f8ff;
}

.price-summary__rate strong {
  display: inline-block;
  color: var(--cp-cobalt);
  font-family: var(--cp-display);
  font-size: 28px;
  letter-spacing: -.03em;
  line-height: 1;
}

.price-summary__rate small {
  display: block;
  margin-bottom: 5px;
  color: var(--cp-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-summary__rate > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.price-summary__rate span {
  max-width: 100px;
  color: var(--cp-muted);
  font-size: 9px;
  line-height: 1.35;
  text-align: right;
}

.price-summary__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--cp-line);
}

.price-summary__line span {
  color: var(--cp-muted);
  font-size: 11px;
}

.price-summary__line strong {
  font-size: 15px;
}

.price-summary__total {
  padding: 16px 0 19px;
  border-bottom: 1px solid var(--cp-line);
  text-align: center;
}

.price-summary__total strong {
  display: block;
  color: var(--cp-cobalt);
  font-family: var(--cp-display);
  font-size: clamp(58px, 5vw, 72px);
  letter-spacing: -.025em;
  line-height: .82;
}

.price-summary__total span {
  display: block;
  margin-top: 8px;
  color: var(--cp-muted);
  font-size: 11px;
}

.price-summary__monthly {
  padding: 10px;
  border-radius: 11px;
  text-align: center;
  background: var(--cp-lilac);
}

.price-summary__monthly strong {
  font-size: 13px;
}

.price-summary__monthly span {
  display: block;
  margin-top: 2px;
  color: var(--cp-muted);
  font-size: 9px;
}

.commercial-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #fff;
  background: var(--cp-cobalt);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.commercial-button:hover {
  background: var(--cp-cobalt-dark);
  transform: translateY(-2px);
}

.commercial-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.commercial-button--outline {
  border-color: var(--cp-cobalt);
  color: var(--cp-ink);
  background: transparent;
}

.commercial-button--outline:hover {
  color: #fff;
}

.price-summary .commercial-button {
  width: 100%;
  margin-top: 16px;
}

.price-summary__compare {
  display: block;
  margin-top: 12px;
  color: var(--cp-cobalt);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.pricing-access-dialog {
  width: min(1040px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  color: var(--cp-ink);
  background: transparent;
  box-shadow: 0 36px 100px rgba(16, 42, 67, .26);
  opacity: 0;
  transform: translateY(18px) scale(.975);
  transition: opacity .24s ease, transform .24s ease, overlay .24s allow-discrete, display .24s allow-discrete;
}

.pricing-access-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@starting-style {
  .pricing-access-dialog[open] {
    opacity: 0;
    transform: translateY(18px) scale(.975);
  }
}

.pricing-access-dialog::backdrop {
  background: rgba(10, 23, 42, .64);
  backdrop-filter: blur(10px);
}

.pricing-access-dialog__frame {
  position: relative;
  overflow: hidden;
  padding: 24px 28px 26px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(154, 132, 245, .22), transparent 35%),
    radial-gradient(circle at 8% 12%, rgba(86, 213, 179, .16), transparent 32%),
    #fff;
}

.pricing-access-dialog__frame::after {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(40, 85, 255, .12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.pricing-access-dialog__close {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(16, 42, 67, .12);
  border-radius: 14px;
  color: var(--cp-ink);
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
}

.pricing-access-dialog__close svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.pricing-access-dialog__brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-right: 54px;
}

.pricing-access-dialog__brand img {
  width: 158px;
  height: auto;
}

.pricing-access-dialog__brand span {
  padding: 7px 10px;
  border: 1px solid rgba(40, 85, 255, .15);
  border-radius: 999px;
  color: var(--cp-cobalt);
  background: rgba(244, 246, 255, .86);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-access-dialog__details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: 42px;
}

.pricing-access-dialog__heading {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 28px 0 0;
}

.pricing-access-dialog__heading > small,
.pricing-access-success > small {
  color: var(--cp-cobalt);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-access-dialog__heading h2,
.pricing-access-success h2 {
  margin: 10px 0 12px;
  font-family: var(--cp-display);
  font-size: clamp(42px, 4.5vw, 56px);
  letter-spacing: -.04em;
  line-height: .92;
}

.pricing-access-dialog__heading p,
.pricing-access-success p {
  max-width: 600px;
  margin: 0;
  color: var(--cp-muted);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-access-dialog__heading p strong {
  color: var(--cp-ink);
}

.pricing-access-form,
.pricing-otp-form {
  position: relative;
  z-index: 1;
}

.pricing-access-dialog__details .pricing-access-form {
  margin-top: 28px;
}

.pricing-access-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pricing-access-form label,
.pricing-otp-form label {
  display: block;
}

.pricing-access-form label > span:first-child,
.pricing-otp-form label,
.pricing-access-form__role > span:first-child {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.pricing-access-form__role {
  margin-top: 12px;
}

.pricing-access-form__role em {
  margin-left: 5px;
  color: var(--cp-muted);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.pricing-access-form input[type="text"],
.pricing-access-form input[type="email"],
.pricing-access-form select,
.pricing-otp-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd7e5;
  border-radius: 13px;
  outline: 0;
  padding: 11px 14px;
  color: var(--cp-ink);
  background: rgba(255, 255, 255, .9);
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.pricing-access-form input:focus,
.pricing-access-form select:focus,
.pricing-otp-form input:focus {
  border-color: var(--cp-cobalt);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(40, 85, 255, .11);
}

.pricing-access-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.pricing-access-form__consent {
  display: grid !important;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 13px;
  color: var(--cp-muted);
  font-size: 11px;
  line-height: 1.55;
}

.pricing-access-form__consent input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--cp-cobalt);
}

.pricing-access-form__consent a {
  color: var(--cp-cobalt);
  font-weight: 800;
}

.pricing-access-form__status {
  min-height: 20px;
  margin: 7px 0 0;
  color: var(--cp-muted);
  font-size: 12px;
  font-weight: 700;
}

.pricing-access-form__status[data-status="error"] {
  color: #b42345;
}

.pricing-access-form__submit {
  width: 100%;
  margin-top: 4px;
}

.commercial-button.is-loading {
  opacity: .74;
  cursor: wait;
}

.commercial-button.is-loading svg {
  animation: pricing-button-pulse .8s ease-in-out infinite alternate;
}

@keyframes pricing-button-pulse {
  to { transform: translateX(5px); }
}

.pricing-access-form__assurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 10px;
  color: var(--cp-muted);
  font-size: 10px;
  font-weight: 700;
}

.pricing-access-form__assurance i {
  margin-right: 4px;
  color: #24a88a;
  font-style: normal;
}

.pricing-otp-form {
  max-width: 560px;
}

.pricing-otp-form input {
  min-height: 86px;
  text-align: center;
  font-family: var(--cp-display);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: .24em;
}

.pricing-otp-form > p:not(.pricing-access-form__status) {
  margin: 7px 0 0;
  color: var(--cp-muted);
  font-size: 11px;
}

.pricing-otp-form__actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 560px;
  margin-top: 16px;
}

.pricing-otp-form__actions button {
  border: 0;
  padding: 0;
  color: var(--cp-cobalt);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.pricing-otp-form__actions button:disabled {
  color: var(--cp-muted);
  cursor: not-allowed;
}

.pricing-access-success {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 62px 0 54px;
}

.pricing-access-success > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 23px;
  color: #fff;
  background: #24a88a;
  font-size: 33px;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(36, 168, 138, .22);
}

.commercial-section {
  padding: 100px 0;
}

.commercial-section--soft {
  background: #f7f4ff;
}

.commercial-section__head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.commercial-section__head h2,
.quote-products__head h2,
.commercial-closing h2,
.comparison-depth h2 {
  margin: 0;
  font-family: var(--cp-display);
  font-size: clamp(46px, 5.2vw, 76px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .92;
}

.commercial-section__head p,
.quote-products__head p,
.comparison-depth__lead {
  margin: 0;
  color: var(--cp-muted);
  font-size: 17px;
  line-height: 1.65;
}

.suite-maps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}

.suite-map {
  --suite-accent: var(--cp-mint-strong);
  --suite-soft: var(--cp-mint);
  position: relative;
}

.suite-map--erp {
  --suite-accent: var(--cp-lilac-strong);
  --suite-soft: var(--cp-lilac);
}

.suite-map__title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.suite-map__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--suite-accent);
  background: var(--suite-soft);
}

.suite-map__title h3 {
  margin: 0;
  font-family: var(--cp-display);
  font-size: 42px;
  letter-spacing: -.02em;
  line-height: 1;
}

.suite-map__title span {
  color: var(--suite-accent);
  font-size: 14px;
  font-weight: 800;
}

.suite-map__list {
  position: relative;
  display: grid;
  gap: 10px;
  margin-left: 25px;
  padding-left: 36px;
}

.suite-map__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1.5px;
  background: var(--suite-accent);
  content: "";
}

.suite-map__item {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--suite-accent) 30%, white);
  border-radius: 14px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.suite-map__item::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 36px;
  height: 1.5px;
  background: var(--suite-accent);
  content: "";
}

.suite-map__item::after {
  position: absolute;
  top: calc(50% - 4px);
  right: calc(100% + 32px);
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--suite-accent);
  border-radius: 50%;
  background: #fff;
  content: "";
}

.suite-map__item i {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--suite-accent);
  background: var(--suite-soft);
  font-style: normal;
}

.suite-map__included {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0 25px;
  color: var(--suite-accent);
  font-size: 13px;
  font-weight: 900;
}

.suite-map__included i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-style: normal;
}

.quote-products {
  position: relative;
  overflow: hidden;
  padding: 98px 0;
  background:
    radial-gradient(circle at 0 10%, rgba(255, 196, 174, .5) 0 80px, transparent 81px),
    radial-gradient(circle at 100% 14%, rgba(207, 190, 255, .55) 0 100px, transparent 101px),
    #f2efff;
}

.quote-products__head {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.quote-products__head p {
  max-width: 680px;
  margin: 18px auto 0;
}

.quote-options {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 11px;
}

.quote-option {
  position: relative;
  display: grid;
  min-height: 145px;
  align-content: center;
  justify-items: center;
  gap: 11px;
  padding: 14px 8px;
  border: 1px solid #d6d2ee;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, .86);
  cursor: pointer;
}

.quote-option[aria-pressed="true"] {
  border: 2px solid var(--cp-cobalt);
  background: #fff;
  box-shadow: 0 13px 26px rgba(40, 85, 255, .09);
}

.quote-option > span:first-child {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  color: var(--cp-cobalt);
  background: var(--cp-sky);
}

.quote-option:nth-child(2) > span:first-child {
  color: var(--cp-lilac-strong);
  background: var(--cp-lilac);
}

.quote-option:nth-child(3) > span:first-child {
  color: var(--cp-butter-strong);
  background: var(--cp-butter);
}

.quote-option:nth-child(4) > span:first-child {
  color: var(--cp-lilac-strong);
  background: var(--cp-lilac);
}

.quote-option:nth-child(5) > span:first-child {
  color: var(--cp-peach-strong);
  background: var(--cp-peach);
}

.quote-option:nth-child(6) > span:first-child {
  color: var(--cp-mint-strong);
  background: var(--cp-mint);
}

.quote-option strong {
  max-width: 110px;
  font-size: 12px;
  line-height: 1.25;
}

.quote-option__check {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid #979ab4;
  border-radius: 5px;
  color: transparent;
  background: #fff;
}

.quote-option[aria-pressed="true"] .quote-option__check {
  border-color: var(--cp-cobalt);
  color: #fff;
  background: var(--cp-cobalt);
}

.quote-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 360px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid #b9b5dc;
  border-radius: 24px;
  background: #fff;
}

.quote-detail__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.quote-detail__copy h3 {
  margin: 0;
  font-family: var(--cp-display);
  font-size: 42px;
  letter-spacing: -.02em;
  line-height: .95;
}

.quote-detail__copy p {
  margin: 18px 0 0;
  color: var(--cp-muted);
  font-size: 15px;
  line-height: 1.65;
}

.quote-detail__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.quote-detail__copy li {
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--cp-lilac);
  font-size: 11px;
  font-weight: 800;
}

.quote-detail__media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--cp-sky);
}

.quote-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-detail__media--id img,
.quote-detail__media--devices img {
  object-fit: contain;
}

.quote-detail__media--abstract {
  display: grid;
  place-items: center;
  padding: 35px;
  background: linear-gradient(135deg, #fff, var(--cp-lilac));
}

.abstract-screen {
  width: min(100%, 480px);
  overflow: hidden;
  border: 1px solid #a7aadb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 18px 22px 0 rgba(118, 91, 230, .12);
}

.abstract-screen__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid var(--cp-line);
  background: #f8f8ff;
}

.abstract-screen__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cp-peach-strong);
}

.abstract-screen__bar i:nth-child(2) {
  background: #e7b900;
}

.abstract-screen__bar i:nth-child(3) {
  background: var(--cp-mint-strong);
}

.abstract-screen__body {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 250px;
}

.abstract-screen__rail {
  background: var(--cp-ink);
}

.abstract-screen__content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
}

.abstract-screen__content i {
  height: 14px;
  border-radius: 999px;
  background: var(--cp-lilac);
}

.abstract-screen__content i:nth-child(2) {
  width: 82%;
  background: var(--cp-mint);
}

.abstract-screen__content i:nth-child(3) {
  width: 62%;
  background: var(--cp-butter);
}

.faq-section {
  padding: 96px 0;
}

.faq-section__title {
  margin: 0 0 30px;
  font-family: var(--cp-display);
  font-size: 58px;
  letter-spacing: -.03em;
  line-height: 1;
}

.commercial-faq {
  border-top: 1px solid var(--cp-line);
}

.commercial-faq details {
  border-bottom: 1px solid var(--cp-line);
}

.commercial-faq summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 5px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.commercial-faq summary::-webkit-details-marker {
  display: none;
}

.commercial-faq summary::after {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid var(--cp-cobalt);
  border-bottom: 2px solid var(--cp-cobalt);
  content: "";
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.commercial-faq details[open] summary::after {
  transform: rotate(225deg);
}

.commercial-faq p {
  max-width: 860px;
  margin: 0;
  padding: 0 5px 24px;
  color: var(--cp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.commercial-closing {
  padding: 74px 0;
  background: linear-gradient(110deg, var(--cp-sky), #f1ecff 58%, var(--cp-mint));
}

.commercial-closing__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(400px, 1fr);
  align-items: center;
  gap: 70px;
}

.configuration-preview {
  padding: 26px;
  border: 1px solid rgba(17, 19, 49, .15);
  border-radius: 20px;
  background: rgba(255, 255, 255, .7);
}

.configuration-preview > span {
  font-size: 12px;
  font-weight: 800;
}

.configuration-preview__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 13px 0 20px;
}

.configuration-preview__chips span {
  padding: 8px 10px;
  border: 1px solid rgba(40, 85, 255, .2);
  border-radius: 8px;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
}

.configuration-preview__actions {
  display: flex;
  gap: 10px;
}

.configuration-preview__actions .commercial-button {
  flex: 1;
}

.commercial-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 24px;
  color: #fff;
  background: var(--cp-ink);
}

.commercial-footer::after {
  position: absolute;
  right: -75px;
  bottom: -210px;
  color: rgba(255, 255, 255, .035);
  content: "C";
  font-family: var(--cp-display);
  font-size: 520px;
  font-weight: 800;
  line-height: 1;
}

.commercial-footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 42px;
}

.commercial-footer__brand img {
  width: 166px;
  height: auto;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
}

.commercial-footer__brand p {
  max-width: 280px;
  margin: 18px 0 8px;
  color: #bfc2d9;
  font-size: 13px;
  line-height: 1.6;
}

.commercial-footer__brand span {
  color: #8e91ac;
  font-size: 11px;
}

.commercial-footer h3 {
  margin: 0 0 16px;
  color: #8f93ae;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.commercial-footer__grid > div:not(.commercial-footer__brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.commercial-footer__grid a {
  width: max-content;
  color: #e8e9f2;
  font-size: 12px;
  text-decoration: none;
}

.commercial-footer__grid a:hover {
  color: #fff;
}

.commercial-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  color: #878ba5;
  font-size: 10px;
}

/* Comparison page */
.comparison-hero {
  padding: 120px 0 82px;
  background: linear-gradient(180deg, #f8f6ff, #fff);
}

.comparison-hero h1 {
  max-width: 680px;
  font-size: clamp(58px, 5.3vw, 78px);
  line-height: .9;
}

.comparison-hero__eyebrow,
.comparison-fit-lens__head > span,
.comparison-ai-model__copy > span,
.comparison-hallmarks__head > span {
  display: block;
  margin-bottom: 15px;
  color: var(--cp-cobalt);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.comparison-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 32px;
}

.comparison-select label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 800;
}

.comparison-select__field {
  position: relative;
}

.comparison-select select {
  width: 100%;
  min-height: 64px;
  padding: 0 52px 0 20px;
  border: 2px solid var(--cp-cobalt);
  border-radius: 13px;
  outline: 0;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
  appearance: none;
}

.comparison-select__field::after {
  position: absolute;
  top: calc(50% - 5px);
  right: 22px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--cp-ink);
  border-bottom: 2px solid var(--cp-ink);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.comparison-method {
  margin: 14px 0 0;
  color: var(--cp-muted);
  font-size: 11px;
  line-height: 1.5;
}

.comparison-cost-proof {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.45fr) minmax(190px, .62fr);
  align-items: stretch;
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid rgba(23, 21, 46, .22);
  border-radius: 18px;
  color: #fff;
  background: #17152e;
  box-shadow: 0 22px 54px rgba(23, 21, 46, .16);
}

.comparison-cost-proof > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px 26px;
}

.comparison-cost-proof > div + div {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.comparison-cost-proof__number {
  background: linear-gradient(135deg, rgba(88, 112, 255, .32), rgba(88, 112, 255, .04));
}

.comparison-cost-proof__number small,
.comparison-cost-proof__context > span {
  color: #aebcff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-cost-proof__number strong {
  margin-top: 8px;
  font-family: var(--cp-display);
  font-size: clamp(36px, 3.6vw, 50px);
  letter-spacing: -.035em;
  line-height: .9;
}

.comparison-cost-proof__number span {
  margin-top: 10px;
  color: #b7b9cb;
  font-size: 10px;
}

.comparison-cost-proof__context p {
  margin: 10px 0 0;
  color: #d8d9e6;
  font-size: 12px;
  line-height: 1.55;
}

.comparison-cost-proof__source {
  gap: 10px;
  align-items: flex-start;
}

.comparison-cost-proof__source a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  color: #17152e;
  background: #fff;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.comparison-cost-proof__source small {
  color: #a9aabd;
  font-size: 9px;
  line-height: 1.5;
}

.comparison-orientation {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 155px;
  align-items: center;
  gap: 26px;
  margin: 8px 0 18px;
  padding: 20px 22px;
  border: 1px solid #c9c9e4;
  border-radius: 16px;
  background: linear-gradient(105deg, #eef1ff, #fff 62%, #f2ecff);
  box-shadow: 0 12px 30px rgba(40, 85, 255, .06);
}

.comparison-orientation > span {
  color: var(--cp-cobalt);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.comparison-orientation h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.02em;
}

.comparison-orientation p {
  margin: 6px 0 0;
  color: var(--cp-muted);
  font-size: 11px;
  line-height: 1.55;
}

.comparison-orientation__evidence {
  display: grid;
  justify-items: end;
  gap: 8px;
  text-align: right;
}

.comparison-orientation__evidence small {
  color: var(--cp-muted);
  font-size: 9px;
}

.comparison-orientation__evidence a {
  color: var(--cp-cobalt);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.comparison-board {
  overflow: hidden;
  border: 1px solid #b8b9d5;
  border-radius: 18px;
  background: #fff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 13px 17px;
  border-right: 1px solid var(--cp-line);
  border-bottom: 1px solid var(--cp-line);
  font-size: 12px;
  text-align: left;
  vertical-align: middle;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: #fff;
  background: var(--cp-cobalt);
  font-weight: 800;
}

.comparison-table thead th:first-child {
  color: var(--cp-ink);
  background: #fff;
}

.comparison-table thead th:last-child {
  background: var(--cp-lilac-strong);
}

.comparison-row {
  cursor: pointer;
  transition: background .15s ease;
}

.comparison-row:hover,
.comparison-row.is-selected {
  background: #f3f5ff;
}

.comparison-row.is-selected td:first-child {
  box-shadow: inset 4px 0 0 var(--cp-cobalt);
}

.comparison-row td:first-child {
  font-weight: 700;
}

.comparison-status {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.35;
}

.comparison-status i {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--cp-mint-strong);
  background: var(--cp-mint);
}

.comparison-status--connected i {
  color: var(--cp-lilac-strong);
  background: var(--cp-lilac);
}

.comparison-status--available i {
  color: var(--cp-cobalt);
  background: var(--cp-sky);
}

.comparison-status--related i {
  color: var(--cp-butter-strong);
  background: var(--cp-butter);
}

.comparison-status--quote i {
  color: var(--cp-peach-strong);
  background: var(--cp-peach);
}

.comparison-status--not-highlighted {
  color: var(--cp-muted);
}

.comparison-status--not-highlighted i {
  color: #7b7f99;
  background: #f0f1f6;
}

.comparison-detail {
  display: grid;
  grid-template-columns: 230px 1fr 1fr;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #b8b9d5;
  border-radius: 16px;
  background: #fff;
}

.comparison-detail > div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--cp-line);
}

.comparison-detail > div:last-child {
  border-right: 0;
}

.comparison-detail__topic {
  background: #f6f7ff;
}

.comparison-detail__topic span {
  color: var(--cp-cobalt);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-detail h2,
.comparison-detail h3 {
  margin: 0;
}

.comparison-detail h2 {
  margin-top: 9px;
  font-size: 16px;
}

.comparison-detail h3 {
  margin-bottom: 9px;
  color: var(--cp-cobalt);
  font-size: 14px;
}

.comparison-detail__competitor h3 {
  color: var(--cp-lilac-strong);
}

.comparison-detail p {
  margin: 0;
  color: var(--cp-muted);
  font-size: 12px;
  line-height: 1.6;
}

.comparison-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}

.comparison-actions__links {
  display: flex;
  gap: 26px;
}

.comparison-actions__links a,
.source-notes summary {
  color: var(--cp-cobalt);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.comparison-page .comparison-actions > .commercial-button,
.comparison-page .configuration-preview__actions .commercial-button:not(.commercial-button--outline) {
  color: #fff;
}

.source-notes {
  margin-top: 26px;
  padding: 0 20px;
  border: 1px solid var(--cp-line);
  border-radius: 14px;
  background: #fff;
}

.source-notes summary {
  padding: 17px 0;
  list-style: none;
}

.source-notes summary::-webkit-details-marker {
  display: none;
}

.source-notes__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 35px;
  padding: 0 0 22px;
}

.source-notes h3 {
  margin: 0 0 9px;
  font-size: 12px;
}

.source-notes p {
  margin: 0;
  color: var(--cp-muted);
  font-size: 11px;
  line-height: 1.55;
}

.source-notes a {
  color: var(--cp-cobalt);
}

.comparison-fit-lens {
  padding: 104px 0;
  background: #f4f1ff;
}

.comparison-fit-lens__head {
  display: grid;
  max-width: 820px;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .65fr);
  gap: 14px 64px;
  margin-bottom: 46px;
}

.comparison-fit-lens__head > span,
.comparison-fit-lens__head h2 {
  grid-column: 1;
}

.comparison-fit-lens__head h2,
.comparison-ai-model__copy h2,
.comparison-hallmarks__head h2 {
  margin: 0;
  font-family: var(--cp-display);
  font-size: clamp(52px, 5vw, 72px);
  letter-spacing: -.035em;
  line-height: .9;
}

.comparison-fit-lens__head p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  color: var(--cp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.comparison-fit-lens__board {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid #cbc9df;
  border-radius: 26px 26px 52px 26px;
  background: #fff;
  box-shadow: 0 28px 65px rgba(53, 52, 92, .11);
}

.comparison-fit-lens__board article {
  min-height: 390px;
  padding: 42px;
}

.comparison-fit-lens__board article + article {
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.comparison-fit-lens__board small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-fit-lens__board h3 {
  max-width: 520px;
  margin: 18px 0 42px;
  font-family: var(--cp-display);
  font-size: clamp(34px, 3.2vw, 46px);
  letter-spacing: -.025em;
  line-height: .95;
}

.comparison-fit-lens__board ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-fit-lens__board li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  line-height: 1.6;
}

.comparison-fit-lens__board li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.comparison-fit-lens__enterprise {
  color: var(--cp-ink);
  background: #fff;
}

.comparison-fit-lens__enterprise small {
  color: #62657b;
}

.comparison-fit-lens__classcore {
  color: #fff;
  background: #17152e;
}

.comparison-fit-lens__classcore small {
  color: #9fb0ff;
}

.comparison-fit-lens__classcore li {
  color: #d6d7e5;
}

.comparison-ai-model {
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background: #1b1a31;
}

.comparison-ai-model__grid {
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(480px, 1.08fr);
  align-items: start;
  gap: 88px;
}

.comparison-ai-model__copy {
  position: sticky;
  top: 120px;
}

.comparison-ai-model__copy > span {
  color: #9fb0ff;
}

.comparison-ai-model__copy p {
  margin: 26px 0 0;
  color: #c3c5d5;
  font-size: 14px;
  line-height: 1.75;
}

.comparison-ai-model__copy .comparison-ai-model__note {
  padding: 16px 0 0 22px;
  border-left: 2px solid #8298ff;
  color: #fff;
  font-weight: 700;
}

.comparison-ai-model__flow {
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.comparison-ai-model__flow article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.comparison-ai-model__flow i {
  color: #879dff;
  font-family: var(--cp-display);
  font-size: 28px;
  font-style: normal;
  font-weight: 800;
}

.comparison-ai-model__flow div {
  display: grid;
  gap: 7px;
}

.comparison-ai-model__flow strong {
  font-size: 17px;
}

.comparison-ai-model__flow span {
  color: #b8bacb;
  font-size: 12px;
  line-height: 1.6;
}

.comparison-hallmarks {
  padding: 110px 0;
  background: #fff;
}

.comparison-hallmarks__head {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
  gap: 14px 70px;
  margin-bottom: 50px;
}

.comparison-hallmarks__head > span,
.comparison-hallmarks__head h2 {
  grid-column: 1;
}

.comparison-hallmarks__head p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  color: var(--cp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.comparison-hallmarks__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.comparison-hallmark {
  --hallmark-accent: #4964ed;
  --hallmark-bg: #eef3ff;
  position: relative;
  min-height: 255px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid color-mix(in srgb, var(--hallmark-accent) 24%, white);
  border-radius: 18px 18px 34px 18px;
  background: var(--hallmark-bg);
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), border-color .28s ease;
}

.comparison-hallmark:hover {
  border-color: color-mix(in srgb, var(--hallmark-accent) 44%, white);
  transform: translateY(-4px);
}

.comparison-hallmark--rfid,
.comparison-hallmark--devices,
.comparison-hallmark--credentials {
  grid-column: span 4;
}

.comparison-hallmark--havefun {
  grid-column: span 7;
  min-height: 300px;
}

.comparison-hallmark--launch {
  grid-column: span 5;
  min-height: 300px;
}

.comparison-hallmark--developer {
  grid-column: span 5;
}

.comparison-hallmark--identity {
  grid-column: span 7;
}

.comparison-hallmark--devices { --hallmark-accent: #16876a; --hallmark-bg: #ecfbf6; }
.comparison-hallmark--havefun { --hallmark-accent: #7651d6; --hallmark-bg: #f3efff; }
.comparison-hallmark--launch { --hallmark-accent: #b67613; --hallmark-bg: #fff7df; }
.comparison-hallmark--credentials { --hallmark-accent: #2587a6; --hallmark-bg: #eefaff; }
.comparison-hallmark--developer { --hallmark-accent: #db596b; --hallmark-bg: #fff0f2; }
.comparison-hallmark--identity { --hallmark-accent: #326fb9; --hallmark-bg: #eef6ff; }

.comparison-hallmark__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--hallmark-accent) 24%, white);
  border-radius: 15px;
  color: var(--hallmark-accent);
  background: rgba(255, 255, 255, .78);
}

.comparison-hallmark__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.comparison-hallmark small {
  display: block;
  margin-top: 30px;
  color: var(--hallmark-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.comparison-hallmark h3 {
  max-width: 560px;
  margin: 8px 0 10px;
  font-family: var(--cp-display);
  font-size: 30px;
  letter-spacing: -.02em;
  line-height: .98;
}

.comparison-hallmark p {
  max-width: 560px;
  margin: 0;
  color: var(--cp-muted);
  font-size: 12px;
  line-height: 1.65;
}

.comparison-depth {
  padding: 96px 0;
}

.comparison-depth__head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(350px, .7fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}

.comparison-depth__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--cp-line);
  border-radius: 22px;
}

.comparison-depth article {
  min-height: 240px;
  padding: 32px;
  border-right: 1px solid var(--cp-line);
  border-bottom: 1px solid var(--cp-line);
}

.comparison-depth article:nth-child(1) {
  grid-column: span 5;
}

.comparison-depth article:nth-child(2) {
  grid-column: span 7;
}

.comparison-depth article:nth-child(2),
.comparison-depth article:last-child {
  border-right: 0;
}

.comparison-depth article:last-child {
  grid-column: 1 / -1;
  min-height: 210px;
  border-bottom: 0;
}

.comparison-depth article span {
  display: block;
  color: var(--cp-cobalt);
  font-family: var(--cp-display);
  font-size: 30px;
  font-weight: 800;
}

.comparison-depth article h3 {
  margin: 45px 0 10px;
  font-size: 17px;
}

.comparison-depth article p {
  margin: 0;
  color: var(--cp-muted);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  :root {
    --cp-shell: min(100% - 38px, 1000px);
  }

  .commercial-hero__top,
  .comparison-hero__top {
    gap: 38px;
  }

  .price-builder {
    grid-template-columns: 1fr 280px;
  }

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

  .module-rail::before {
    display: none;
  }

  .quote-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .commercial-footer__grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --cp-shell: min(100% - 30px, 720px);
  }

  .commercial-fallback-nav__links {
    display: none;
  }

  .commercial-hero,
  .comparison-hero {
    padding-top: 112px;
  }

  .commercial-hero__top,
  .comparison-hero__top,
  .comparison-orientation,
  .commercial-section__head,
  .comparison-depth__head,
  .commercial-closing__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .comparison-orientation {
    align-items: start;
  }

  .comparison-orientation__evidence {
    justify-items: start;
    text-align: left;
  }

  .comparison-cost-proof {
    grid-template-columns: 1fr 1.4fr;
  }

  .comparison-cost-proof__source {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0 !important;
  }

  .comparison-fit-lens__head,
  .comparison-hallmarks__head,
  .comparison-ai-model__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .comparison-fit-lens__head > span,
  .comparison-fit-lens__head h2,
  .comparison-fit-lens__head p,
  .comparison-hallmarks__head > span,
  .comparison-hallmarks__head h2,
  .comparison-hallmarks__head p {
    grid-column: 1;
    grid-row: auto;
  }

  .comparison-fit-lens__board {
    grid-template-columns: 1fr;
  }

  .comparison-fit-lens__board article + article {
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-left: 0;
  }

  .comparison-ai-model__copy {
    position: static;
  }

  .comparison-hallmark--rfid,
  .comparison-hallmark--devices,
  .comparison-hallmark--credentials,
  .comparison-hallmark--havefun,
  .comparison-hallmark--launch,
  .comparison-hallmark--developer,
  .comparison-hallmark--identity {
    grid-column: span 6;
  }

  .commercial-hero h1,
  .comparison-hero h1 {
    font-size: clamp(54px, 14vw, 82px);
  }

  .student-control input {
    font-size: 56px;
  }

  .price-builder {
    grid-template-columns: 1fr;
  }

  .price-summary {
    position: relative;
    top: 0;
  }

  .pricing-access-dialog {
    width: min(760px, calc(100% - 20px));
    max-height: calc(100dvh - 20px);
    overflow: auto;
  }

  .pricing-access-dialog__details {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pricing-access-dialog__details .pricing-access-form {
    margin-top: 24px;
  }

  .pricing-access-dialog__heading {
    max-width: 680px;
  }

  .suite-maps {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .quote-detail {
    grid-template-columns: 1fr;
  }

  .quote-detail__media {
    min-height: 300px;
    order: -1;
  }

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

  .commercial-footer__brand {
    grid-column: 1 / -1;
  }

  .comparison-board {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .comparison-table,
  .comparison-table tbody {
    display: block;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--cp-line);
    border-radius: 14px;
    background: #fff;
  }

  .comparison-table td {
    display: block;
    border: 0;
  }

  .comparison-table td:first-child {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--cp-line);
    background: #f8f8fd;
  }

  .comparison-table td:nth-child(2)::before,
  .comparison-table td:nth-child(3)::before {
    display: block;
    margin-bottom: 8px;
    color: var(--cp-muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .comparison-table td:nth-child(2)::before {
    content: "ClassCore";
  }

  .comparison-table td:nth-child(3)::before {
    content: attr(data-competitor-label);
  }

  .comparison-detail {
    grid-template-columns: 1fr;
  }

  .comparison-detail > div {
    border-right: 0;
    border-bottom: 1px solid var(--cp-line);
  }

  .comparison-detail > div:last-child {
    border-bottom: 0;
  }

  .comparison-depth__grid {
    grid-template-columns: 1fr;
  }

  .comparison-depth article {
    grid-column: 1 !important;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--cp-line);
  }

  .comparison-depth article:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 821px) and (max-height: 650px) {
  .pricing-access-dialog__frame {
    padding-block: 18px 20px;
  }

  .pricing-access-dialog__brand img {
    width: 146px;
  }

  .pricing-access-dialog__details,
  .pricing-access-dialog__details .pricing-access-form {
    margin-top: 0;
  }

  .pricing-access-dialog__heading {
    margin-top: 20px;
  }

  .pricing-access-dialog__heading h2 {
    font-size: 44px;
  }

  .pricing-access-dialog__heading p {
    font-size: 13px;
    line-height: 1.45;
  }

  .pricing-access-form input[type="text"],
  .pricing-access-form input[type="email"],
  .pricing-access-form select {
    min-height: 44px;
  }
}

@media (max-width: 560px) {
  :root {
    --cp-shell: calc(100% - 24px);
  }

  .commercial-fallback-nav__inner {
    min-height: 66px;
  }

  .commercial-fallback-nav__logo img {
    width: 145px;
  }

  .commercial-fallback-nav__actions a:first-child {
    display: none;
  }

  .commercial-hero {
    padding-bottom: 20px;
  }

  .comparison-hero {
    padding-bottom: 64px;
  }

  .comparison-cost-proof {
    grid-template-columns: 1fr;
  }

  .comparison-cost-proof > div + div {
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .comparison-cost-proof__source {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-fit-lens,
  .comparison-ai-model,
  .comparison-hallmarks {
    padding-block: 76px;
  }

  .comparison-fit-lens__board article {
    min-height: 0;
    padding: 30px 24px;
  }

  .comparison-fit-lens__board h3 {
    margin-bottom: 30px;
  }

  .comparison-ai-model__grid {
    gap: 52px;
  }

  .comparison-ai-model__flow article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .comparison-hallmarks__grid {
    grid-template-columns: 1fr;
  }

  .comparison-hallmark--rfid,
  .comparison-hallmark--devices,
  .comparison-hallmark--credentials,
  .comparison-hallmark--havefun,
  .comparison-hallmark--launch,
  .comparison-hallmark--developer,
  .comparison-hallmark--identity {
    grid-column: 1;
    min-height: 240px;
  }

  .commercial-hero__top {
    margin-bottom: 24px;
  }

  .commercial-hero h1,
  .comparison-hero h1 {
    font-size: 54px;
  }

  .commercial-hero__copy > p,
  .comparison-hero__copy > p {
    margin-top: 18px;
    font-size: 16px;
  }

  .student-control input {
    padding: 18px;
    font-size: 47px;
  }

  .price-builder {
    padding: 14px;
    border-radius: 20px;
  }

  .module-rail {
    grid-template-columns: 1fr;
  }

  .module-choice {
    display: grid;
    min-height: 0;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 13px;
  }

  .module-choice__check,
  .module-choice__icon {
    margin: 0;
  }

  .module-choice em {
    margin: 0;
  }

  .suite-peek {
    grid-template-columns: 1fr;
  }

  .quote-mini__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .commercial-section,
  .quote-products,
  .faq-section,
  .comparison-depth {
    padding-block: 72px;
  }

  .commercial-section__head h2,
  .quote-products__head h2,
  .commercial-closing h2,
  .comparison-depth h2 {
    font-size: 50px;
  }

  .suite-map__title {
    flex-wrap: wrap;
  }

  .suite-map__title h3 {
    font-size: 36px;
  }

  .suite-map__list {
    margin-left: 13px;
    padding-left: 25px;
  }

  .suite-map__item::before {
    width: 25px;
  }

  .suite-map__item::after {
    right: calc(100% + 21px);
  }

  .quote-options {
    display: flex;
    overflow-x: auto;
    padding: 3px 1px 12px;
    scroll-snap-type: x mandatory;
  }

  .quote-option {
    min-width: 142px;
    scroll-snap-align: start;
  }

  .quote-detail__copy {
    padding: 28px 23px;
  }

  .quote-detail__copy h3 {
    font-size: 38px;
  }

  .quote-detail__media {
    min-height: 235px;
  }

  .configuration-preview__actions,
  .comparison-actions,
  .comparison-actions__links {
    align-items: stretch;
    flex-direction: column;
  }

  .commercial-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .commercial-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .comparison-table tr {
    grid-template-columns: 1fr;
  }

  .comparison-table td:first-child {
    grid-column: auto;
  }

  .source-notes__body {
    grid-template-columns: 1fr;
  }

  .price-summary {
    min-height: 520px;
  }

  .pricing-lock {
    padding-inline: 22px;
  }

  .pricing-lock h2 {
    font-size: 36px;
  }

  .pricing-access-dialog {
    width: calc(100% - 12px);
    max-height: 96vh;
    border-radius: 22px;
  }

  .pricing-access-dialog__frame {
    padding: 22px 18px 26px;
    border-radius: 22px;
  }

  .pricing-access-dialog__close {
    top: 15px;
    right: 15px;
  }

  .pricing-access-dialog__brand img {
    width: 145px;
  }

  .pricing-access-dialog__brand span {
    display: none;
  }

  .pricing-access-dialog__heading {
    margin: 34px 0 24px;
  }

  .pricing-access-dialog__heading h2,
  .pricing-access-success h2 {
    font-size: 42px;
  }

  .pricing-access-form__grid {
    grid-template-columns: 1fr;
  }

  .pricing-otp-form input {
    min-height: 76px;
    font-size: 39px;
  }

  .pricing-otp-form__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
