:root {
  color-scheme: dark;
  --ct-background-primary: #0b1020;
  --ct-background-secondary: #12182b;
  --ct-background-elevated: #1b2438;
  --ct-background-hover: #24304a;
  --ct-background-frame: rgba(13, 20, 38, 0.88);
  --ct-text-primary: #f8fafc;
  --ct-text-secondary: #e2e8f0;
  --ct-text-muted: #cbd5e1;
  --ct-text-on-primary: #f8fafc;
  --ct-near-white: #f9fafb;
  --ct-near-black: #191919;
  --ct-border-subtle: #2a344b;
  --ct-accent-primary: #2663eb;
  --ct-accent-primary-hover: #1d4ed8;
  --ct-accent-secondary: #8b5cf6;
  --ct-accent-success: #22c55e;
  --ct-brand-logo-blue: #2563eb;
  --ct-brand-logo-orange: #ea580c;
  --ct-shadow-raised: 0 18px 60px rgba(4, 8, 20, 0.32);
  --ct-shell-gradient:
    radial-gradient(circle at top left, rgba(38, 99, 235, 0.12), transparent 32rem),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 28rem),
    var(--ct-background-primary);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ct-shell-gradient);
  color: var(--ct-text-primary);
  font-family:
    Geist,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  border-color: var(--ct-border-subtle);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--ct-border-subtle);
  background: var(--ct-background-frame);
  backdrop-filter: blur(18px);
}

.nav,
.footer-inner,
.section,
.hero,
body:has(.trust-nav) .trust-portal-overview,
body:has(.trust-nav) .trust-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand-emblem {
  width: 42px;
  height: auto;
}

