/* Shared component ownership. Page layouts never redefine these controls. */
.ct-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-top: 32px;
}
.ct-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: var(--ct-radius);
  background: var(--ct-action);
  color: var(--ct-on-action);
  font: 500 1rem/1.4 var(--ct-font);
  text-align: center;
  text-decoration: none;
  transition: background var(--ct-duration);
  white-space: normal;
}
.ct-button:hover {
  background: var(--ct-action-hover);
  color: var(--ct-on-action);
  text-decoration: none;
}
.ct-button--quiet {
  background: transparent;
  color: var(--ct-text);
  border-color: var(--ct-line);
}
.ct-button--quiet:hover {
  background: var(--ct-raised);
  color: var(--ct-text);
}
.ct-button--inverse {
  background: #f6f7f9;
  color: #111820;
  border-color: #f6f7f9;
}
.ct-button--inverse:hover {
  background: #dceaff;
  color: #111820;
}
.ct-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 500;
}
.ct-header {
  border-bottom: 1px solid var(--ct-line);
  position: relative;
  z-index: 20;
}
.ct-nav {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 88px;
}
.ct-brand,
.ct-wordmark {
  flex-shrink: 0;
}
.ct-brand img,
.ct-wordmark {
  width: 207px;
  height: auto;
  filter: brightness(0) invert(1);
}
.ct-nav a {
  text-decoration: none;
}
.ct-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.ct-nav-links > a:not(.ct-button),
.ct-nav-group > summary {
  padding: 12px;
  color: var(--ct-muted);
  font-size: 0.9375rem;
  font-weight: 400;
}
.ct-nav-links > a:hover,
.ct-nav-group > summary:hover {
  color: var(--ct-text);
}
.ct-login {
  margin-left: auto;
}
.ct-nav > .ct-button {
  margin-left: auto;
}
.ct-nav-group {
  position: relative;
}
.ct-nav-group > summary {
  list-style: none;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ct-nav-group > summary::-webkit-details-marker {
  display: none;
}
.ct-nav-group > summary::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid;
  border-bottom: 1.5px solid;
  transform: rotate(45deg);
  margin-top: -4px;
}
.ct-nav-group[open] > summary {
  color: var(--ct-text);
  background: var(--ct-raised);
}
.ct-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 290px;
  padding: 12px;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  background: var(--ct-surface);
  box-shadow: var(--ct-shadow);
}
.ct-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: var(--ct-text);
}
.ct-dropdown a:hover,
.ct-dropdown a:focus-visible {
  background: var(--ct-raised);
}
.ct-nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ct-text);
  min-height: 48px;
  padding: 12px;
}
.ct-footer {
  padding: 64px 0 24px;
  border-top: 1px solid var(--ct-line);
}
.ct-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--ct-line);
}
.ct-footer-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.ct-footer-cta p {
  margin-top: 16px;
  font-size: 1rem;
}
.ct-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  gap: 40px;
}
.ct-footer-grid > *,
.ct-feature > *,
.ct-card-grid > *,
.ct-faq-layout > * {
  min-width: 0;
}
.ct-footer-grid h2 {
  font-size: 0.9375rem;
  letter-spacing: 0;
  line-height: 1.6;
  margin-bottom: 16px;
}
.ct-footer-grid a {
  display: block;
  width: fit-content;
  padding-block: 6px;
  font-size: 0.9375rem;
  color: var(--ct-muted);
  overflow-wrap: anywhere;
}
.ct-footer-grid .rf-footer-name {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ct-text);
}
.ct-footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 24px;
  margin-top: 48px;
  border-top: 1px solid var(--ct-line);
  font-size: 0.8125rem;
  color: var(--ct-muted);
}
.ct-footer-bottom span,
.ct-footer-bottom p {
  margin-right: auto;
  font-size: inherit;
}
.ct-footer-bottom a {
  padding-block: 8px;
  color: var(--ct-muted);
}
.ct-footer--reduced {
  padding-block: 24px;
}
.ct-footer--reduced .ct-footer-bottom {
  padding: 0;
  margin-top: 0;
  border: 0;
}
.ct-card {
  padding: 32px;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius-card);
  background: var(--ct-surface);
}
.ct-card h2,
.ct-card h3 {
  font-size: 1.75rem;
}
.ct-card p {
  margin-top: 16px;
}
.ct-card .ct-button {
  margin-top: 24px;
}
.ct-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.ct-plan {
  padding: 40px 32px;
  border-color: #445160;
}
.ct-plan h2 {
  font-size: 2rem;
}
.ct-plan:first-child {
  border-color: var(--ct-link);
}
.ct-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: center;
}
.ct-feature--image-first {
  grid-template-columns: 1.18fr 0.82fr;
}
.ct-feature p {
  margin-top: 24px;
}
.ct-feature .ct-text-link,
.ct-feature .ct-button {
  margin-top: 24px;
}
.ct-product-figure {
  min-width: 0;
}
.ct-product-figure img {
  width: 100%;
  height: auto;
}
.ct-product-figure figcaption {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--ct-muted);
  text-align: center;
}
.ct-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 16px;
}
.ct-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--ct-muted);
}
.ct-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ct-link);
}
.ct-faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: start;
}
.ct-faq details {
  border-bottom: 1px solid var(--ct-line);
}
.ct-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  color: var(--ct-text);
  font-size: 1rem;
  font-weight: 500;
}
.ct-faq summary::-webkit-details-marker {
  display: none;
}
.ct-faq summary span {
  flex-shrink: 0;
  transition: transform var(--ct-duration);
  color: var(--ct-muted);
}
.ct-faq details[open] > summary span {
  transform: rotate(45deg);
}
.ct-faq details > div {
  padding: 0 24px 24px 0;
}
.ct-faq p {
  font-size: 1rem;
}
.ct-faq a {
  text-decoration: underline;
}
.ct-table-scroll {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  scrollbar-color: var(--ct-muted) var(--ct-surface);
}
.ct-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  text-align: left;
}
.ct-table th,
.ct-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--ct-line);
  vertical-align: top;
  min-width: 180px;
}
.ct-table th {
  color: var(--ct-text);
  font-weight: 600;
}
.ct-table td {
  color: var(--ct-muted);
}
.ct-table thead {
  background: var(--ct-raised);
}
.ct-table tbody tr:last-child > * {
  border-bottom: 0;
}
.ct-table caption {
  padding: 20px 24px;
  color: var(--ct-muted);
  text-align: left;
  font-size: 0.875rem;
}
.ct-table .rf-table-group th {
  background: var(--ct-surface);
}
.ct-form {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
.ct-form > div:empty {
  display: none;
}
label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ct-text);
}
label span {
  color: var(--ct-muted);
  font-weight: 400;
}
input:not([type='hidden'], [type='checkbox'], [type='submit']),
select,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #687585;
  border-radius: 8px;
  background: var(--ct-field);
  color: var(--ct-text);
  font-size: 1rem;
  line-height: 1.5;
}
input::placeholder,
textarea::placeholder {
  color: var(--ct-muted);
}
input[aria-invalid='true'] {
  border-color: var(--ct-error);
}
.ct-form .ct-button {
  width: 100%;
  margin-top: 0;
}
.ct-form p {
  margin-top: 0;
  font-size: 0.875rem;
}
.ct-honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
  pointer-events: none;
}
.ct-form-status:empty {
  display: none;
}
.ct-form-status {
  font-size: 1rem;
  color: var(--ct-muted);
}
.ct-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-block: 48px;
}
.ct-pagination a {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--ct-line);
  border-radius: 8px;
  color: var(--ct-text);
}
.ct-pagination [aria-current] {
  background: var(--ct-action);
  color: var(--ct-on-action);
  border-color: var(--ct-action);
}
@media (max-width: 1100px) {
  .ct-nav {
    gap: 24px;
  }
  .ct-nav-links {
    gap: 4px;
  }
  .ct-brand img {
    width: 180px;
  }
}
@media (max-width: 1023px) {
  .ct-nav {
    min-height: 72px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    padding-block: 8px;
  }
  .ct-nav-toggle {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .ct-nav-links {
    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 16px;
    max-height: calc(100dvh - 90px);
    overflow-y: auto;
  }
  .ct-js .ct-nav-links:not(.is-open) {
    display: none;
  }
  .ct-nav-links > a:not(.ct-button),
  .ct-nav-group > summary {
    padding: 14px 10px;
    font-size: 1rem;
  }
  .ct-login {
    margin-left: 0;
  }
  .ct-nav-links > .ct-button {
    margin: 16px 0 8px;
  }
  .ct-dropdown {
    position: static;
    width: auto;
    border: 0;
    box-shadow: none;
  }
  .ct-nav-group {
    width: 100%;
  }
  .ct-feature,
  .ct-feature--image-first,
  .ct-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ct-feature--image-first > figure {
    order: 2;
  }
  .ct-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ct-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
  .ct-footer-grid > :first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .ct-actions {
    gap: 16px 24px;
  }
  .ct-button {
    padding-inline: 24px;
    max-width: 100%;
  }
  .ct-feature,
  .ct-faq-layout {
    gap: 32px;
  }
  .ct-card-grid {
    grid-template-columns: 1fr;
  }
  .ct-card,
  .ct-plan {
    padding: 28px 24px;
  }
  .ct-faq summary {
    min-height: 64px;
    padding-block: 20px;
  }
  .ct-faq details > div {
    padding-right: 8px;
  }
  .ct-footer {
    padding-top: 40px;
  }
  .ct-footer-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .ct-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .ct-footer-bottom {
    margin-top: 32px;
    gap: 8px 20px;
  }
  .ct-footer-bottom span {
    flex-basis: 100%;
  }
  .ct-table th,
  .ct-table td {
    padding: 16px;
    min-width: 180px;
  }
}
.ct-table-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 20px 24px;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  background: var(--ct-raised);
  margin-bottom: 24px;
}
.ct-table-disclosure > summary::-webkit-details-marker {
  display: none;
}
.ct-table-disclosure[open] > summary span {
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .ct-nav:has(> .ct-button) .ct-brand img {
    width: 150px;
  }
  .ct-nav > .ct-button {
    padding-inline: 16px;
  }
}
