:root {
  --ct-white: #ffffff;
  --ct-surface-subtle: #fafbfd;
  --ct-surface-muted: #f5f7fa;
  --ct-border-light: #e4e9f0;
  --ct-border-medium: #d4dce6;
  --ct-band-blue: #f4f8ff;
  --ct-band-line: #d9e5f3;
  --ct-ink-950: #061528;
  --ct-ink-900: #0b203b;
  --ct-ink-800: #183452;
  --ct-text-700: #3f5066;
  --ct-text-600: #5c6b7d;
  --ct-text-500: #788493;
  --ct-blue-700: #0048d8;
  --ct-blue-600: #0060f8;
  --ct-blue-500: #427eff;
  --ct-blue-100: #e9f1ff;
  --ct-blue-050: #f5f8ff;
  --ct-success: #17674e;
  --ct-warning: #8a5d00;
  --ct-error: #b42318;
  --radius: 8px;
  --page-max: 1240px;
  --content-max: 880px;
  --content-mid: 920px;
  --content-wide: 960px;
  --wide-max: 1320px;
  --copy-max: 740px;
  --header-height: 77px;
  --ct-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ct-font-editorial: Georgia, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ct-white);
  color: var(--ct-ink-950);
  font-family: var(--ct-font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.admin-body .site-header,
body.admin-body .site-footer {
  display: none;
}

body.admin-body h1,
body.admin-body h2,
body.admin-body h3,
body.admin-body h4 {
  font-family: var(--ct-font-sans);
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--ct-blue-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--ct-blue-600);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ct-blue-500);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ct-ink-950);
  font-family: var(--ct-font-editorial);
  hyphens: manual;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 52px;
  font-weight: 680;
  line-height: 1.07;
}

h2 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 640;
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 640;
  line-height: 1.2;
}

h4 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 620;
  line-height: 1.35;
}

p {
  color: var(--ct-text-700);
  overflow-wrap: break-word;
}

p,
li {
  max-width: var(--copy-max);
}

/* Public typography hierarchy: black is editorial, blue signals, gray supports. */
:where(body:not(.admin-body)) p,
:where(body:not(.admin-body)) li,
:where(body:not(.admin-body)) dd {
  font-family: var(--ct-font-sans);
}

:where(body:not(.admin-body)) p,
:where(body:not(.admin-body)) li {
  font-size: 14px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ct-ink-950);
  color: var(--ct-white);
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(var(--page-max), calc(100% - 80px));
  margin-inline: auto;
}

main .shell {
  width: min(var(--content-max), calc(100% - 80px));
}

.section {
  padding: 52px 0;
}

.product-model-section {
  padding-top: 120px;
}

.families-audience-section {
  padding-top: 120px;
}

.section-break {
  position: relative;
}

.section-break::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ct-border-light);
  content: "";
}

.home-entry {
  display: grid;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
}

.home-entry .hero {
  width: 100%;
  padding-block: 0;
  transform: translateY(-108px);
}

.home-entry h1 {
  font-weight: 700;
  line-height: 1.02;
}

.home-entry .hero-text {
  font-size: 14px;
}

.home-entry .hero-copy > .eyebrow {
  animation: home-hero-arrive 440ms cubic-bezier(0.2, 0.8, 0.2, 1) 40ms both;
}

.home-entry .hero-copy > h1 {
  animation: home-hero-arrive 520ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.home-entry .hero-copy > .hero-text {
  animation: home-hero-arrive 480ms cubic-bezier(0.2, 0.8, 0.2, 1) 230ms both;
}

@keyframes home-hero-arrive {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--ct-border-light);
  background: var(--ct-white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: calc(var(--header-height) - 1px);
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ct-ink-950);
  font-weight: 780;
  text-decoration: none;
}

.trust-items strong,
.definition-list dt,
.faq-list summary,
.help-topic-title,
.comparison-table th,
.comparison-table td:first-child,
.comparison-table td::before,
.article-lead,
.button.secondary,
.form-warning,
.field > span,
.help-search-field > span,
.policy-links a,
.final-cta .button.primary,
body:not(.admin-body) input,
body:not(.admin-body) select,
body:not(.admin-body) textarea {
  font-family: var(--ct-font-editorial);
}