.brand-name {
  color: var(--ct-brand-logo-blue);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name-think {
  color: var(--ct-brand-logo-orange);
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.nav-links a:not(.button),
.footer-links a {
  color: var(--ct-text-secondary);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:not(.button):hover,
.footer-links a:hover {
  color: var(--ct-text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-links a:not(.button):focus-visible,
.footer-links a:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 16px;
  border: 1px solid var(--ct-border-subtle);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.button:focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: 2px;
}

.button-primary,
a.button-primary,
.nav-links a.button-primary {
  border-color: var(--ct-accent-primary);
  background: var(--ct-accent-primary);
  color: var(--ct-text-on-primary);
}

.button-primary:hover,
a.button-primary:hover,
.nav-links a.button-primary:hover {
  border-color: var(--ct-accent-primary-hover);
  background: var(--ct-accent-primary-hover);
  color: var(--ct-text-on-primary);
  text-decoration: none;
}

.button-secondary {
  background: var(--ct-background-elevated);
  color: var(--ct-text-primary);
}

.button-secondary:hover {
  background: var(--ct-background-hover);
  color: var(--ct-text-primary);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 80px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ct-accent-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.hero h1,
.section-header > h1,
.legal-card > h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-header > h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h3 {
  font-size: 1.25rem;
}

.card h2,
.card h3,
.legal-card h2,
.price-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-card h2,
.price-card > h2 {
  margin-top: 0;
}

.price-card-intro .eyebrow + h2 {
  margin-top: 0.5rem;
}

.card h3 {
  font-weight: 600;
}

.lead {
  margin: 24px 0 0;
  color: var(--ct-text-secondary);
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  max-width: 68ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card,
.card,
.price-card,
.legal-card {
  border: 1px solid var(--ct-border-subtle);
  border-radius: 1.5rem;
  background: var(--ct-background-secondary);
  box-shadow: var(--ct-shadow-raised);
}

.hero-card {
  padding: 30px;
}

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

.hero-card-brand {
  font-size: 2.4rem;
  line-height: 1;
}

.hero-card-emblem {
  width: 78px;
  height: auto;
  flex: 0 0 auto;
}

.hero-card ul,
.card ul,
.price-card ul,
.legal-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li,
.card li,
.price-card li,
.legal-card li {
  margin: 12px 0;
  color: var(--ct-text-secondary);
}

.legal-card ul.legal-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}

.legal-card ul.legal-list li {
  margin: 0.35rem 0;
}

.check {
  color: var(--ct-accent-success);
  font-weight: 800;
}

.limit {
  color: var(--ct-text-muted);
  font-weight: 700;
}

.feature-group-label {
  margin: 22px 0 0;
  color: var(--ct-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card-free {
  border-color: color-mix(in srgb, var(--ct-accent-primary) 45%, var(--ct-border-subtle));
}

.limitations li {
  color: var(--ct-text-muted);
}

.section {
  padding: 72px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.grid-plans {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card-intro {
  display: flex;
  flex-direction: column;
  min-height: 11.5rem;
}

.price-card-blurb {
  margin: 0;
  flex: 1;
}

.price-card > .price-card-intro > h2 {
  margin-top: 0;
}

.price-card-pricing {
  flex-shrink: 0;
  margin-top: 1.25rem;
}

.price-card-pricing .price {
  margin-top: 0;
}

.price-card-pricing .button {
  display: flex;
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

.price-card-features {
  flex: 1 1 auto;
  margin-top: 1.5rem;
}

.price-card-features > .feature-group-label:first-child {
  margin-top: 0;
}

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

.card,
.price-card,
.legal-card {
  padding: 28px;
}

.card p,
.price-card p,
.legal-card p,
.legal-card li {
  color: var(--ct-text-secondary);
}

main a:not(.button) {
  color: var(--ct-accent-primary);
  text-decoration: none;
  font-weight: 500;
}

main a:not(.button):hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

main a:not(.button):focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 20px;
  font-weight: 800;
}

.price strong {
  font-size: 2.4rem;
}

.toggle {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 999px;
  background: var(--ct-background-elevated);
}

.toggle button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: var(--ct-text-secondary);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}

.toggle button:focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: 2px;
}

.toggle button[aria-pressed='true'] {
  background: var(--ct-accent-primary);
  color: var(--ct-text-on-primary);
}

.billing-note {
  margin: 12px 0 0;
  color: var(--ct-accent-success);
  font-size: 0.875rem;
}

.provider-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.provider-chip {
  border: 1px solid var(--ct-border-subtle);
  border-radius: 999px;
  background: var(--ct-background-primary);
  color: var(--ct-text-secondary);
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border: 1px solid var(--ct-border-subtle);
  border-radius: 1.5rem;
  background: var(--ct-background-secondary);
  padding: 24px;
  box-shadow: var(--ct-shadow-raised);
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--ct-text-secondary);
  font-size: 0.9375rem;
}

.note-card {
  margin-top: 24px;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 1.5rem;
  background: var(--ct-background-secondary);
  padding: 24px;
  color: var(--ct-text-secondary);
  font-size: 0.9375rem;
}

.site-footer {
  border-top: 1px solid var(--ct-border-subtle);
  background: var(--ct-background-frame);
  margin-top: auto;
}

.footer-shell,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-shell {
  padding: 28px 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 24px;
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.site-footer .footer-heading {
  margin: 0 0 10px;
  color: var(--ct-text-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link-list li {
  margin: 0 0 6px;
}

.footer-link-list a {
  color: var(--ct-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
}

.footer-link-list a:hover {
  color: var(--ct-text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-link-list a:focus-visible,
.footer-meta a:focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--ct-border-subtle);
}

.footer-copyright {
  margin: 0;
  color: var(--ct-text-muted);
  font-size: 0.875rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}

.footer-meta a {
  color: var(--ct-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-meta a:hover {
  color: var(--ct-text-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  color: var(--ct-text-secondary);
}

@media (max-width: 1180px) {
  .grid-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .hero,
  .grid,
  .grid-2,
  .grid-plans {
    grid-template-columns: 1fr;
  }

  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

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

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

  .footer-shell {
    padding-top: 24px;
  }
}

/* Trust Center */
.trust-nav {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0 0;
}

.trust-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 999px;
  background: var(--ct-background-secondary);
  color: var(--ct-text-secondary);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
}

.trust-nav a:hover {
  background: var(--ct-background-hover);
  color: var(--ct-text-primary);
}

.trust-nav a[aria-current='page'] {
  border-color: color-mix(in srgb, var(--ct-accent-primary) 55%, var(--ct-border-subtle));
  background: color-mix(in srgb, var(--ct-accent-primary) 18%, var(--ct-background-secondary));
  color: var(--ct-text-primary);
}

.trust-nav a:focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: 2px;
}

.trust-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ct-border-subtle);
}

.trust-subnav-link {
  font-size: 0.875rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--ct-border-subtle);
  color: var(--ct-text-secondary);
  text-decoration: none;
}

.trust-subnav-link.is-active,
.trust-subnav-link[aria-current='page'] {
  background: var(--ct-accent-primary-soft);
  border-color: var(--ct-accent-primary);
  color: var(--ct-text-primary);
}

.trust-main {
  padding-top: 48px;
}

.trust-hero {
  padding-top: 48px;
}

.trust-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

body:has(.trust-nav) .section-header > h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
}

body:has(.trust-nav) .section-header > h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.trust-icon-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-icon-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-icon-card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ct-accent-primary) 16%, var(--ct-background-primary));
  color: var(--ct-accent-primary);
}

.trust-icon-card-icon svg {
  width: 22px;
  height: 22px;
}

.trust-callout {
  border: 1px solid color-mix(in srgb, var(--ct-accent-primary) 45%, var(--ct-border-subtle));
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at top right, rgba(38, 99, 235, 0.16), transparent 40%),
    var(--ct-background-secondary);
  box-shadow: var(--ct-shadow-raised);
  padding: clamp(28px, 4vw, 48px);
}

.trust-callout h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  margin-top: 8px;
}

.trust-ownership-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-ownership-list li {
  border: 1px solid var(--ct-border-subtle);
  border-radius: 12px;
  background: var(--ct-background-primary);
  padding: 14px 16px;
  color: var(--ct-text-primary);
  font-weight: 600;
}

.trust-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-checklist li {
  margin: 10px 0;
  color: var(--ct-text-secondary);
}

.trust-byom-grid {
  align-items: start;
}

.trust-provider-chips {
  margin-top: 24px;
}

.trust-architecture {
  margin: 0;
  padding: 28px;
  text-align: center;
}

.trust-arch-layer {
  border: 1px solid var(--ct-border-subtle);
  border-radius: 14px;
  padding: 16px;
  font-weight: 700;
}

.trust-arch-customer {
  background: var(--ct-background-primary);
}

.trust-arch-platform {
  background: color-mix(in srgb, var(--ct-accent-primary) 14%, var(--ct-background-primary));
  color: var(--ct-text-primary);
}

.trust-arch-providers {
  background: color-mix(in srgb, var(--ct-accent-secondary) 14%, var(--ct-background-primary));
}

.trust-arch-arrow {
  margin: 10px 0;
  color: var(--ct-text-muted);
  font-size: 1.25rem;
  font-weight: 700;
}

.trust-arch-caption {
  margin-top: 16px;
  color: var(--ct-text-muted);
  font-size: 0.875rem;
}

.trust-data-card h3 {
  margin-bottom: 8px;
}

.trust-inline-links {
  margin-top: 18px;
  color: var(--ct-text-muted);
  font-size: 0.9375rem;
}

.trust-warning-callout {
  border: 1px solid color-mix(in srgb, #f59e0b 45%, var(--ct-border-subtle));
  border-radius: 1.5rem;
  background: color-mix(in srgb, #f59e0b 10%, var(--ct-background-secondary));
  padding: 24px;
}

.trust-warning-title {
  margin: 0 0 8px;
  color: #fbbf24;
  font-weight: 700;
}

.trust-warning-callout p:last-child {
  margin: 0;
  color: var(--ct-text-secondary);
}

.compliance-roadmap .roadmap-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.compliance-roadmap .roadmap-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: var(--ct-text-secondary);
}

.roadmap-icon {
  display: inline-flex;
  width: 1.5rem;
  justify-content: center;
  font-weight: 800;
}

.roadmap-icon-current {
  color: var(--ct-accent-success);
}

.roadmap-icon-planned {
  color: var(--ct-text-muted);
}

.roadmap-note {
  margin: 0 0 8px;
  color: var(--ct-text-muted);
  font-size: 0.875rem;
}

.trust-link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.trust-link-card:hover {
  background: var(--ct-background-hover);
  text-decoration: none;
}

.trust-link-card:focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: 2px;
}

.trust-section-block {
  margin-top: 40px;
}

.trust-section-block > h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  margin-bottom: 14px;
}

.trust-section-block > h3 {
  font-size: 1.05rem;
  margin: 28px 0 12px;
}

.trust-section-block > h3:first-of-type {
  margin-top: 0;
}

.trust-section-block .card h3,
.trust-section-block .card h4 {
  font-size: 1rem;
  margin: 0 0 10px;
}

.trust-section-block .card h3 + h3,
.trust-section-block .card h4 + .trust-checklist {
  margin-top: 16px;
}

.trust-section-block .card code {
  font-size: 0.875em;
}

.compliance-roadmap-full {
  display: grid;
  gap: 16px;
}

.compliance-roadmap-full > .grid {
  gap: 16px;
}

.trust-form {
  display: grid;
  gap: 14px;
}

.trust-form-note {
  margin: 0;
  color: var(--ct-text-muted);
  font-size: 0.875rem;
}

.trust-form-field {
  display: grid;
  gap: 6px;
  color: var(--ct-text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-form-field input,
.trust-form-field textarea {
  width: 100%;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 10px;
  background: var(--ct-background-primary);
  color: var(--ct-text-primary);
  padding: 10px 12px;
  font: inherit;
}

.trust-form-field input:focus-visible,
.trust-form-field textarea:focus-visible,
.trust-search-input:focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: 2px;
}

.trust-legal-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.trust-doc-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

.trust-doc-card:hover {
  background: var(--ct-background-hover);
  text-decoration: none;
}

.trust-doc-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.trust-doc-badge {
  border: 1px solid var(--ct-border-subtle);
  border-radius: 999px;
  padding: 2px 10px;
  color: var(--ct-text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.trust-doc-link {
  margin-top: auto;
  color: var(--ct-accent-primary);
  font-weight: 600;
}

.trust-legal-legacy {
  margin-top: 24px;
}

.trust-search-label {
  display: block;
  margin-top: 20px;
  color: var(--ct-text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-search-input {
  width: min(480px, 100%);
  margin-top: 8px;
  min-height: 44px;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 10px;
  background: var(--ct-background-secondary);
  color: var(--ct-text-primary);
  padding: 0 12px;
  font: inherit;
}

.trust-table-wrap {
  overflow-x: auto;
  padding: 0;
}

.trust-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.trust-table th,
.trust-table td {
  border-bottom: 1px solid var(--ct-border-subtle);
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
}

.trust-table th {
  color: var(--ct-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-table tbody tr:hover {
  background: var(--ct-background-hover);
}

.trust-table-empty {
  margin: 0;
  padding: 18px;
  color: var(--ct-text-muted);
}

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

.plan-matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 16px;
  background: var(--ct-background-secondary);
  box-shadow: var(--ct-shadow-raised);
}

.plan-matrix {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  font-size: 0.875rem;
  text-align: left;
}

.plan-matrix th,
.plan-matrix td {
  border-top: 1px solid var(--ct-border-subtle);
  padding: 14px 16px;
  vertical-align: top;
}

.plan-matrix thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--ct-background-elevated);
  font-weight: 600;
}

.plan-matrix thead th:first-child {
  width: 14rem;
}

.plan-matrix tbody th[scope='row'] {
  font-weight: 500;
  color: var(--ct-text-primary);
}

.plan-matrix tbody td {
  color: var(--ct-text-secondary);
}

.plan-matrix-category th {
  background: var(--ct-background-primary);
  color: var(--ct-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-faq-list {
  gap: 12px;
}

.trust-faq-item {
  padding: 0;
}

.trust-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
}

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

.trust-faq-item summary h3 {
  display: inline;
  font-size: 1.0625rem;
}

.trust-faq-item summary::after {
  content: '+';
  float: right;
  color: var(--ct-text-muted);
  font-weight: 700;
}

.trust-faq-item[open] summary::after {
  content: '−';
}

.trust-faq-item p {
  margin: 0;
  padding: 0 24px 20px;
}

.trust-faq-item summary:focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: -2px;
  border-radius: 1.5rem;
}

.trust-meta {
  color: var(--ct-text-muted);
  font-size: 0.9375rem;
}

.trust-placeholder-badge {
  margin: 12px 0 0;
  border: 1px dashed var(--ct-border-subtle);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--ct-text-muted);
  font-size: 0.875rem;
}

.trust-legal-document .legal-markdown {
  margin-top: 24px;
  color: var(--ct-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.trust-legal-document .legal-markdown h2 {
  margin-top: 1.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.trust-legal-document .legal-markdown h3 {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.trust-legal-document .legal-markdown ul {
  margin: 12px 0;
  padding-left: 1.25rem;
}

.trust-legal-document .legal-markdown li {
  margin: 6px 0;
}

.trust-legal-document .legal-markdown hr {
  border: 0;
  border-top: 1px solid var(--ct-border-subtle);
  margin: 24px 0;
}

.trust-legal-document .legal-markdown blockquote {
  margin: 16px 0;
  border-left: 3px solid var(--ct-accent-primary);
  padding-left: 14px;
  color: var(--ct-text-muted);
}

.trust-back-link {
  margin-top: 28px;
}

.trust-whitepaper-main {
  padding-top: 32px;
}

.trust-whitepaper {
  max-width: 1180px;
  margin: 0 auto;
}

.whitepaper-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: end;
  padding: clamp(56px, 8vw, 104px) clamp(24px, 5vw, 70px);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 14%, rgba(113, 57, 238, 0.62), transparent 19rem),
    #111218;
  color: white;
}

.whitepaper-hero .eyebrow {
  color: var(--sub-lime);
}

.whitepaper-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.068em;
}

.whitepaper-summary {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.65;
}

.whitepaper-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.whitepaper-actions .subpage-button-dark {
  background: var(--sub-lime);
  color: var(--sub-ink);
}

.whitepaper-actions .subpage-button-dark:hover {
  background: white;
}

.whitepaper-meta-card {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.whitepaper-meta-card div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.whitepaper-meta-card div:last-child {
  border-bottom: 0;
}

.whitepaper-meta-card dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whitepaper-meta-card dd {
  margin: 0;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: right;
}

.whitepaper-reading-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 740px);
  gap: clamp(40px, 8vw, 105px);
  justify-content: center;
  padding: clamp(60px, 8vw, 110px) 0 40px;
}

.whitepaper-toc {
  position: sticky;
  top: 24px;
  align-self: start;
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding-right: 20px;
}

.whitepaper-toc > p {
  margin: 0 0 16px;
  color: rgba(16, 17, 20, 0.45);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whitepaper-toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.whitepaper-toc a {
  display: block;
  padding: 5px 0;
  color: rgba(16, 17, 20, 0.55) !important;
  font-size: 0.78rem;
  line-height: 1.35;
  text-decoration: none;
}

.whitepaper-toc a:hover {
  color: var(--sub-blue) !important;
}

.trust-whitepaper .whitepaper-markdown {
  margin-top: 0;
  color: rgba(16, 17, 20, 0.7);
  font-size: 1rem;
  line-height: 1.78;
}

.trust-whitepaper .whitepaper-markdown h2 {
  scroll-margin-top: 24px;
  margin: 3.7rem 0 1rem;
  color: var(--sub-ink);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.trust-whitepaper .whitepaper-markdown h2:first-child {
  margin-top: 0;
}

.trust-whitepaper .whitepaper-markdown h3 {
  scroll-margin-top: 24px;
  margin: 2rem 0 0.7rem;
  color: var(--sub-ink);
  font-size: 1.15rem;
}

.trust-whitepaper .whitepaper-markdown p,
.trust-whitepaper .whitepaper-markdown li {
  color: rgba(16, 17, 20, 0.68);
}

.trust-whitepaper .whitepaper-markdown table {
  width: 100%;
  margin: 24px 0 32px;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  font-size: 0.88rem;
  line-height: 1.5;
}

.trust-whitepaper .whitepaper-markdown th,
.trust-whitepaper .whitepaper-markdown td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sub-line);
  text-align: left;
  vertical-align: top;
}

.trust-whitepaper .whitepaper-markdown th {
  background: #ebe8e0;
  color: var(--sub-ink);
  font-weight: 700;
}

.trust-whitepaper .whitepaper-markdown tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .whitepaper-hero,
  .whitepaper-reading-layout {
    grid-template-columns: 1fr;
  }

  .whitepaper-toc {
    position: static;
    max-height: none;
    padding: 22px;
    border-radius: 16px;
    background: white;
  }
}

@media (max-width: 640px) {
  .whitepaper-hero {
    padding: 48px 22px;
    border-radius: 20px;
  }

  .whitepaper-hero h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .whitepaper-reading-layout {
    padding-top: 40px;
  }

  .trust-whitepaper .whitepaper-markdown table {
    display: block;
    overflow-x: auto;
  }
}

.trust-quick-links .grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.trust-disclaimer-callout {
  margin-top: 24px;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 1.5rem;
  background: var(--ct-background-secondary);
  padding: 20px 24px;
  color: var(--ct-text-secondary);
  font-size: 0.9375rem;
}

.trust-disclaimer-callout p {
  margin: 0;
}

.trust-compliance-certifications {
  margin-top: 18px;
  padding: 28px;
}

.trust-section-lead {
  margin-top: 0;
  margin-bottom: 18px;
}

.trust-resource-card h3 {
  font-size: 1.0625rem;
}

.trust-contact-email {
  margin-bottom: 24px;
  padding: 24px 28px;
}

.trust-contact-address {
  margin: 8px 0 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
}

.trust-contact-address a {
  color: var(--ct-accent-primary);
  text-decoration: none;
}

.trust-contact-address a:hover {
  text-decoration: underline;
}

.trust-contact-grid {
  margin-bottom: 24px;
  align-items: stretch;
}

.trust-contact-card {
  padding: 28px;
}

.trust-contact-card .section-header {
  margin-bottom: 12px;
}

.trust-contact-card .section-header h2 {
  font-size: 1.25rem;
}

.trust-contact-form {
  margin-top: 8px;
}

/* Vanta-style Trust Center portal */
.trust-portal-hero .actions,
.trust-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-header-btn {
  min-height: 42px;
}

.trust-portal-contact {
  margin-top: 18px;
}

.trust-portal-overview {
  padding-bottom: 72px;
}

.trust-portal-overview > .trust-portal-section,
.trust-main > .trust-portal-section {
  margin-top: 56px;
}

.trust-portal-overview > .trust-portal-section:first-child,
.trust-main > .trust-portal-section:first-child {
  margin-top: 0;
}

.trust-portal-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.trust-portal-section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.trust-portal-view-all {
  color: var(--ct-accent-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.trust-portal-view-all:hover {
  text-decoration: underline;
}

.trust-framework-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.trust-framework-card,
.trust-resource-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 32px;
  min-height: 100%;
}

.trust-framework-card h3,
.trust-resource-item h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}

.trust-framework-card p,
.trust-resource-item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.trust-status-badge {
  border: 1px solid var(--ct-border-subtle);
  border-radius: 999px;
  padding: 2px 10px;
  color: var(--ct-text-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-status-badge-implemented,
.trust-status-badge-aligned,
.trust-status-badge-achieved,
.trust-status-badge-public {
  border-color: color-mix(in srgb, var(--ct-accent-success) 45%, var(--ct-border-subtle));
  color: var(--ct-accent-success);
}

.trust-status-badge-in_progress {
  border-color: color-mix(in srgb, #f59e0b 45%, var(--ct-border-subtle));
  color: #fbbf24;
}

.trust-status-badge-planned,
.trust-status-badge-request {
  color: var(--ct-text-muted);
}

.trust-resource-category {
  margin-top: 36px;
}

.trust-resource-category:first-of-type {
  margin-top: 0;
}

.trust-resource-category > h3 {
  margin: 0 0 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.trust-resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.trust-resource-item {
  text-decoration: none;
  color: inherit;
}

.trust-resource-item:hover {
  background: var(--ct-background-hover);
  text-decoration: none;
}

.trust-controls-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.trust-control-category {
  padding: 28px 32px;
}

.trust-control-category h3 {
  margin: 0 0 14px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.trust-control-category h3 a {
  color: inherit;
  text-decoration: none;
}

.trust-control-category h3 a:hover {
  color: var(--ct-accent-primary);
}

.trust-control-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-control-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  color: var(--ct-text-secondary);
  font-size: 0.9375rem;
}

.trust-status-icon {
  display: inline-flex;
  width: 1.25rem;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.trust-status-pass {
  color: var(--ct-accent-success);
}

.trust-status-progress {
  color: #fbbf24;
}

.trust-status-partial {
  color: #f59e0b;
}

.trust-status-planned {
  color: var(--ct-text-muted);
}

.trust-control-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 0;
  color: var(--ct-text-muted);
  font-size: 0.875rem;
}

.trust-control-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-category-more {
  margin: 12px 0 0;
}

.trust-updates-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.trust-update-card {
  padding: 28px 32px;
}

@media (max-width: 960px) {
  .trust-framework-grid,
  .trust-controls-grid,
  .trust-resource-grid,
  .trust-updates-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-framework-grid,
  .trust-controls-grid,
  .trust-resource-grid,
  .trust-updates-grid {
    grid-template-columns: 1fr;
  }

  .trust-portal-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Commercial homepage */
.home-page {
  --home-ink: #101114;
  --home-paper: #f6f4ee;
  --home-blue: #2055ff;
  --home-violet: #7139ee;
  --home-coral: #ff6b4a;
  --home-lime: #d8ff52;
  --home-line: rgba(16, 17, 20, 0.14);
  background: var(--home-paper);
  color: var(--home-ink);
  line-height: 1.5;
}

.home-page .site-header {
  position: relative;
  border: 0;
  background: var(--home-paper);
  backdrop-filter: none;
}

.home-page .nav {
  width: min(1320px, calc(100% - 48px));
  min-height: 78px;
}

.home-page .brand-emblem { width: 34px; }
.home-page .brand-name { font-size: 1.25rem; }
.home-page .nav-links a:not(.button) { color: var(--home-ink); font-size: 0.875rem; }
.home-page .nav-links a:not(.button):hover { color: var(--home-blue); text-decoration: none; }
.home-page .nav-links .button-primary { border-color: var(--home-ink); border-radius: 999px; background: var(--home-ink); color: white; }
.home-page .nav-links .button-primary:hover { border-color: var(--home-blue); background: var(--home-blue); }
.home-main { overflow: hidden; }

.home-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 78px);
  align-items: center;
  overflow: hidden;
  background: #080e2b;
  color: white;
}

.home-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.home-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,10,37,.95) 0%, rgba(5,10,37,.8) 31%, rgba(5,10,37,.12) 68%, rgba(5,10,37,.18) 100%), linear-gradient(0deg, rgba(4,8,25,.78), transparent 36%); }
.home-hero-copy { position: relative; z-index: 2; width: min(690px, 78vw); margin-left: clamp(24px, 7vw, 112px); padding: 84px 0 120px; }
.home-eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 25px; text-transform: uppercase; letter-spacing: 1.7px; font-size: 0.72rem; font-weight: 700; }
.home-hero .home-eyebrow { color: rgba(255,255,255,.7); }
.home-spark { width: 10px; height: 10px; display: inline-block; transform: rotate(45deg); border-radius: 2px 8px 2px 8px; flex: 0 0 auto; }
.home-spark-blue { background: var(--home-blue); }
.home-spark-lime { background: var(--home-lime); }
.home-spark-coral { background: var(--home-coral); }
.home-hero h1 { margin: 0; max-width: 990px; font-size: clamp(3.7rem, 7.4vw, 7.25rem); line-height: .88; letter-spacing: -.07em; font-weight: 700; }
.home-hero h1 em, .home-final-cta h2 em { color: var(--home-lime); font-style: normal; }
.home-hero-copy > p:not(.home-eyebrow) { max-width: 585px; margin: 34px 0 36px; color: rgba(255,255,255,.78); font-size: clamp(1.08rem, 1.7vw, 1.45rem); line-height: 1.42; letter-spacing: -.02em; }
.home-actions { display: flex; align-items: center; gap: 30px; }
.home-button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 21px; border-radius: 100px; color: var(--home-ink); text-decoration: none; font-size: .94rem; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.home-button:hover { transform: translateY(-2px); text-decoration: none !important; }
.home-button-lime { background: var(--home-lime); }
.home-button-lime:hover { background: white; }
.home-text-link, .home-main a.home-text-link { display: inline-flex; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.4); color: white; text-decoration: none; font-size: .88rem; font-weight: 700; }
.home-text-link:hover { text-decoration: none !important; border-color: white; }
.home-proof { position: absolute; z-index: 2; left: clamp(24px, 7vw, 112px); right: clamp(24px, 5vw, 80px); bottom: 28px; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.7); font-size: .68rem; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; }
.home-proof i { width: 4px; height: 4px; border-radius: 50%; background: var(--home-lime); }