.brand-icon {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 0;
  object-fit: cover;
}

.brand span {
  font-family: var(--ct-font-sans);
  font-style: normal;
  text-transform: none;
}

.site-header .brand {
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.site-nav a,
.menu-toggle {
  min-height: 44px;
  color: var(--ct-ink-950);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--ct-blue-700);
  color: var(--ct-ink-950);
}

.site-nav .nav-cta {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--ct-band-line);
  border-radius: var(--radius);
  background: var(--ct-band-blue);
  color: var(--ct-blue-700);
  font-family: var(--ct-font-sans);
  font-weight: 500;
}

.site-nav .nav-cta:hover {
  border-color: var(--ct-border-medium);
  background: var(--ct-blue-100);
  color: var(--ct-blue-700);
}

.site-nav a.nav-cta[aria-current="page"] {
  border-color: var(--ct-band-line);
  color: var(--ct-blue-700);
}

.site-nav a.nav-cta[aria-current="page"]:hover {
  border-color: var(--ct-border-medium);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--ct-border-medium);
  border-radius: var(--radius);
  background: var(--ct-white);
  cursor: pointer;
}

.hero {
  padding: 72px 0 40px;
  background: var(--ct-white);
}

.hero-compact {
  padding-bottom: 36px;
}

.hero-grid {
  max-width: 880px;
}

.hero-text {
  max-width: 700px;
  color: var(--ct-text-600);
  font-size: 14px;
  font-weight: 420;
  line-height: 1.6;
}

.eyebrow,
.card-kicker {
  margin-bottom: 12px;
  color: var(--ct-blue-700);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.preserve-icloud-case .eyebrow {
  text-transform: none;
}

.eyebrow,
.card-kicker,
.definition-row dt,
.step-number,
.text-link,
main p a,
main li a,
main dd a {
  font-family: var(--ct-font-sans);
  font-style: normal;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.hero-actions .hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--ct-font-editorial);
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  border-color: var(--ct-band-line);
  background: var(--ct-band-blue);
  color: var(--ct-ink-950);
}

.button.primary:hover {
  border-color: var(--ct-border-medium);
  background: var(--ct-blue-100);
  color: var(--ct-ink-950);
}

.button.secondary {
  border-color: var(--ct-border-medium);
  background: var(--ct-white);
  color: var(--ct-ink-900);
}

.button.secondary:hover {
  border-color: var(--ct-blue-700);
  background: var(--ct-white);
  color: var(--ct-ink-900);
}

.button.secondary[data-resource-download="employer-overview"] {
  border-color: var(--ct-band-line);
  background: var(--ct-band-blue);
  color: var(--ct-ink-950);
}

.button.secondary[data-resource-download="employer-overview"]:hover {
  border-color: var(--ct-border-medium);
  background: var(--ct-blue-100);
  color: var(--ct-ink-950);
}

.button.secondary[data-resource-download="complete-app-guide"] {
  border-color: var(--ct-band-line);
  background: var(--ct-band-blue);
  color: var(--ct-ink-950);
}

.button.secondary[data-resource-download="complete-app-guide"]:hover {
  border-color: var(--ct-border-medium);
  background: var(--ct-blue-100);
  color: var(--ct-ink-950);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.text-link {
  color: var(--ct-blue-700);
  font-weight: 720;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.trust-strip {
  border-block: 1px solid var(--ct-border-light);
  background: var(--ct-white);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.trust-items div {
  padding: 26px 30px;
  border-right: 1px solid var(--ct-border-light);
}

.trust-items div:first-child {
  padding-left: 0;
}

.trust-items div:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-items strong,
.trust-items span {
  display: block;
}

.trust-items strong {
  color: var(--ct-ink-950);
  font-weight: 720;
}

.trust-items span {
  color: var(--ct-text-700);
  font-size: 14px;
  line-height: 1.6;
}

.section-heading {
  max-width: var(--content-max);
}

.section-heading::before {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--ct-blue-700);
  content: "";
}

.section-heading p {
  max-width: var(--copy-max);
}

.section-heading > p:not(.eyebrow) {
  color: var(--ct-text-600);
}

.centered-section .section-heading {
  max-width: 720px;
  text-align: center;
}

.centered-section .section-heading::before {
  margin-inline: auto;
}

.centered-section .section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
}

.split-editorial {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 64px;
  align-items: start;
}

.split-heading::before {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--ct-blue-700);
  content: "";
}

.split-copy {
  padding-top: 6px;
}

.split-editorial > *,
.form-shell > *,
.article-layout > *,
.footer-grid > *,
.pricing-column {
  min-width: 0;
}

.split-copy p:first-child {
  color: var(--ct-text-600);
  font-size: 14px;
  line-height: 1.7;
}

.blue-band {
  background: var(--ct-band-blue);
}

.card-grid,
.three-grid,
.four-grid,
.option-grid {
  display: grid;
  gap: 24px;
}

.definition-row,
.step-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--ct-border-medium);
}

.definition-row {
  grid-template-columns: repeat(3, 1fr);
}

.definition-row div,
.step-row {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--ct-border-light);
}

.definition-row dt,
.step-number {
  display: block;
  margin-bottom: 10px;
  color: var(--ct-blue-700);
  font-size: 13px;
  font-weight: 760;
}

.definition-row dd {
  margin: 0;
  color: var(--ct-text-600);
  font-size: 13px;
}

.product-thesis-band .definition-row {
  border-bottom: 1px solid var(--ct-border-light);
}

.product-thesis-band .definition-row > div {
  border-bottom: 0;
}

.product-thesis-band {
  position: relative;
  padding-block: 68px;
}

.product-thesis-band .section-heading {
  max-width: 820px;
}

.product-thesis-band .section-heading::before {
  position: relative;
  left: 50%;
  margin-inline: 0;
  transform: translateX(-50%);
}

.product-thesis-band .section-heading > .eyebrow {
  width: 100%;
  max-width: none;
  text-align: center;
}

.product-thesis-band h2 {
  max-width: 760px;
  margin-inline: auto;
}

.product-thesis-band .section-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 26px;
  padding: 17px 0 17px 24px;
  border-left: 3px solid var(--ct-blue-700);
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
}

.product-thesis-flow {
  position: relative;
  counter-reset: thesis-step;
  margin-top: 42px;
  border-top: 0;
}

.product-thesis-flow::before {
  position: absolute;
  top: 17px;
  right: 16.666%;
  left: 16.666%;
  height: 1px;
  background: var(--ct-border-medium);
  content: "";
}

.product-thesis-flow > div {
  position: relative;
  padding: 54px 24px 26px;
  counter-increment: thesis-step;
  text-align: center;
}

.product-thesis-flow > div::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  place-items: center;
  background: var(--ct-blue-700);
  color: var(--ct-white);
  content: "0" counter(thesis-step);
  font-family: var(--ct-font-sans);
  font-size: 11px;
  font-weight: 800;
  transform: translateX(-50%);
}

.product-thesis-flow dt {
  color: var(--ct-ink-950);
  font-size: 14px;
}

.product-thesis-flow dd {
  max-width: 230px;
  margin-inline: auto;
  line-height: 1.65;
}

.definition-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--ct-border-medium);
}

.definition-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ct-border-light);
}

.definition-list dt {
  color: var(--ct-ink-950);
  font-size: 15px;
  font-weight: 720;
}

.definition-list dd {
  margin: 0;
  color: var(--ct-text-600);
  font-size: 13px;
}

.editorial-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--ct-border-medium);
}

.editorial-item {
  display: grid;
  grid-template-columns: 150px minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--ct-border-light);
}

.editorial-item h3 {
  font-size: 22px;
}

.editorial-item p:last-child {
  margin-bottom: 0;
  color: var(--ct-text-600);
  font-size: 13px;
}

.step-row {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
}

.step-row h3,
.info-card h3,
.editorial-row h3,
.tour-row h3 {
  color: var(--ct-ink-950);
}

.step-row h3,
.info-card h3,
.editorial-row h3 {
  font-size: 22px;
}

.step-row p {
  margin-bottom: 0;
  color: var(--ct-text-600);
  font-size: 13px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

.four-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.editorial-row {
  padding: 26px 0;
  border-top: 1px solid var(--ct-border-medium);
  color: inherit;
  text-decoration: none;
}

.info-card p,
.editorial-row p {
  margin-bottom: 0;
  color: var(--ct-text-600);
  font-size: 13px;
}

.info-card .text-link,
.editorial-row .text-link {
  display: inline-flex;
  margin-top: 16px;
}

.resource-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.resource-grid .info-card,
.resource-grid .editorial-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 180px;
  gap: 24px;
  align-items: start;
  min-height: 0;
  padding: 28px 0;
  border-top: 1px solid var(--ct-border-light);
}