.home-statement { padding: clamp(90px, 13vw, 200px) clamp(24px, 7vw, 112px) clamp(70px, 9vw, 130px); }
.home-index { margin: 0 0 52px; color: rgba(16,17,20,.52); font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; }
.home-statement h2 { margin: 0; max-width: 1280px; font-size: clamp(2.7rem, 6.1vw, 5.75rem); line-height: .99; letter-spacing: -.062em; }
.home-statement h2 span { color: rgba(16,17,20,.28); }

.home-comparison { display: grid; grid-template-columns: .8fr 1.5fr; gap: 18px; padding: 0 clamp(18px, 3vw, 48px) clamp(90px, 12vw, 180px); }
.home-scatter-card, .home-workspace-card { min-height: 640px; border-radius: 26px; overflow: hidden; }
.home-scatter-card { position: relative; padding: 36px; background: #e6e2db; }
.home-kicker { margin: 0; text-transform: uppercase; letter-spacing: 1.5px; font-size: .68rem; font-weight: 700; opacity: .55; }
.home-note { position: absolute; padding: 18px 22px; border-radius: 12px; background: rgba(255,255,255,.88); box-shadow: 0 18px 45px rgba(30,30,30,.1); color: rgba(16,17,20,.65); font-size: .84rem; }
.home-note-one { left: 11%; top: 26%; transform: rotate(-8deg); }
.home-note-two { right: 5%; top: 44%; transform: rotate(5deg); }
.home-note-three { left: 23%; top: 58%; transform: rotate(-2deg); }
.home-scatter-label { position: absolute; bottom: 35px; left: 36px; margin: 0; font-size: 2rem; line-height: 1.02; letter-spacing: -.04em; font-weight: 700; }
.home-workspace-card { padding: 15px; background: #121318; color: white; box-shadow: 0 22px 70px rgba(21,31,76,.15); }
.home-workspace-bar { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px 0 10px; }
.home-mini-brand { display: flex; gap: 8px; align-items: center; font-size: .95rem; font-weight: 700; }
.home-mini-brand > span { width: 18px; height: 18px; border-radius: 50%; background: var(--home-blue); box-shadow: inset -4px -3px 0 var(--home-violet); }
.home-live-pill { padding: 7px 10px; border-radius: 100px; background: rgba(77,222,133,.1); color: #a5fbc6; font-size: .63rem; }
.home-workspace-layout { min-height: 552px; display: grid; grid-template-columns: 190px 1fr; overflow: hidden; border-radius: 17px; }
.home-workspace-layout aside { display: flex; flex-direction: column; gap: 17px; padding: 26px 18px; background: #1b1c22; color: rgba(255,255,255,.52); font-size: .76rem; }
.home-workspace-layout aside small { margin-bottom: 4px; color: rgba(255,255,255,.3); font-size: .5rem; letter-spacing: 1.4px; }
.home-workspace-layout aside b { margin-bottom: 11px; color: white; font-size: .86rem; }
.home-workspace-layout aside .home-active-room { margin: 0 -8px; padding: 10px 9px; border-radius: 7px; background: var(--home-blue); color: white; }
.home-workspace-main { padding: 34px; background: #f5f4f0; color: var(--home-ink); }
.home-room-heading { display: flex; justify-content: space-between; align-items: center; }
.home-room-heading small { color: var(--home-blue); font-size: .5rem; letter-spacing: 1.4px; font-weight: 700; }
.home-room-heading h3 { margin: 7px 0 0; font-size: 1.55rem; letter-spacing: -.04em; }
.home-timer { padding: 9px 12px; border: 1px solid var(--home-line); border-radius: 9px; background: white; font-family: monospace; font-size: .8rem; }
.home-session-progress { display: grid; grid-template-columns: repeat(5,1fr); gap: 5px; margin: 28px 0 34px; }
.home-session-progress span { height: 4px; border-radius: 10px; background: #dcdad4; }
.home-session-progress span:nth-child(-n+2) { background: var(--home-blue); }
.home-session-progress .current { background: linear-gradient(90deg,var(--home-blue) 55%,#dcdad4 55%); }
.home-ai-message { display: flex; gap: 13px; padding: 17px; border-radius: 13px; background: white; box-shadow: 0 10px 25px rgba(20,20,30,.04); }
.home-ai-avatar { width: 31px; height: 31px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--home-violet); color: white; font-weight: 700; }
.home-ai-message b { font-size: .7rem; }
.home-ai-message p { margin: 5px 0 0; color: rgba(16,17,20,.6); font-size: .8rem; line-height: 1.4; }
.home-idea-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 40px; }
.home-idea-grid > div { min-height: 145px; display: flex; flex-direction: column; align-items: flex-start; padding: 16px; border: 1px solid rgba(16,17,20,.06); border-radius: 12px; background: white; }
.home-idea-grid b { margin-top: 38px; font-size: .8rem; }
.home-idea-grid small { margin-top: 7px; color: rgba(16,17,20,.45); font-size: .63rem; }

.home-how { padding: clamp(90px, 11vw, 170px) clamp(24px, 5vw, 80px); background: #111218; color: white; }
.home-index-light { color: rgba(255,255,255,.4); }
.home-how-heading { display: grid; grid-template-columns: .55fr 1.45fr; align-items: end; margin-bottom: 80px; }
.home-how-heading .home-index { margin: 0; align-self: start; }
.home-how-heading h2 { margin: 0; font-size: clamp(3rem, 6vw, 5.4rem); line-height: .96; letter-spacing: -.055em; }
.home-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.home-steps article { padding: 22px; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; background: #1b1c22; }
.home-step-number { color: rgba(255,255,255,.35); font-family: monospace; font-size: .68rem; }
.home-step-art { position: relative; height: 250px; display: grid; place-items: center; overflow: hidden; margin: 22px 0 27px; border-radius: 15px; }
.home-step-art b { position: relative; z-index: 2; font-size: 1.45rem; letter-spacing: -.05em; }
.home-art-blue { background: var(--home-blue); }
.home-art-coral { background: var(--home-coral); color: var(--home-ink); }
.home-art-lime { background: var(--home-lime); color: var(--home-ink); }
.home-orbit { position: absolute; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.home-orbit-one { width: 210px; height: 90px; transform: rotate(22deg); }
.home-orbit-two { width: 90px; height: 210px; transform: rotate(22deg); }
.home-pulse { position: absolute; width: 120px; height: 120px; border: 1px solid rgba(16,17,20,.4); border-radius: 50%; }
.home-pulse-two { width: 190px; height: 190px; }
.home-pulse-three { width: 270px; height: 270px; }
.home-decision-line { position: absolute; width: 1px; height: 70%; transform: rotate(45deg); background: rgba(16,17,20,.35); }
.home-decision-dot { position: absolute; width: 90px; height: 90px; border-radius: 50%; background: var(--home-violet); box-shadow: 0 0 0 24px rgba(113,57,238,.16); }
.home-steps h3 { margin: 0 0 10px; font-size: 1.4rem; letter-spacing: -.035em; }
.home-steps p { max-width: 330px; margin: 0; color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.55; }

.home-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 18px; }
.home-feature { position: relative; min-height: 650px; overflow: hidden; padding: clamp(30px,4vw,64px); border-radius: 25px; }
.home-feature h2 { margin: 22px 0; font-size: clamp(2.45rem, 4.2vw, 4rem); line-height: .98; letter-spacing: -.055em; }
.home-feature-violet { background: var(--home-violet); color: white; }
.home-feature-paper { background: #ebe8e0; }
.home-feature-photo { min-height: 720px; grid-column: 1 / -1; display: flex; align-items: flex-end; color: white; }
.home-photo-crop { position: absolute; inset: 0; transform: scale(1.02); background: linear-gradient(0deg,rgba(6,9,27,.88),rgba(6,9,27,.06) 65%), url('/assets/cothink-hero.png') center 43% / cover; }
.home-photo-copy { position: relative; z-index: 2; }
.home-photo-copy h2 { max-width: 970px; font-size: clamp(2.9rem, 6vw, 5.4rem); }
.home-chat-visual { position: absolute; left: clamp(30px,4vw,64px); right: clamp(30px,4vw,64px); bottom: 45px; display: flex; flex-direction: column; gap: 13px; }
.home-chat-row { max-width: 72%; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border-radius: 13px; background: rgba(255,255,255,.96); box-shadow: 0 15px 35px rgba(47,22,100,.28); color: var(--home-ink); }
.home-chat-row > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #111218; color: white; font-size: .55rem; font-weight: 700; }
.home-chat-row p { margin: 0; font-size: .8rem; }
.home-chat-ai { align-self: flex-end; }
.home-chat-ai > span { background: var(--home-blue); }
.home-reaction { align-self: center; padding: 8px 14px; border-radius: 100px; background: var(--home-lime); color: var(--home-ink); font-size: .72rem; font-weight: 700; }
.home-method-list { position: absolute; left: clamp(30px,4vw,64px); right: clamp(30px,4vw,64px); bottom: 48px; border-top: 1px solid var(--home-line); }
.home-main .home-method-list a { display: flex; justify-content: space-between; padding: 21px 0; border-bottom: 1px solid var(--home-line); color: var(--home-ink); text-decoration: none; font-size: 1rem; font-weight: 700; }
.home-main .home-method-list a:hover { color: var(--home-blue); text-decoration: none; }
.home-method-list b { color: var(--home-blue); }

.home-control { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 140px); align-items: center; padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 112px); background: var(--home-blue); color: white; }
.home-control-copy .home-index { margin-bottom: 55px; }
.home-control-copy h2 { margin: 0; font-size: clamp(3.9rem, 7vw, 6.55rem); line-height: .88; letter-spacing: -.065em; }
.home-control-copy > p:not(.home-index) { max-width: 510px; margin: 35px 0; color: rgba(255,255,255,.7); font-size: 1.16rem; line-height: 1.5; }
.home-button-white, .home-main a.home-button-white { background: white; color: var(--home-ink); }
.home-control-panel { padding: 18px; transform: rotate(1.5deg); border-radius: 24px; background: white; box-shadow: 0 30px 80px rgba(0,15,80,.3); color: var(--home-ink); }
.home-control-row { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 18px 10px; border-bottom: 1px solid var(--home-line); }
.home-control-row div { display: flex; flex-direction: column; gap: 4px; }
.home-control-row small { color: rgba(16,17,20,.4); font-size: .5rem; letter-spacing: 1px; }
.home-control-row b { font-size: .86rem; }
.home-control-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; font-weight: 800; }
.home-control-icon.violet { background: #eadfff; color: var(--home-violet); }
.home-control-icon.lime { background: #f0ffc1; }
.home-control-icon.coral { background: #ffe1d9; color: var(--home-coral); }
.home-status { padding: 7px 10px; border-radius: 100px; background: #eaf8ee; color: #287743; font-size: .62rem; }
.home-control-seal { display: flex; align-items: center; gap: 12px; margin-top: 17px; padding: 19px; border-radius: 13px; background: #111218; color: white; font-size: .8rem; font-weight: 700; }
.home-control-seal span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--home-lime); color: var(--home-ink); }

.home-final-cta { position: relative; min-height: 800px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 80px 24px; text-align: center; }
.home-final-cta h2 { margin: 10px 0 50px; font-size: clamp(4.4rem, 10vw, 9.4rem); line-height: .82; letter-spacing: -.075em; }
.home-final-cta h2 em { color: var(--home-blue); }
.home-button-dark, .home-main a.home-button-dark { background: var(--home-ink); color: white; }
.home-button-dark:hover { background: var(--home-blue); }
.home-button-large { min-width: 190px; min-height: 58px; padding-inline: 26px; }
.home-cta-note { margin: 15px 0 0; color: rgba(16,17,20,.45); font-size: .74rem; }
.home-cta-orbit { position: absolute; width: 560px; height: 560px; z-index: -1; border: 1px solid rgba(32,85,255,.16); border-radius: 50%; }
.home-cta-orbit span, .home-cta-orbit i { position: absolute; border-radius: 50%; }
.home-cta-orbit span { width: 38px; height: 38px; left: 3%; top: 28%; background: var(--home-coral); }
.home-cta-orbit i { width: 24px; height: 24px; right: 10%; bottom: 18%; background: var(--home-lime); }
.home-page .site-footer { margin-top: 0; background: #111218; }

@media (max-width: 900px) {
  .home-hero-copy { width: 88vw; }
  .home-hero-image { object-position: 58% center; }
  .home-hero-shade { background: linear-gradient(90deg,rgba(5,10,37,.95),rgba(5,10,37,.52)), linear-gradient(0deg,rgba(4,8,25,.78),transparent 34%); }
  .home-comparison, .home-control { grid-template-columns: 1fr; }
  .home-scatter-card { min-height: 460px; }
  .home-how-heading { grid-template-columns: 1fr; gap: 40px; }
  .home-steps { grid-template-columns: 1fr; }
  .home-feature-grid { grid-template-columns: 1fr; }
  .home-feature-photo { grid-column: auto; }
}

@media (max-width: 640px) {
  .home-page .nav { min-height: 68px; width: calc(100% - 32px); flex-direction: row; align-items: center; }
  .home-page .nav-links a:not(.button) { display: none; }
  .home-page .nav-links { gap: 0; }
  .home-page .nav-links .button-primary { min-height: 40px; }
  .home-hero { min-height: calc(100svh - 68px); }
  .home-hero-copy { margin-left: 22px; padding-top: 60px; }
  .home-hero h1 { font-size: clamp(3.25rem, 16vw, 4.75rem); }
  .home-hero-copy > p:not(.home-eyebrow) { max-width: 90%; font-size: 1.02rem; }
  .home-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .home-proof { display: none; }
  .home-comparison { padding-inline: 10px; }
  .home-workspace-card { min-height: 610px; }
  .home-workspace-layout { grid-template-columns: 1fr; }
  .home-workspace-layout aside { display: none; }
  .home-workspace-main { padding: 24px 16px; }
  .home-idea-grid { gap: 6px; }
  .home-idea-grid > div { min-height: 130px; padding: 10px; }
  .home-idea-grid b { font-size: .68rem; }
  .home-feature-grid { gap: 10px; padding: 10px; }
  .home-feature { min-height: 570px; }
  .home-feature-photo { min-height: 620px; }
  .home-control-panel { padding: 10px; transform: none; }
  .home-control-row { grid-template-columns: auto 1fr; }
  .home-status { display: none; }
  .home-final-cta { min-height: 650px; }
  .home-cta-orbit { width: 420px; height: 420px; }
}

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

.trust-update-card .trust-update-date {
  margin: 0 0 6px;
  color: var(--ct-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.trust-update-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
}

.trust-update-card p:last-child {
  margin: 0;
  color: var(--ct-text-secondary);
}

.trust-controls-updated {
  margin: 0 0 14px;
}

.trust-form-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 10px;
  background: var(--ct-background-primary);
  color: var(--ct-text-primary);
  padding: 0 12px;
  font: inherit;
}

.trust-form-field select:focus-visible {
  outline: 2px solid var(--ct-accent-primary);
  outline-offset: 2px;
}

.docs-grid,
.blog-list {
  display: grid;
  gap: 20px;
}

.docs-card h2,
.blog-article h2 {
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.docs-topic-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.docs-topic-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.docs-code-list code,
.docs-code-block code {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
  font-size: 0.92rem;
}

.docs-code-block {
  overflow-x: auto;
  margin: 12px 0 0;
  padding: 16px;
  border-radius: 12px;
  background: var(--ct-background-secondary);
  border: 1px solid var(--ct-border-subtle);
}

.docs-callout {
  margin-bottom: 24px;
}

.blog-summary {
  color: var(--ct-text-secondary);
  margin: 0 0 12px;
}

.blog-body p {
  margin: 0 0 12px;
}

.blog-body p:last-child {
  margin-bottom: 0;
}

.blog-post h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 12px;
}

.blog-post-body {
  margin-top: 24px;
  color: var(--ct-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.blog-post-body h2 {
  margin-top: 1.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.blog-post-body p {
  margin: 0 0 12px;
}

.blog-post-body p:last-child {
  margin-bottom: 0;
}

.blog-post-body em {
  font-style: italic;
}

.blog-post-body strong {
  font-weight: 600;
}

.blog-post-body hr {
  border: 0;
  border-top: 1px solid var(--ct-border-subtle);
  margin: 24px 0;
}

.blog-article h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-article h2 a:hover {
  color: var(--ct-accent-primary);
}

.maintenance-page {
  min-height: calc(100dvh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 0 72px;
}

.maintenance-shell {
  position: relative;
  width: min(760px, calc(100% - 48px));
}

.maintenance-glow {
  position: absolute;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
}

.maintenance-glow-primary {
  top: -4rem;
  right: -3rem;
  background: rgba(38, 99, 235, 0.18);
}

.maintenance-glow-secondary {
  bottom: -4rem;
  left: -3rem;
  background: rgba(139, 92, 246, 0.14);
}

.maintenance-card {
  position: relative;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 2rem;
  background: var(--ct-background-secondary);
  box-shadow: var(--ct-shadow-raised);
  padding: 32px 28px;
  text-align: center;
}

.maintenance-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.maintenance-brand-emblem {
  width: auto;
  height: 7rem;
}

.maintenance-brand-name {
  margin-top: -0.5rem;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
}

.maintenance-eyebrow {
  margin-bottom: 12px;
}

.maintenance-lead {
  margin-top: 16px;
  margin-bottom: 0;
}


.status-page {
  padding: 48px 24px 72px;
}

.status-shell {
  max-width: 880px;
  margin: 0 auto;
}

.status-lead {
  max-width: 46rem;
}

.status-summary {
  margin-top: 28px;
  border: 1px solid var(--ct-border-subtle);
  border-radius: 1rem;
  background: var(--ct-background-secondary);
  padding: 20px 24px;
}

.status-summary[data-status='ok'] {
  border-color: rgba(34, 197, 94, 0.45);
}

.status-summary[data-status='degraded'] {
  border-color: rgba(234, 179, 8, 0.5);
}

.status-summary[data-status='down'] {
  border-color: rgba(239, 68, 68, 0.5);
}

.status-summary-label,
.status-card-label {
  margin: 0;
  color: var(--ct-text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-summary-value {
  margin: 8px 0 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.status-summary-meta,
.status-note,
.status-card-detail {
  margin: 8px 0 0;
  color: var(--ct-text-muted);
  font-size: 0.95rem;
}

.status-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.status-card {
  border: 1px solid var(--ct-border-subtle);
  border-radius: 1rem;
  background: var(--ct-background-primary);
  padding: 16px;
}

.status-card[data-status='ok'] .status-card-value {
  color: var(--ct-accent-success);
}

.status-card[data-status='degraded'] .status-card-value {
  color: #eab308;
}

.status-card[data-status='down'] .status-card-value {
  color: #ef4444;
}

.status-card-value {
  margin: 8px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.status-actions {
  margin-top: 28px;
}

@media (min-width: 720px) {
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.maintenance-status-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.maintenance-status-card {
  border: 1px solid var(--ct-border-subtle);
  border-radius: 1rem;
  background: var(--ct-background-primary);
  padding: 16px;
}

.maintenance-status-label {
  margin: 0;
  color: var(--ct-text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.maintenance-status-value {
  margin: 8px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.maintenance-note,
.maintenance-support {
  margin: 24px 0 0;
  color: var(--ct-text-muted);
  font-size: 0.95rem;
}

.maintenance-actions {
  justify-content: center;
  margin-top: 28px;
}

.maintenance-support a {
  color: var(--ct-accent-primary);
  font-weight: 600;
  text-decoration: none;
}

.maintenance-support a:hover {
  text-decoration: underline;
}

@media (min-width: 720px) {
  .maintenance-card {
    padding: 40px 44px;
  }

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

@media (max-width: 860px) {
  .trust-table th:nth-child(3),
  .trust-table td:nth-child(3),
  .trust-table th:nth-child(5),
  .trust-table td:nth-child(5) {
    min-width: 140px;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light dark;
  }
}

/* Day mode token set — fixed per STYLE_GUIDE.md; no runtime contrast logic */
:root[data-ct-theme='light'] {
  color-scheme: light;
  --ct-background-primary: #f5f5f4;
  --ct-background-secondary: #efeeec;
  --ct-background-elevated: #e7e5e4;
  --ct-background-hover: #d6d3d1;
  --ct-background-frame: rgba(239, 238, 236, 0.98);
  --ct-text-primary: #1c1917;
  --ct-text-secondary: #57534e;
  --ct-text-muted: #78716c;
  --ct-text-on-primary: #f8fafc;
  --ct-border-subtle: #d6d3d1;
  --ct-accent-primary: #2663eb;
  --ct-accent-primary-hover: #1d4ed8;
  --ct-accent-glow: #0284c7;
  --ct-brand-logo-blue: #2563eb;
  --ct-brand-logo-orange: #ea580c;
  --ct-shadow-raised: 0 18px 42px rgba(28, 25, 23, 0.12);
  --ct-shell-gradient:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32rem),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.06), transparent 28rem),
    var(--ct-background-primary);
}

:root[data-ct-theme='light'] body {
  background: var(--ct-background-primary);
  color: var(--ct-text-primary);
}

/* Enterprise Intelligence Layer — day-mode landing page */
.enterprise-page .site-header.enterprise-site-header {
  background: var(--ct-background-secondary);
  backdrop-filter: none;
  border-bottom: 1px solid var(--ct-border-subtle);
}

.enterprise-page .nav {
  width: min(1240px, calc(100% - 64px));
}

.enterprise-brand-name {
  color: var(--ct-text-primary);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.enterprise-brand .brand-emblem {
  width: 36px;
}

.enterprise-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.enterprise-nav-links {
  justify-content: center;
  gap: 28px;
}

.enterprise-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ct-text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}

.enterprise-nav-link:hover {
  color: var(--ct-text-primary);
  text-decoration: none;
}

.enterprise-nav-chevron {
  margin-top: 1px;
  opacity: 0.72;
}

.enterprise-nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ct-text-primary);
  background: var(--ct-text-primary);
  color: var(--ct-near-white);
  font-size: 0.9375rem;
}

.enterprise-nav-cta:hover {
  border-color: var(--ct-near-black);
  background: var(--ct-near-black);
  color: var(--ct-near-white);
  text-decoration: none;
}

.enterprise-page-main {
  background: var(--ct-background-primary);
}

.enterprise-page .enterprise-hero {
  width: min(1240px, calc(100% - 64px));
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 40px 56px;
  padding: 64px 0 48px;
}

.enterprise-hero-copy h1 {
  font-size: clamp(2.5rem, 4.2vw, 3.65rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.enterprise-hero-accent {
  color: var(--ct-accent-primary);
}

.enterprise-page .lead {
  margin-top: 22px;
  max-width: 34ch;
  color: var(--ct-text-secondary);
  font-size: 1.05rem;
  line-height: 1.55;
}

.enterprise-hero-actions {
  margin-top: 30px;
}

.enterprise-hero-actions .button {
  min-height: 46px;
  padding: 0 22px;
  font-size: 0.9375rem;
}

.enterprise-button-outline {
  background: var(--ct-background-primary);
  border-color: var(--ct-border-subtle);
  color: var(--ct-text-primary);
}

.enterprise-button-outline:hover {
  background: var(--ct-background-elevated);
  border-color: var(--ct-border-subtle);
  color: var(--ct-text-primary);
}

.enterprise-hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(210px, 0.82fr);
  gap: 8px 28px;
  align-items: center;
}

.enterprise-hero-illustration-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.enterprise-hero-illustration {
  display: block;
  width: min(100%, 360px);
  max-width: 100%;
  height: auto;
}

.enterprise-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.enterprise-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--ct-text-secondary);
  font-size: 0.875rem;
  line-height: 1.35;
}

.enterprise-checklist-item:last-child {
  margin-bottom: 0;
}

.enterprise-checklist-item img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 1px;
}

.enterprise-checklist-label {
  padding-top: 2px;
}

.enterprise-checklist-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.enterprise-checklist-title {
  color: var(--ct-text-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
}

.enterprise-checklist-sub {
  color: var(--ct-text-secondary);
  font-size: 0.875rem;
  line-height: 1.35;
}

.enterprise-trust-bar {
  border-top: 1px solid var(--ct-border-subtle);
  background: var(--ct-background-elevated);
}

.enterprise-trust-bar-inner {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 20px 0 22px;
}

.enterprise-trust-bar-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 0;
  color: var(--ct-text-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.enterprise-trust-divider {
  color: var(--ct-border-subtle);
  font-weight: 400;
}

.enterprise-trust-bar-note {
  margin: 10px 0 0;
  padding: 0;
  color: var(--ct-text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
}

.enterprise-trust-bar-note a {
  color: var(--ct-accent-primary);
  font-weight: 600;
  text-decoration: none;
}

.enterprise-trust-bar-note a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1080px) {
  .enterprise-page .enterprise-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
  }

  .enterprise-hero-visual {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.9fr);
    gap: 20px;
  }

  .enterprise-hero-illustration-wrap {
    min-height: 280px;
  }

  .enterprise-hero-illustration {
    width: min(100%, 320px);
  }
}

@media (max-width: 1024px) {
  .enterprise-nav {
    grid-template-columns: auto auto;
    grid-template-areas:
      'brand cta'
      'links links';
  }

  .enterprise-nav > .brand {
    grid-area: brand;
  }

  .enterprise-nav > .button {
    grid-area: cta;
    justify-self: end;
  }

  .enterprise-nav-links {
    grid-area: links;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px 20px;
    padding-top: 6px;
  }
}

@media (max-width: 760px) {
  .enterprise-hero-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }

  .enterprise-hero-illustration-wrap {
    min-height: 0;
  }

  .enterprise-checklist {
    width: min(100%, 320px);
  }
}

@media (max-width: 640px) {
  .enterprise-page .nav,
  .enterprise-page .enterprise-hero,
  .enterprise-trust-bar-inner {
    width: min(100%, calc(100% - 32px));
  }

  .enterprise-trust-bar-label {
    letter-spacing: 0.05em;
    font-size: 0.75rem;
  }
}

/* Product, pricing, enterprise, and trust redesign */
.features-page,
.pricing-page,
.trust-page {
  --sub-ink: #101114;
  --sub-paper: #f6f4ee;
  --sub-blue: #2055ff;
  --sub-violet: #7139ee;
  --sub-coral: #ff6b4a;
  --sub-lime: #d8ff52;
  --sub-line: rgba(16, 17, 20, 0.14);
  background: var(--sub-paper);
  color: var(--sub-ink);
}

.features-page .site-header,
.pricing-page .site-header,
.trust-page .site-header {
  position: relative;
  border-bottom: 1px solid var(--sub-line);
  background: var(--sub-paper);
  backdrop-filter: none;
}

.features-page .nav,
.pricing-page .nav,
.trust-page .nav {
  width: min(1320px, calc(100% - 48px));
  min-height: 78px;
}

.features-page .nav-links a:not(.button),
.pricing-page .nav-links a:not(.button),
.trust-page .nav-links a:not(.button) { color: var(--sub-ink); font-size: .875rem; }
.features-page .nav-links a:not(.button):hover,
.pricing-page .nav-links a:not(.button):hover,
.trust-page .nav-links a:not(.button):hover { color: var(--sub-blue); text-decoration: none; }
.features-page .nav-links .button-primary,
.pricing-page .nav-links .button-primary,
.trust-page .nav-links .button-primary { border-color: var(--sub-ink); border-radius: 999px; background: var(--sub-ink); color: white; }

.subpage-eyebrow { margin: 0 0 25px; color: rgba(16,17,20,.5); font-size: .68rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.subpage-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 32px; }
.subpage-button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 21px; border-radius: 999px; text-decoration: none; font-size: .9rem; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.subpage-button:hover { transform: translateY(-2px); text-decoration: none !important; }
.subpage-button-dark, main a.subpage-button-dark { background: var(--sub-ink); color: white; }
.subpage-button-dark:hover { background: var(--sub-blue); }
.subpage-button-blue, main a.subpage-button-blue { background: var(--sub-blue); color: white; }
.subpage-button-lime, main a.subpage-button-lime { background: var(--sub-lime); color: var(--sub-ink); }
.subpage-link, main a.subpage-link { display: inline-flex; gap: 10px; padding-bottom: 4px; border-bottom: 1px solid var(--sub-line); color: var(--sub-ink); text-decoration: none; font-size: .86rem; font-weight: 700; }
.subpage-link:hover { border-color: var(--sub-ink); text-decoration: none !important; }
.subpage-link-light, main a.subpage-link-light { border-color: rgba(255,255,255,.35); color: white; }
.subpage-section-heading { display: grid; grid-template-columns: .55fr 1.45fr; align-items: start; margin-bottom: 72px; }
.subpage-section-heading .subpage-eyebrow { margin: 8px 0 0; }
.subpage-section-heading h2 { margin: 0; font-size: clamp(3rem, 6vw, 5.5rem); line-height: .94; letter-spacing: -.06em; }

/* Features */
.features-page main { color: var(--sub-ink); }
.features-page main a:not(.button) { color: inherit; }
.features-page main a.subpage-button-dark { color: white; }
.features-page main a.subpage-button-blue { color: white; }
.features-page main a.subpage-button-lime { color: var(--sub-ink); }
.subpage-hero { min-height: 760px; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px,7vw,100px); align-items: center; padding: clamp(80px,9vw,140px) clamp(24px,6vw,96px); }
.subpage-hero-copy h1 { margin: 0; font-size: clamp(3.8rem,6.6vw,6.9rem); line-height: .88; letter-spacing: -.07em; }
.subpage-hero-copy h1 em { color: var(--sub-blue); font-style: normal; }
.subpage-hero-copy > p:not(.subpage-eyebrow) { max-width: 560px; margin: 30px 0 0; color: rgba(16,17,20,.58); font-size: clamp(1.08rem,1.5vw,1.3rem); }
.features-hero { background: radial-gradient(circle at 20% 0%, rgba(216,255,82,.55), transparent 28rem), var(--sub-paper); }
.features-hero-visual { overflow: hidden; transform: rotate(1deg); border: 10px solid #111218; border-radius: 25px; background: #111218; box-shadow: 0 35px 90px rgba(26,38,90,.2); }
.features-window-bar { height: 52px; display: flex; align-items: center; gap: 7px; padding: 0 15px; color: rgba(255,255,255,.55); font-size: .68rem; }
.features-window-bar > span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); }
.features-window-bar > span:first-child { background: var(--sub-coral); }
.features-window-bar b { margin-left: auto; font-weight: 500; }
.features-window-body { min-height: 440px; display: grid; grid-template-columns: 170px 1fr; overflow: hidden; border-radius: 16px; }
.features-window-body aside { display: flex; flex-direction: column; gap: 16px; padding: 28px 18px; background: #1c1d23; color: rgba(255,255,255,.5); font-size: .72rem; }
.features-window-body aside b { margin-bottom: 12px; color: white; font-size: .9rem; }
.features-window-body aside .active { margin: 0 -7px; padding: 9px 8px; border-radius: 7px; background: var(--sub-blue); color: white; }
.features-conversation { padding: 42px 34px; background: #f8f7f2; }
.features-session-label { margin: 0; color: var(--sub-blue); font-size: .58rem; font-weight: 700; letter-spacing: 1.2px; }
.features-conversation h2 { margin: 10px 0 50px; font-size: clamp(2rem,3vw,3.2rem); color: var(--sub-ink); }
.features-message { display: flex; gap: 12px; padding: 16px; border-radius: 13px; background: white; box-shadow: 0 12px 30px rgba(22,22,40,.06); }
.features-message > span { width: 31px; height: 31px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--sub-violet); color: white; font-size: .6rem; font-weight: 700; }
.features-message p { margin: 0; color: rgba(16,17,20,.62); font-size: .8rem; }
.features-vote-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 24px; }
.features-vote-row span { min-height: 92px; display: flex; flex-direction: column; justify-content: space-between; padding: 13px; border-radius: 10px; background: white; color: rgba(16,17,20,.55); font-size: .66rem; }
.features-vote-row b { color: var(--sub-ink); font-size: 1.35rem; }
.features-system { padding: clamp(90px,11vw,170px) clamp(18px,3vw,48px); background: #111218; color: white; }
.features-system .subpage-eyebrow { color: rgba(255,255,255,.42); }
.features-bento { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.features-bento-card { position: relative; min-height: 520px; overflow: hidden; padding: clamp(28px,4vw,56px); border-radius: 24px; }
.features-card-number { margin: 0 0 22px; opacity: .5; font-family: monospace; font-size: .68rem; }
.features-bento-card h3 { margin: 0; font-size: clamp(2.3rem,4vw,4rem); line-height: .95; letter-spacing: -.055em; }
.features-bento-card > p:not(.features-card-number) { max-width: 410px; margin: 18px 0 0; opacity: .68; }
.features-bento-blue { background: var(--sub-blue); }
.features-bento-paper { background: #ebe8e0; color: var(--sub-ink); }
.features-bento-violet { background: var(--sub-violet); }
.features-bento-lime { background: var(--sub-lime); color: var(--sub-ink); }
.features-bento-wide { grid-column: 1 / -1; min-height: 440px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; background: var(--sub-coral); color: var(--sub-ink); }
.features-bento-dark { background: #1b1c22; }
.features-room-art { position: absolute; left: 8%; right: 8%; bottom: 45px; display: flex; gap: 9px; }
.features-room-art span { flex: 1; padding: 18px; border-radius: 13px; background: rgba(255,255,255,.16); font-size: .75rem; }
.features-room-art span:nth-child(2) { transform: translateY(-20px); background: var(--sub-lime); color: var(--sub-ink); }
.features-timer-art { position: absolute; left: 9%; right: 9%; bottom: 42px; display: flex; align-items: end; justify-content: space-between; }
.features-timer-art b { font-size: clamp(4rem,8vw,8rem); line-height: .8; letter-spacing: -.08em; }
.features-timer-art span { padding: 8px 12px; border-radius: 999px; background: var(--sub-coral); font-size: .65rem; font-weight: 700; }
.features-ai-art { position: absolute; inset: auto 10% 30px; height: 220px; display: grid; place-items: center; }
.features-ai-art > span { width: 100px; height: 100px; display: grid; z-index: 2; place-items: center; border-radius: 50%; background: var(--sub-lime); color: var(--sub-ink); font-size: 2rem; }
.features-ai-art i { position: absolute; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; }
.features-ai-art i:nth-of-type(1) { width: 180px; height: 90px; transform: rotate(25deg); }
.features-ai-art i:nth-of-type(2) { width: 90px; height: 180px; transform: rotate(25deg); }
.features-ai-art i:nth-of-type(3) { width: 230px; height: 230px; }
.features-decision-art { position: absolute; left: 8%; right: 8%; bottom: 46px; display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 20px; border-radius: 14px; background: white; }
.features-decision-art span { font-size: .75rem; opacity: .5; }
.features-decision-art b { font-size: .85rem; }
.features-decision-art i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--sub-blue); color: white; font-style: normal; }
.features-advisor-art { display: flex; align-items: center; gap: 30px; align-self: center; padding: 28px; border-radius: 18px; background: rgba(255,255,255,.78); }
.features-advisor-art p { margin: 0; color: rgba(16,17,20,.65); }
.features-orb { width: 100px; height: 100px; flex: 0 0 auto; border-radius: 50%; background: radial-gradient(circle at 35% 30%, white, var(--sub-lime) 25%, var(--sub-blue) 72%, var(--sub-violet)); box-shadow: 0 16px 45px rgba(54,38,160,.25); }
.features-app-grid { position: absolute; left: 10%; right: 10%; bottom: 45px; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.features-app-grid span { aspect-ratio: 1; display: grid; place-items: center; border-radius: 18px; background: rgba(255,255,255,.08); color: var(--sub-lime); font-size: 1.7rem; }
.features-compare { padding: clamp(90px,10vw,150px) clamp(24px,6vw,96px); }
.features-compare-heading { grid-template-columns: .45fr 1fr auto; align-items: end; }
.features-matrix-details { border-top: 1px solid var(--sub-line); }
.features-matrix-details summary { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; list-style: none; font-size: 1rem; font-weight: 700; }
.features-matrix-details summary::-webkit-details-marker { display: none; }
.features-matrix-details summary span { font-size: 1.5rem; }
.features-page .plan-matrix-wrap { border-color: var(--sub-line); background: white; box-shadow: none; }
.features-page .plan-matrix thead th { background: #ebe8e0; color: var(--sub-ink); }
.features-page .plan-matrix-category th { background: #111218; color: white; }
.features-page .plan-matrix tbody th[scope='row'], .features-page .plan-matrix tbody td { color: var(--sub-ink); }
.subpage-cta { min-height: 620px; display: flex; flex-direction: column; justify-content: center; padding: clamp(80px,9vw,140px) clamp(24px,7vw,112px); }
.subpage-cta h2 { margin: 0; font-size: clamp(3.8rem,7vw,7rem); line-height: .88; letter-spacing: -.07em; }
.features-cta { background: var(--sub-blue); color: white; }
.features-cta .subpage-eyebrow { color: rgba(255,255,255,.5); }

/* Pricing */
.pricing-main { color: var(--sub-ink); }
.pricing-page main a:not(.button) { color: inherit; }
.pricing-page main a.subpage-button-lime { color: var(--sub-ink); }
.pricing-hero { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding: clamp(90px,11vw,160px) clamp(24px,6vw,96px) 70px; background: radial-gradient(circle at 88% 12%, rgba(113,57,238,.2), transparent 30rem), var(--sub-paper); }
.pricing-hero-copy h1 { margin: 0; font-size: clamp(4rem,8vw,8rem); line-height: .84; letter-spacing: -.075em; }
.pricing-hero-copy h1 em { color: var(--sub-violet); font-style: normal; }
.pricing-hero-copy > p:not(.subpage-eyebrow) { max-width: 590px; margin: 30px 0 0; color: rgba(16,17,20,.58); font-size: 1.18rem; }
.pricing-hero .actions { margin: 0; }
.pricing-page .toggle { border-color: var(--sub-line); background: white; }
.pricing-page .toggle button { color: var(--sub-ink); }
.pricing-page .toggle button[aria-pressed='true'] { background: var(--sub-ink); color: white; }
.pricing-hero .billing-note { grid-column: 2; margin: 4px 0 0; color: rgba(16,17,20,.45); text-align: center; }
.pricing-plan-grid { width: min(1440px,calc(100% - 36px)); grid-template-columns: repeat(4,1fr); gap: 14px; margin: 0 auto; padding-bottom: clamp(90px,10vw,150px); }
.pricing-page .price-card { overflow: hidden; padding: 30px; border: 0; border-radius: 24px; background: white; box-shadow: none; color: var(--sub-ink); }
.pricing-page .price-card:nth-child(1) { background: var(--sub-lime); }
.pricing-page .price-card:nth-child(2) { background: #ebe8e0; }
.pricing-page .price-card:nth-child(3) { background: var(--sub-blue); color: white; }
.pricing-page .price-card:nth-child(4) { background: #111218; color: white; }
.pricing-page .price-card p, .pricing-page .price-card li { color: inherit; opacity: .72; }
.pricing-page .price-card h2 { font-size: 2rem; }
.pricing-page .price-card .eyebrow { color: inherit; opacity: .55; }
.pricing-page .price strong { font-size: 3.1rem; letter-spacing: -.06em; }
.pricing-page .price-card .button { border: 0; border-radius: 999px; background: white; color: var(--sub-ink); }
.pricing-page .price-card:nth-child(-n+2) .button { background: var(--sub-ink); color: white; }
.pricing-page .price-card ul { padding-top: 18px; border-top: 1px solid currentColor; }
.pricing-page .price-card li { font-size: .84rem; }
.pricing-page .check { color: inherit; }
.pricing-enterprise-section { padding: 0 18px 18px; }
.pricing-enterprise { min-height: 580px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; padding: clamp(50px,7vw,100px); border-radius: 25px; background: var(--sub-violet); color: white; }
.pricing-enterprise-copy h2 { margin: 0; font-size: clamp(3.2rem,6vw,6rem); line-height: .88; letter-spacing: -.065em; }
.pricing-enterprise-copy > p:last-child { color: rgba(255,255,255,.65); font-size: 1.1rem; }
.pricing-enterprise .subpage-eyebrow { color: rgba(255,255,255,.5); }
.pricing-enterprise ul { margin: 0; padding: 0; list-style: none; }
.pricing-enterprise li { margin: 12px 0; color: rgba(255,255,255,.76); }
.pricing-enterprise .check { color: var(--sub-lime); }
.pricing-provider-section, .pricing-sessions-section, .pricing-faq-section { width: min(1200px,calc(100% - 48px)); }
.pricing-provider-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pricing-provider-section .section-header { margin: 0; }
.pricing-provider-section h2, .pricing-sessions-section h2, .pricing-faq-section h2 { font-size: clamp(3rem,5vw,5rem); line-height: .93; letter-spacing: -.055em; }
.pricing-page .provider-chips { align-content: center; }
.pricing-page .provider-chip { padding: 12px 17px; border: 0; background: white; color: var(--sub-ink); }
.pricing-sessions-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.pricing-session-art { position: relative; min-height: 360px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; align-items: center; padding: 30px; overflow: hidden; border-radius: 24px; background: var(--sub-coral); }
.pricing-session-art span { z-index: 1; padding: 18px 12px; transform: rotate(-4deg); border-radius: 12px; background: white; font-size: .78rem; font-weight: 700; text-align: center; }
.pricing-session-art span:nth-child(2) { transform: translateY(-35px) rotate(3deg); background: var(--sub-lime); }
.pricing-session-art span:nth-child(3) { transform: rotate(5deg); background: var(--sub-violet); color: white; }
.pricing-session-art i { position: absolute; right: 25px; bottom: 15px; color: rgba(16,17,20,.25); font-size: clamp(4rem,8vw,8rem); font-style: normal; font-weight: 700; letter-spacing: -.08em; }
.pricing-faq-section .faq-list { grid-template-columns: repeat(2,1fr); }
.pricing-page .faq-item { border-color: var(--sub-line); background: white; box-shadow: none; color: var(--sub-ink); }
.pricing-page .faq-item p { color: rgba(16,17,20,.62); }

/* Trust Center */
.trust-page { --ct-background-primary: var(--sub-paper); --ct-background-secondary: white; --ct-background-elevated: #ebe8e0; --ct-background-hover: #f0eee8; --ct-text-primary: var(--sub-ink); --ct-text-secondary: rgba(16,17,20,.66); --ct-text-muted: rgba(16,17,20,.48); --ct-border-subtle: var(--sub-line); --ct-accent-primary: var(--sub-blue); --ct-accent-success: #22864a; --ct-shadow-raised: none; background: var(--sub-paper); color: var(--sub-ink); }
.trust-page .trust-nav { width: min(1320px,calc(100% - 48px)); gap: 5px; padding: 12px 0; }
.trust-page .trust-nav a { min-height: 38px; padding: 0 14px; border: 0; background: transparent; color: rgba(16,17,20,.58); }
.trust-page .trust-nav a[aria-current='page'] { background: var(--sub-ink); color: white; }
.trust-page .trust-nav a:hover { background: #ebe8e0; color: var(--sub-ink); }
.trust-page .trust-nav a[aria-current='page']:hover { background: var(--sub-ink); color: white; }
.trust-page main { color: var(--sub-ink); }
.trust-page main a:not(.button) { color: var(--sub-blue); }
.trust-page .trust-portal-hero { width: min(1320px,calc(100% - 48px)); grid-template-columns: .8fr 1.2fr; gap: clamp(40px,8vw,120px); align-items: center; padding: clamp(80px,10vw,150px) 0; }
.trust-hero-kicker { margin: 0 0 25px; color: rgba(16,17,20,.48); font-size: .68rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.trust-page .trust-portal-hero h1 { margin: 0; font-size: clamp(4rem,7vw,7rem); line-height: .86; letter-spacing: -.072em; }
.trust-page .trust-portal-hero h1 em { color: var(--sub-blue); font-style: normal; }
.trust-page .trust-portal-hero .lead { max-width: 520px; color: rgba(16,17,20,.58); font-size: 1.1rem; }
.trust-page .trust-header-btn { border-radius: 999px; }
.trust-page .button-primary { border-color: var(--sub-blue); background: var(--sub-blue); color: white; }
.trust-page .button-secondary { border-color: var(--sub-line); background: white; color: var(--sub-ink); }
.trust-page .trust-portal-contact { color: rgba(16,17,20,.46); font-size: .78rem; }
.trust-page .trust-hero-card { padding: 18px; border: 0; border-radius: 25px; background: #111218; box-shadow: 0 28px 80px rgba(20,28,70,.17); color: white; }
.trust-signal-header { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 17px; }
.trust-signal-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sub-lime); box-shadow: 0 0 0 6px rgba(216,255,82,.1); }
.trust-signal-header b { font-size: .84rem; }
.trust-signal-header small { color: rgba(255,255,255,.4); font-size: .62rem; }
.trust-signal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.trust-signal-grid > div { min-height: 150px; display: flex; flex-direction: column; align-items: flex-start; padding: 20px; border-radius: 15px; background: #1b1c22; }
.trust-signal-grid > div:nth-child(1) { background: var(--sub-blue); }
.trust-signal-grid > div:nth-child(4) { background: var(--sub-violet); }
.trust-signal-grid span { width: 27px; height: 27px; display: grid; place-items: center; margin-bottom: auto; border-radius: 50%; background: var(--sub-lime); color: var(--sub-ink); font-size: .7rem; }
.trust-signal-grid b { font-size: .86rem; }
.trust-signal-grid small { margin-top: 3px; color: rgba(255,255,255,.5); font-size: .64rem; }
.trust-signal-note { margin: 14px 4px 2px; padding: 14px; color: rgba(255,255,255,.46); font-size: .7rem; }
.trust-page .trust-portal-overview, .trust-page .trust-main, .trust-page body:has(.trust-nav) .trust-main { width: min(1320px,calc(100% - 48px)); }
.trust-page .trust-portal-overview > .trust-portal-section { margin-top: 0; padding: clamp(70px,8vw,120px) 0; border-top: 1px solid var(--sub-line); }
.trust-page .trust-portal-section-head h2 { font-size: clamp(2.6rem,4.5vw,4.6rem); letter-spacing: -.055em; }
.trust-page .trust-portal-view-all { padding: 10px 14px; border-radius: 999px; background: var(--sub-ink); color: white; font-size: .78rem; }
.trust-page .card { border: 0; border-radius: 19px; background: white; box-shadow: none; color: var(--sub-ink); }
.trust-page .card p, .trust-page .card li { color: rgba(16,17,20,.62); }
.trust-page .trust-framework-grid { grid-template-columns: repeat(5,1fr); gap: 10px; }
.trust-page .trust-framework-card { min-height: 240px; padding: 24px; }
.trust-page .trust-framework-card:nth-child(1) { background: var(--sub-lime); }
.trust-page .trust-framework-card:nth-child(2) { background: #ebe8e0; }
.trust-page .trust-framework-card:nth-child(3) { background: var(--sub-blue); color: white; }
.trust-page .trust-framework-card:nth-child(4) { background: var(--sub-violet); color: white; }
.trust-page .trust-framework-card:nth-child(5) { background: #111218; color: white; }
.trust-page .trust-framework-card:nth-child(n+3) p { color: rgba(255,255,255,.6); }
.trust-page .trust-resource-grid, .trust-page .trust-controls-grid { gap: 12px; }
.trust-page .trust-resource-item:hover, .trust-page .trust-control-category:hover { transform: translateY(-2px); background: white; }
.trust-page .trust-control-category { border-left: 5px solid var(--sub-blue); }
.trust-page .trust-table-wrap { padding: 0; overflow: hidden; }
.trust-page .trust-faq-item { border: 1px solid var(--sub-line); }
.trust-page .site-footer { background: #111218; }

/* Enterprise */
.enterprise-page { --ent-ink: #0d1020; --ent-blue: #2055ff; --ent-violet: #7139ee; --ent-coral: #ff6b4a; --ent-lime: #d8ff52; --ent-paper: #f6f4ee; background: var(--ent-paper); }
.enterprise-page .site-header.enterprise-site-header { position: relative; border: 0; background: var(--ent-paper); }
.enterprise-page .nav { min-height: 78px; }
.enterprise-page .enterprise-nav-cta { border-radius: 999px; }
.enterprise-page-main { background: var(--ent-paper); color: var(--ent-ink); }
.enterprise-page .enterprise-hero { width: 100%; min-height: 760px; grid-template-columns: .9fr 1.1fr; gap: 70px; padding: clamp(80px,9vw,140px) clamp(24px,7vw,112px); background: radial-gradient(circle at 72% 25%, rgba(113,57,238,.48), transparent 25rem), #0b1028; color: white; }
.enterprise-kicker { margin: 0 0 25px; color: rgba(255,255,255,.48); font-size: .68rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.enterprise-hero-copy h1 { font-size: clamp(3.7rem,6.5vw,7rem); line-height: .88; letter-spacing: -.068em; }
.enterprise-hero-accent { color: var(--ent-lime); }
.enterprise-page .enterprise-hero .lead { max-width: 580px; color: rgba(255,255,255,.66); font-size: 1.12rem; }
.enterprise-page .enterprise-hero .button-primary { border: 0; border-radius: 999px; background: var(--ent-lime); color: var(--ent-ink); }
.enterprise-page .enterprise-button-outline { border-color: rgba(255,255,255,.22); border-radius: 999px; background: transparent; color: white; }
.enterprise-page .enterprise-button-outline:hover { background: white; color: var(--ent-ink); }
.enterprise-hero-visual { grid-template-columns: 1fr .85fr; padding: 20px; border-radius: 25px; background: rgba(255,255,255,.06); backdrop-filter: blur(20px); }
.enterprise-hero-illustration { filter: drop-shadow(0 25px 45px rgba(0,0,0,.3)); }
.enterprise-checklist-item, .enterprise-checklist-sub { color: rgba(255,255,255,.58); }
.enterprise-checklist-title { color: white; }
.enterprise-trust-bar { border: 0; background: var(--ent-lime); }
.enterprise-trust-bar-label { color: var(--ent-ink); font-weight: 700; }
.enterprise-trust-divider { color: rgba(13,16,32,.28); }
.enterprise-trust-bar-note { color: rgba(13,16,32,.62); }
.enterprise-trust-bar-note a { color: var(--ent-ink); }
.enterprise-outcomes { padding: clamp(100px,11vw,170px) clamp(18px,3vw,48px); }
.enterprise-section-heading { display: grid; grid-template-columns: .55fr 1.45fr; margin-bottom: 70px; }
.enterprise-section-heading .enterprise-kicker { color: rgba(13,16,32,.45); }
.enterprise-section-heading h2 { margin: 0; font-size: clamp(3.3rem,6vw,6rem); line-height: .9; letter-spacing: -.06em; }
.enterprise-outcome-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.enterprise-outcome { position: relative; min-height: 560px; overflow: hidden; padding: 38px; border-radius: 24px; }
.enterprise-outcome > span { font-family: monospace; font-size: .7rem; opacity: .5; }
.enterprise-outcome h3 { margin: 30px 0 13px; font-size: 2.3rem; letter-spacing: -.05em; }
.enterprise-outcome p { max-width: 300px; opacity: .64; }
.enterprise-outcome-blue { background: var(--ent-blue); color: white; }
.enterprise-outcome-lime { background: var(--ent-lime); color: var(--ent-ink); }
.enterprise-outcome-paper { background: #e7e3dc; color: var(--ent-ink); }
.enterprise-context-art { position: absolute; left: 10%; right: 10%; bottom: 50px; height: 180px; display: grid; place-items: center; }
.enterprise-context-art i { position: absolute; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; }
.enterprise-context-art i:nth-child(1) { width: 210px; height: 85px; transform: rotate(25deg); }
.enterprise-context-art i:nth-child(2) { width: 85px; height: 210px; transform: rotate(25deg); }
.enterprise-context-art i:nth-child(3) { width: 180px; height: 180px; }
.enterprise-context-art b { z-index: 1; }
.enterprise-control-art, .enterprise-deploy-art { position: absolute; left: 9%; right: 9%; bottom: 45px; display: grid; gap: 8px; }
.enterprise-control-art b { padding: 17px; border-radius: 12px; background: rgba(255,255,255,.68); }
.enterprise-deploy-art { grid-template-columns: repeat(3,1fr); }
.enterprise-deploy-art i { padding: 25px 8px; border-radius: 12px; background: white; font-style: normal; font-weight: 700; text-align: center; }
.enterprise-models { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px,8vw,120px); align-items: center; padding: clamp(100px,11vw,170px) clamp(24px,7vw,112px); background: var(--ent-violet); color: white; }
.enterprise-models h2 { margin: 0; font-size: clamp(3.4rem,6vw,6rem); line-height: .9; letter-spacing: -.06em; }
.enterprise-models-copy > p:not(.enterprise-kicker) { max-width: 520px; color: rgba(255,255,255,.65); }
.enterprise-provider-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.enterprise-provider-list span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: .72rem; }
.enterprise-models-visual { padding: 20px; transform: rotate(1deg); border-radius: 24px; background: white; color: var(--ent-ink); box-shadow: 0 30px 80px rgba(30,10,70,.25); }
.enterprise-model-core { min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border-radius: 15px; background: #111218; color: white; }
.enterprise-model-core span { color: var(--ent-lime); font-size: .7rem; text-transform: uppercase; }
.enterprise-model-core b { margin-top: 7px; font-size: 1.4rem; }
.enterprise-model-route { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; gap: 10px; padding: 28px 8px; color: rgba(13,16,32,.6); font-size: .74rem; text-align: center; }
.enterprise-model-route i { height: 2px; background: var(--ent-blue); }
.enterprise-model-status { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.enterprise-model-status span { padding: 14px 10px; border-radius: 10px; background: #ebe8e0; font-size: .67rem; }
.enterprise-procurement { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 70px; align-items: end; padding: clamp(100px,11vw,170px) clamp(24px,7vw,112px); }
.enterprise-procurement .enterprise-kicker { color: rgba(13,16,32,.45); }
.enterprise-procurement h2 { margin: 0; font-size: clamp(3rem,5vw,5rem); letter-spacing: -.055em; }
.enterprise-procurement > p { color: rgba(13,16,32,.58); }
.enterprise-procurement-links { display: flex; flex-direction: column; }
.enterprise-procurement-links a { padding: 16px 0; border-bottom: 1px solid rgba(13,16,32,.14); color: var(--ent-ink); text-decoration: none; font-weight: 700; }
.enterprise-final-cta { min-height: 650px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 24px; background: var(--ent-blue); color: white; text-align: center; }
.enterprise-final-cta h2 { margin: 0 0 45px; font-size: clamp(3.4rem,7vw,7rem); line-height: .88; letter-spacing: -.068em; }
.enterprise-final-button { border: 0; border-radius: 999px; background: var(--ent-lime); color: var(--ent-ink); }
.enterprise-page .site-footer { background: #111218; }

@media (max-width: 1080px) {
  .subpage-hero, .pricing-provider-section, .pricing-sessions-section, .enterprise-models { grid-template-columns: 1fr; }
  .features-bento-wide { grid-template-columns: 1fr; }
  .pricing-plan-grid { grid-template-columns: repeat(2,1fr); }
  .trust-page .trust-framework-grid { grid-template-columns: repeat(3,1fr); }
  .enterprise-page .enterprise-hero { grid-template-columns: 1fr; }
  .enterprise-outcome-grid { grid-template-columns: 1fr; }
  .enterprise-outcome { min-height: 480px; }
  .enterprise-procurement { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 760px) {
  .features-page .nav, .pricing-page .nav, .trust-page .nav { width: calc(100% - 32px); min-height: 68px; flex-direction: row; align-items: center; }
  .features-page .nav-links a:not(.button), .pricing-page .nav-links a:not(.button), .trust-page .nav-links a:not(.button) { display: none; }
  .features-page .nav-links, .pricing-page .nav-links, .trust-page .nav-links { gap: 0; }
  .subpage-hero { min-height: auto; padding-top: 80px; }
  .features-window-body { grid-template-columns: 1fr; }
  .features-window-body aside { display: none; }
  .features-conversation { padding: 30px 18px; }
  .features-bento { grid-template-columns: 1fr; }
  .features-bento-wide { grid-column: auto; }
  .subpage-section-heading, .features-compare-heading, .enterprise-section-heading { grid-template-columns: 1fr; gap: 28px; }
  .features-compare-heading .subpage-button { width: fit-content; }
  .pricing-hero { grid-template-columns: 1fr; }
  .pricing-hero .billing-note { grid-column: 1; text-align: left; }
  .pricing-plan-grid { grid-template-columns: 1fr; }
  .pricing-enterprise { grid-template-columns: 1fr; }
  .pricing-faq-section .faq-list { grid-template-columns: 1fr; }
  .trust-page .trust-portal-hero { grid-template-columns: 1fr; }
  .trust-page .trust-framework-grid, .trust-page .trust-resource-grid, .trust-page .trust-controls-grid { grid-template-columns: 1fr; }
  .trust-page .trust-nav { width: calc(100% - 32px); overflow-x: auto; flex-wrap: nowrap; }
  .enterprise-page .enterprise-hero { width: 100%; padding-inline: 24px; }
  .enterprise-hero-visual { grid-template-columns: 1fr; }
  .enterprise-model-status { grid-template-columns: 1fr; }
}