.resource-row-link {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.resource-row-link:hover {
  color: inherit;
}

.resource-row-link:focus-visible {
  outline: 2px solid var(--ct-blue-700);
  outline-offset: 4px;
}

.resource-grid .info-card .card-kicker,
.resource-grid .editorial-row .card-kicker {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 4px 0 0;
}

.resource-grid .info-card h3,
.resource-grid .info-card p,
.resource-grid .editorial-row h3,
.resource-grid .editorial-row p {
  grid-column: 2;
}

.resource-grid .info-card .text-link,
.resource-grid .editorial-row .text-link {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  margin-top: 4px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 25px;
  padding-left: 26px;
  color: var(--ct-text-600);
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  left: 1px;
  top: 0.82em;
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--ct-blue-700);
  border-radius: 1px;
  background: transparent;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.tour-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--ct-border-medium);
}

.tour-row {
  display: grid;
  grid-template-columns: 140px minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--ct-border-light);
}

.tour-row p:last-child {
  margin-bottom: 0;
  color: var(--ct-text-600);
  font-size: 13px;
}

.tour-row h3 {
  font-size: 21px;
}

.faq-list {
  display: block;
  border-top: 1px solid var(--ct-border-medium);
}

.faq-list details {
  border-bottom: 1px solid var(--ct-border-light);
  background: var(--ct-white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--ct-ink-950);
  font-weight: 700;
}

.faq-list details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--ct-text-600);
  font-size: 13px;
}

.help-directory {
  margin-top: 30px;
}

.help-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 24px 0;
  border-top: 1px solid var(--ct-border-medium);
  border-bottom: 1px solid var(--ct-border-light);
}

.help-search-field {
  display: grid;
  gap: 8px;
  max-width: 620px;
  color: var(--ct-ink-950);
  font-size: 14px;
  font-weight: 700;
}

.help-search-field input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--ct-border-medium);
  border-radius: var(--radius);
  background: var(--ct-white);
  color: var(--ct-ink-950);
}

.help-search-field input::placeholder {
  color: var(--ct-text-500);
}

.help-search-count {
  margin: 0 0 11px;
  color: var(--ct-text-500);
  font-size: 14px;
}

.help-empty {
  max-width: none;
  margin: 28px 0 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--ct-border-light);
  color: var(--ct-text-600);
}

.help-category {
  padding-top: 44px;
}

.help-category-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 36px;
  align-items: baseline;
  padding-bottom: 18px;
}

.help-category-heading h3,
.help-category-heading p {
  margin-bottom: 0;
}

.help-category-heading h3 {
  font-size: 24px;
}

.help-category-heading p {
  color: var(--ct-text-600);
  font-size: 13px;
}

.help-topic-list {
  border-top: 1px solid var(--ct-border-medium);
}

.help-topic {
  border-bottom: 1px solid var(--ct-border-light);
}

.help-topic summary {
  display: grid;
  grid-template-columns: 24px minmax(200px, 1fr) minmax(180px, 0.62fr) minmax(130px, 0.34fr);
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

.help-topic summary::-webkit-details-marker {
  display: none;
}

.help-topic summary::before {
  color: var(--ct-blue-700);
  content: "+";
  font-size: 20px;
  font-weight: 700;
}

.help-topic[open] summary::before {
  content: "-";
}

.help-topic-title {
  color: var(--ct-ink-950);
  font-weight: 700;
}

.help-topic-path,
.help-topic-plan {
  color: var(--ct-text-500);
  font-size: 13px;
  line-height: 1.5;
}

.help-topic-plan {
  color: var(--ct-text-600);
  font-weight: 650;
}

.help-topic-body {
  padding: 0 0 26px 40px;
}

.help-topic-body .definition-list {
  margin-top: 0;
}

.help-topic[hidden],
.help-category[hidden],
.help-empty[hidden] {
  display: none;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1fr);
  gap: 36px;
  padding: 36px;
  border: 1px solid var(--ct-border-light);
  border-radius: var(--radius);
  background: var(--ct-white);
}

.form-warning {
  padding: 14px 0 0;
  border-top: 1px solid var(--ct-border-light);
  color: var(--ct-ink-900);
  font-size: 15px;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--ct-ink-900);
  font-size: 15px;
  font-weight: 640;
}

.field-wide {
  grid-column: 1 / -1;
}

.field small {
  color: var(--ct-text-600);
  font-family: var(--ct-font-sans);
  font-size: 13px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--ct-border-medium);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: var(--ct-white);
  color: var(--ct-ink-950);
}

input::placeholder,
textarea::placeholder {
  font-family: var(--ct-font-sans);
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.consent-box {
  display: grid;
  gap: 10px;
}

.check-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ct-text-700);
  font-size: 14px;
  font-weight: 520;
}

.check-option input {
  width: 20px;
  min-height: 20px;
  margin-top: 4px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-status {
  margin: 0;
  font-weight: 640;
}

.form-status.error {
  color: var(--ct-error);
}

.form-status.success {
  color: var(--ct-success);
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--ct-border-medium);
  border-bottom: 1px solid var(--ct-border-light);
  background: var(--ct-white);
}

.article-toc h2 {
  margin: 0 0 8px;
  font-size: 21px;
}

.article-toc a {
  font-weight: 640;
  text-decoration: none;
}

.article-body {
  max-width: 780px;
}

.article-lead {
  color: var(--ct-ink-900);
  font-size: 20px;
  line-height: 1.65;
}

.article-body section {
  padding: 30px 0;
  border-top: 1px solid var(--ct-border-light);
}

.table-wrap {
  overflow-x: auto;
}

.inline-table-wrap {
  margin-top: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--ct-border-medium);
  border-bottom: 1px solid var(--ct-border-light);
  background: var(--ct-white);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 15px;
  border-bottom: 1px solid var(--ct-border-light);
  text-align: left;
  vertical-align: top;
}

.comparison-table td {
  color: var(--ct-text-600);
  font-size: 14px;
  line-height: 1.55;
}

.comparison-table th {
  color: var(--ct-ink-900);
  font-size: 13px;
  font-weight: 720;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  color: var(--ct-ink-950);
  font-weight: 700;
}

.pricing-comparison .plan-access-included {
  color: var(--ct-blue-700);
  font-weight: 400;
}

.pricing-comparison .plan-access-unavailable {
  color: var(--ct-text-500);
}

.pricing-comparison-note {
  margin-top: 14px;
  color: var(--ct-text-600);
  font-size: 12px;
  line-height: 1.55;
}

.pricing-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ct-border-medium);
  border-bottom: 1px solid var(--ct-border-light);
}

.pricing-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 28px 18px;
  border-right: 1px solid var(--ct-border-light);
  background: var(--ct-white);
  text-align: center;
}

.pricing-column:last-child {
  border-right: 0;
}

.pricing-column h3 {
  font-size: 21px;
  line-height: 1.22;
}

.pricing-column > * {
  width: 100%;
  max-width: 190px;
}

.pricing-column .card-kicker {
  font-size: 12px;
}

.pricing-column > p:last-child {
  margin-bottom: 0;
  color: var(--ct-text-600);
  font-size: 12px;
  line-height: 1.6;
}

.pricing-summary-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.pricing-acquisition {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

.pricing-acquisition .button.primary {
  border-color: var(--ct-band-line);
  background: var(--ct-white);
  color: var(--ct-blue-700);
  font-family: var(--ct-font-sans);
  font-weight: 500;
}

.pricing-acquisition .button.primary:hover {
  border-color: var(--ct-border-medium);
  background: var(--ct-blue-050);
  color: var(--ct-blue-700);
}

@media (min-width: 921px) {
  .pricing-body .hero {
    padding-bottom: 32px;
  }

  .pricing-overview {
    padding-top: 38px;
  }

  .pricing-overview .pricing-acquisition {
    padding-top: 16px;
  }
}

.policy-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ct-border-medium);
  border-bottom: 1px solid var(--ct-border-light);
}

.policy-links a {
  padding: 18px 0;
  border-bottom: 1px solid var(--ct-border-light);
  color: var(--ct-ink-900);
  font-weight: 700;
  text-decoration: none;
}

.policy-links a:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.policy-links a:hover {
  color: var(--ct-ink-900);
  text-decoration: underline;
}

@media (min-width: 921px) {
  main .section > .table-wrap,
  main .section > .pricing-columns {
    width: min(var(--content-wide), calc(100% - 80px));
  }

  main .section > .definition-row,
  main .section > .step-list,
  main .section > .editorial-list,
  main .tour-section > .tour-list {
    width: min(var(--content-mid), calc(100% - 80px));
  }

  .pricing-comparison th,
  .pricing-comparison td {
    text-align: center;
  }
}

.boundary-callout {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--ct-border-medium);
  text-align: center;
}

.boundary-callout h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.boundary-callout .check-list {
  display: block;
  width: min(700px, 100%);
  margin-inline: auto;
  column-count: 3;
  column-gap: 44px;
  text-align: left;
}

.boundary-callout .check-list li {
  break-inside: avoid;
  margin-bottom: 14px;
}

.final-cta {
  border-top: 1px solid var(--ct-border-light);
  background: var(--ct-ink-950);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: var(--ct-white);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.final-cta .button.primary {
  background: var(--ct-white);
  color: var(--ct-ink-950);
}

.final-cta .button.primary:hover {
  background: var(--ct-blue-100);
}

.final-cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--ct-white);
}

.site-footer {
  background: var(--ct-ink-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(150px, 0.65fr));
  gap: 34px;
  padding: 64px 0 38px;
}

.footer-brand,
.footer-brand span,
.footer-grid h2 {
  color: var(--ct-white);
}

.footer-brand span {
  font-family: var(--ct-font-sans);
}

.footer-intro p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid h2 {
  margin-bottom: 14px;
  font-family: var(--ct-font-sans);
  font-size: 16px;
}

.final-cta h2 {
  font-family: var(--ct-font-sans);
}

@media (hover: hover) and (pointer: fine) {
  :is(
    .definition-row > div,
    .definition-list > div,
    .step-row,
    .editorial-item,
    .info-card,
    .editorial-row,
    .tour-row,
    .faq-list details,
    .help-topic,
    .comparison-table tbody tr,
    .policy-links a
  ) {
    opacity: 0.78;
    transition: opacity 160ms ease-out;
  }

  :is(
    .definition-row > div,
    .definition-list > div,
    .step-row,
    .editorial-item,
    .info-card,
    .editorial-row,
    .tour-row,
    .faq-list details,
    .help-topic,
    .comparison-table tbody tr,
    .policy-links a
  ):is(:hover, :focus-within),
  .faq-list details[open],
  .help-topic[open] {
    opacity: 1;
  }

  .pricing-comparison tbody tr {
    opacity: 1;
    transition: none;
  }

  .pricing-column {
    transition:
      background-color 220ms ease-out,
      opacity 200ms ease-out,
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .pricing-column::after {
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    height: 3px;
    background: var(--ct-blue-700);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .pricing-column .card-kicker,
  .pricing-column h3,
  .pricing-column > p:last-child {
    transition:
      color 200ms ease-out,
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .pricing-columns:hover .pricing-column:not(:hover) {
    opacity: 0.48;
    transform: translateY(5px);
  }

  .pricing-column:hover {
    z-index: 2;
    background: var(--ct-blue-050);
    opacity: 1;
    transform: translateY(-10px);
  }

  .pricing-column:hover::after {
    transform: scaleX(1);
  }

  .pricing-column:hover .card-kicker {
    color: var(--ct-blue-600);
    transform: translateY(-2px);
  }

  .pricing-column:hover h3 {
    color: var(--ct-ink-950);
    transform: translateY(-2px) scale(1.045);
  }

  .pricing-column:hover > p:last-child {
    color: var(--ct-text-700);
  }

  .resource-row-link {
    transition:
      background-color 220ms ease-out,
      opacity 200ms ease-out,
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .resource-row-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--ct-blue-700);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .resource-row-link .card-kicker,
  .resource-row-link h3,
  .resource-row-link p {
    transition:
      color 200ms ease-out,
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .linked-resource-grid:hover .resource-row-link:not(:hover) {
    opacity: 0.48;
    transform: translateY(5px);
  }

  .resource-row-link:hover {
    z-index: 2;
    background: var(--ct-white);
    opacity: 1;
    transform: translateY(-8px);
  }

  .resource-row-link:hover::after {
    transform: scaleX(1);
  }

  .resource-row-link:hover .card-kicker {
    color: var(--ct-blue-600);
    transform: translateY(-2px);
  }

  .resource-row-link:hover h3 {
    color: var(--ct-ink-950);
    transform: translateY(-2px) scale(1.025);
    transform-origin: left center;
  }

  .resource-row-link:hover p {
    color: var(--ct-text-700);
  }

  .family-pricing-summary tbody tr,
  .family-pricing-summary tbody td {
    transition:
      background-color 220ms ease-out,
      color 200ms ease-out,
      opacity 200ms ease-out,
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .family-pricing-summary tbody:hover tr:not(:hover) {
    opacity: 0.48;
    transform: translateY(4px);
  }

  .family-pricing-summary tbody tr:hover {
    background: var(--ct-blue-050);
    opacity: 1;
    transform: translateY(-6px);
  }

  .family-pricing-summary tbody tr:hover td:first-child {
    color: var(--ct-blue-700);
    transform: translateX(4px);
  }

  .family-pricing-summary tbody tr:hover td:nth-child(2) {
    color: var(--ct-ink-950);
    transform: scale(1.035);
    transform-origin: left center;
  }
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--ct-white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.confirm-section {
  display: grid;
  min-height: 72vh;
  place-items: center;
}

.confirm-card {
  max-width: 720px;
  padding: 36px;
  border: 1px solid var(--ct-border-light);
  border-radius: var(--radius);
  background: var(--ct-white);
}

.admin-shell {
  min-height: 100vh;
  background: var(--ct-surface-subtle);
}

.admin-login-panel {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.admin-login {
  display: grid;
  width: min(420px, 100%);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--ct-border-light);
  border-radius: var(--radius);
  background: var(--ct-white);
}

.hidden {
  display: none !important;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border-right: 1px solid var(--ct-border-light);
  background: var(--ct-white);
}

.admin-main {
  padding: 26px;
}

.admin-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 24px 0;
  border-top: 1px solid var(--ct-border-medium);
}

.metric-card {
  padding: 18px 16px 18px 0;
  border-right: 1px solid var(--ct-border-light);
  border-bottom: 1px solid var(--ct-border-light);
  background: var(--ct-white);
}

.admin-filters {
  display: grid;
  grid-template-columns: 1fr 180px 180px auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.admin-table-wrap,
.lead-detail {
  overflow: auto;
  border: 1px solid var(--ct-border-light);
  border-radius: var(--radius);
  background: var(--ct-white);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--ct-border-light);
  text-align: left;
  vertical-align: top;
}

.admin-table button {
  border: 0;
  background: transparent;
  color: var(--ct-blue-700);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.lead-detail {
  padding: 18px;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 14px;
  }
}

@media (max-width: 1100px) {

  .four-grid,
  .definition-row,
  .pricing-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-thesis-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-column:nth-child(2n) {
    border-right: 0;
  }

  .pricing-column {
    border-bottom: 1px solid var(--ct-border-light);
  }

  .pricing-column:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    border: 1px solid var(--ct-border-light);
    border-radius: var(--radius);
    background: var(--ct-white);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid var(--ct-border-light);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 1px solid var(--ct-blue-700);
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 33px;
  }

  h3 {
    font-size: 25px;
  }

  .shell {
    width: min(100% - 48px, var(--page-max));
  }

  main .shell {
    width: min(100% - 48px, var(--content-max));
  }

  .hero-grid,
  .split-editorial,
  .form-shell,
  .article-layout,
  .footer-grid,
  .admin-dashboard,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .split-editorial {
    gap: 32px;
  }

  .article-layout {
    gap: 36px;
  }

  .split-editorial.reverse > :first-child {
    order: initial;
  }

  .trust-items,
  .three-grid,
  .card-grid,
  .definition-row,
  .resource-grid .info-card,
  .resource-grid .editorial-row {
    grid-template-columns: 1fr;
  }

  .product-thesis-flow {
    margin-top: 36px;
    border-bottom: 0;
  }

  .product-thesis-flow::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 16px;
    width: 1px;
    height: auto;
  }

  .product-thesis-flow > div {
    padding: 0 0 30px 54px;
    text-align: left;
  }

  .product-thesis-flow > div::before {
    left: 0;
    transform: none;
  }

  .product-thesis-flow dd {
    max-width: none;
    margin-inline: 0;
  }

  .product-thesis-flow > div:last-child {
    padding-bottom: 8px;
  }

  .trust-items div {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ct-border-light);
  }

  .trust-items div:last-child {
    border-bottom: 0;
  }

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

  .pricing-column {
    min-height: 196px;
    padding: 28px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--ct-border-light);
  }

  .pricing-column:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--ct-border-light);
  }

  .pricing-column:last-child {
    border-bottom: 0;
  }

  .step-row,
  .tour-row,
  .editorial-item,
  .definition-list div,
  .help-category-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .help-topic summary {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .help-topic-path,
  .help-topic-plan {
    grid-column: 2;
  }

  .help-topic-body {
    padding-left: 36px;
  }

  .card-grid,
  .three-grid {
    gap: 0;
  }

  .resource-grid .info-card,
  .resource-grid .editorial-row {
    gap: 8px;
  }

  .resource-grid .info-card .card-kicker,
  .resource-grid .info-card h3,
  .resource-grid .info-card p,
  .resource-grid .info-card .text-link,
  .resource-grid .editorial-row .card-kicker,
  .resource-grid .editorial-row h3,
  .resource-grid .editorial-row p,
  .resource-grid .editorial-row .text-link {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .article-toc {
    position: static;
  }

  .policy-links {
    grid-template-columns: 1fr;
  }

  .policy-links a:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--ct-border-light);
  }

  .policy-links a:last-child {
    border-bottom: 0;
  }

  .table-wrap {
    overflow-x: visible;
  }

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

  .comparison-table {
    border: 0;
    background: transparent;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .comparison-table th {
    display: none;
  }

  .comparison-table tr {
    margin-bottom: 0;
    border-top: 1px solid var(--ct-border-medium);
    background: var(--ct-white);
  }

  .comparison-table td {
    display: grid;
    grid-template-columns: minmax(100px, 0.36fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 13px 0;
  }

  .comparison-table td::before {
    content: attr(data-label);
    color: var(--ct-ink-900);
    font-weight: 700;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--ct-border-light);
  }

  .admin-filters {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 40px, var(--page-max));
  }

  main .shell {
    width: min(100% - 40px, var(--content-max));
  }

  .section {
    padding: 40px 0;
  }

  .product-model-section {
    padding-top: 80px;
  }

  .families-audience-section {
    padding-top: 80px;
  }

  .product-thesis-band {
    padding-block: 52px;
  }

  .product-thesis-band .section-heading > p:not(.eyebrow) {
    padding-left: 18px;
    font-size: 14px;
  }

  .hero {
    padding: 52px 0 32px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 14px;
  }

  .button,
  .button-row .button {
    width: 100%;
  }

  .pricing-acquisition .button {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .help-search-panel {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .help-search-count {
    margin-bottom: 0;
  }

  .boundary-callout .check-list {
    display: grid;
    grid-template-columns: 1fr;
    width: min(320px, 100%);
    column-count: auto;
    column-gap: normal;
  }

  .field-wide {
    grid-column: auto;
  }

  .form-shell,
  .confirm-card {
    padding: 22px;
  }

  .footer-bottom,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .pricing-column,
  .pricing-column::after,
  .pricing-column .card-kicker,
  .pricing-column h3,
  .resource-row-link,
  .resource-row-link::after,
  .resource-row-link .card-kicker,
  .resource-row-link h3,
  .family-pricing-summary tbody tr,
  .family-pricing-summary tbody td {
    transform: none !important;
  }

  .home-entry .hero-copy > .eyebrow,
  .home-entry .hero-copy > h1,
  .home-entry .hero-copy > .hero-text {
    animation: none !important;
    opacity: 1;
    transform: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .article-toc .button,
  .button-row {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section {
    padding: 24px 0;
  }

  .shell {
    width: 100%;
  }

  main .shell {
    width: 100%;
  }

  .article-layout {
    display: block;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
  }
}
