@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --bg-ink: #1C1917;
  --bg-slate: #292522;
  --bg-paper: #FAFAF8;
  --bg-cream: #F3F1EC;
  --bg-white: #FFFFFF;
  --accent-red: #D64C2B;
  --accent-red-dark: #C04424;
  --accent-amber: #C07A2F;
  --accent-green: #2D6A4F;
  --text-dark-primary: #F5F3EF;
  --text-dark-muted: #9E9690;
  --text-light-primary: #1C1917;
  --text-light-muted: #6B6460;
  --text-light-subtle: #A09890;
  --border-dark: #3D3732;
  --border-light: #E2DED8;
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --max-w: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light-primary);
  background-color: var(--bg-paper);
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.coh-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.coh-section {
  padding: 6rem 0;
}

.coh-section--sm {
  padding: 4rem 0;
}

.coh-section--dark {
  background-color: var(--bg-ink);
}

.coh-section--dark-alt {
  background-color: var(--bg-slate);
}

.coh-section--light {
  background-color: var(--bg-paper);
}

.coh-section--cream {
  background-color: var(--bg-cream);
}

.coh-section--white {
  background-color: var(--bg-white);
}

.coh-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.coh-section--dark .coh-label,
.coh-section--dark-alt .coh-label {
  color: var(--accent-red);
}

.coh-section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-light-primary);
}

.coh-section--dark .coh-section-headline,
.coh-section--dark-alt .coh-section-headline {
  color: var(--text-dark-primary);
}

.coh-section-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}

.coh-section--dark .coh-section-sub,
.coh-section--dark-alt .coh-section-sub {
  color: var(--text-dark-muted);
}

.coh-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1.5px solid transparent;
  transition: background-color 150ms var(--ease), border-color 150ms var(--ease), color 150ms var(--ease);
  white-space: nowrap;
}

.coh-btn--primary {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
}

.coh-btn--primary:hover {
  background-color: var(--accent-red-dark);
  border-color: var(--accent-red-dark);
  color: #fff;
}

.coh-btn--ghost-dark {
  background-color: transparent;
  border-color: var(--text-dark-primary);
  color: var(--text-dark-primary);
}

.coh-btn--ghost-dark:hover {
  background-color: rgba(255,255,255,0.08);
  color: var(--text-dark-primary);
}

.coh-btn--ghost-light {
  background-color: transparent;
  border-color: var(--text-light-primary);
  color: var(--text-light-primary);
}

.coh-btn--ghost-light:hover {
  background-color: rgba(28,25,23,0.06);
  color: var(--text-light-primary);
}

.coh-btn--outline {
  background-color: transparent;
  border-color: var(--border-light);
  color: var(--text-light-primary);
}

.coh-btn--outline:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.coh-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background-color 250ms var(--ease), border-color 250ms var(--ease);
  border-bottom: 1px solid transparent;
}

.coh-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.coh-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.coh-nav__logo img {
  height: 32px;
  width: auto;
}

.coh-nav__logo .coh-logo-dark {
  display: none;
}

.coh-nav__logo .coh-logo-light {
  display: block;
}

.coh-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.coh-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark-primary);
  transition: color 150ms var(--ease);
}

.coh-nav__link:hover {
  color: var(--accent-red);
}

.coh-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coh-nav__signin {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark-primary);
  transition: color 150ms var(--ease);
  padding: 0.5rem 0.75rem;
}

.coh-nav__signin:hover {
  color: var(--accent-red);
}

.coh-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.coh-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-dark-primary);
  border-radius: 1px;
  transition: background-color 150ms var(--ease), transform 250ms var(--ease), opacity 250ms var(--ease);
}

.coh-nav__mobile {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background-color: var(--bg-ink);
  border-top: 1px solid var(--border-dark);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}

.coh-nav__mobile.coh-nav__mobile--open {
  display: flex;
}

.coh-nav__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color 150ms var(--ease);
}

.coh-nav__mobile-link:last-child {
  border-bottom: none;
}

.coh-nav__mobile-link:hover {
  color: var(--accent-red);
}

.coh-nav__mobile-cta {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coh-page--dark-top .coh-nav {
  background-color: transparent;
}

.coh-page--dark-top .coh-nav--scrolled {
  background-color: var(--bg-ink);
  border-color: var(--border-dark);
}

.coh-page--dark-top .coh-nav .coh-nav__link {
  color: var(--text-dark-primary);
}

.coh-page--dark-top .coh-nav .coh-nav__signin {
  color: var(--text-dark-primary);
}

.coh-page--dark-top .coh-nav .coh-nav__hamburger span {
  background-color: var(--text-dark-primary);
}

.coh-page--light-top .coh-nav {
  background-color: var(--bg-paper);
  border-color: var(--border-light);
}

.coh-page--light-top .coh-nav .coh-logo-dark {
  display: block;
}

.coh-page--light-top .coh-nav .coh-logo-light {
  display: none;
}

.coh-page--light-top .coh-nav .coh-nav__link {
  color: var(--text-light-primary);
}

.coh-page--light-top .coh-nav .coh-nav__signin {
  color: var(--text-light-primary);
}

.coh-page--light-top .coh-nav .coh-nav__hamburger span {
  background-color: var(--text-light-primary);
}

.coh-page--light-top .coh-nav--scrolled {
  background-color: var(--bg-paper);
  border-color: var(--border-light);
}

.coh-page--dark-top .coh-nav--scrolled .coh-logo-dark {
  display: none !important;
}

.coh-page--dark-top .coh-nav--scrolled .coh-logo-light {
  display: block !important;
}

.coh-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  background-color: var(--bg-ink);
  position: relative;
  overflow: hidden;
}

.coh-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(214,76,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.coh-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.coh-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.coh-hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark-primary);
  letter-spacing: -0.02em;
}

.coh-hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-dark-muted);
  max-width: 480px;
}

.coh-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.coh-hero__visual {
  position: relative;
}

.coh-clause-card {
  background-color: var(--bg-slate);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.coh-clause-card__header {
  background-color: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coh-clause-card__filename {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark-muted);
}

.coh-clause-card__badge {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background-color: rgba(214,76,43,0.15);
  color: #E87B5F;
}

.coh-clause-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.coh-clause-item {
  border-radius: 6px;
  padding: 0.875rem;
  border: 1px solid transparent;
}

.coh-clause-item--high {
  background-color: rgba(214,76,43,0.1);
  border-color: rgba(214,76,43,0.25);
}

.coh-clause-item--review {
  background-color: rgba(192,122,47,0.1);
  border-color: rgba(192,122,47,0.25);
}

.coh-clause-item--ok {
  background-color: rgba(45,106,79,0.1);
  border-color: rgba(45,106,79,0.25);
}

.coh-clause-item__risk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.coh-clause-item__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coh-clause-item--high .coh-clause-item__label { color: #E87B5F; }
.coh-clause-item--review .coh-clause-item__label { color: #D4974D; }
.coh-clause-item--ok .coh-clause-item__label { color: #4D9972; }

.coh-clause-item__type {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
}

.coh-clause-item__text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-dark-primary);
}

.coh-clause-item__note {
  font-size: 0.6875rem;
  color: var(--text-dark-muted);
  margin-top: 0.375rem;
}

.coh-pain {
  background-color: var(--bg-slate);
}

.coh-pain__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.coh-pain__metrics {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.coh-pain__metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coh-pain__metric-num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text-dark-primary);
}

.coh-pain__metric-num span {
  color: var(--accent-red);
}

.coh-pain__metric-label {
  font-size: 1rem;
  color: var(--text-dark-muted);
  font-weight: 500;
}

.coh-pain__divider {
  width: 40px;
  height: 2px;
  background-color: var(--border-dark);
}

.coh-pain__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.coh-pain__copy p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-dark-muted);
}

.coh-how {
  background-color: var(--bg-paper);
}

.coh-how__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coh-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.coh-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% - 1px);
  right: calc(33.33% - 1px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-light), var(--border-light));
  z-index: 0;
}

.coh-timeline__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.coh-timeline__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-paper);
}

.coh-timeline__num-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--accent-red);
  font-weight: 400;
}

.coh-timeline__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light-primary);
}

.coh-timeline__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}

.coh-capabilities {
  background-color: var(--bg-cream);
}

.coh-capabilities__head {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coh-cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.coh-cap-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coh-cap-item__name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-light-primary);
}

.coh-cap-item__excerpt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0.75rem;
}

.coh-cap-item__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-light-muted);
}

.coh-risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
  align-self: flex-start;
}

.coh-risk-badge--high {
  background-color: rgba(214,76,43,0.1);
  color: #C54022;
  border: 1px solid rgba(214,76,43,0.2);
}

.coh-risk-badge--review {
  background-color: rgba(192,122,47,0.1);
  color: #9B6223;
  border: 1px solid rgba(192,122,47,0.2);
}

.coh-risk-badge--ok {
  background-color: rgba(45,106,79,0.1);
  color: #2D6A4F;
  border: 1px solid rgba(45,106,79,0.2);
}

.coh-metrics {
  background-color: var(--bg-ink);
}

.coh-metrics__head {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.coh-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
}

.coh-metric-block {
  background-color: var(--bg-slate);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.coh-metric-block__num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--text-dark-primary);
  line-height: 1;
}

.coh-metric-block__num span {
  color: var(--accent-red);
}

.coh-metric-block__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark-primary);
}

.coh-metric-block__note {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.coh-testimonials {
  background-color: var(--bg-cream);
}

.coh-testimonials__head {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coh-testi-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.coh-testi-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent-red);
  border-radius: 0 8px 8px 0;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coh-testi-item__quote {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-light-primary);
}

.coh-testi-item__attr {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  font-weight: 500;
}

.coh-cta-section {
  background-color: var(--bg-ink);
  text-align: center;
}

.coh-cta-section .coh-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.coh-cta-section__h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-dark-primary);
  max-width: 600px;
}

.coh-cta-section__sub {
  font-size: 1.0625rem;
  color: var(--text-dark-muted);
  max-width: 480px;
}

.coh-cta-section__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.coh-footer {
  background-color: var(--bg-ink);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 2.5rem;
}

.coh-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
}

.coh-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coh-footer__logo img {
  height: 30px;
  width: auto;
}

.coh-footer__tagline {
  font-family: var(--font-head);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark-muted);
}

.coh-footer__contact {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-dark-muted);
}

.coh-footer__contact a {
  color: var(--text-dark-muted);
  transition: color 150ms var(--ease);
}

.coh-footer__contact a:hover {
  color: var(--accent-red);
}

.coh-footer__copyright {
  font-size: 0.8125rem;
  color: #6B6460;
  margin-top: auto;
}

.coh-footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coh-footer__col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}

.coh-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.coh-footer__link {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
  transition: color 150ms var(--ease);
}

.coh-footer__link:hover {
  color: var(--accent-red);
}

.coh-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.coh-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.coh-footer__bottom-link {
  font-size: 0.8125rem;
  color: #6B6460;
  transition: color 150ms var(--ease);
}

.coh-footer__bottom-link:hover {
  color: var(--accent-red);
}

.coh-footer__cookie-pref {
  font-size: 0.8125rem;
  color: #6B6460;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 150ms var(--ease);
  padding: 0;
}

.coh-footer__cookie-pref:hover {
  color: var(--accent-red);
}

.page-top-spacer {
  height: 64px;
}

.coh-subhero {
  padding: 6rem 0 5rem;
  background-color: var(--bg-ink);
}

.coh-subhero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coh-subhero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coh-subhero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark-primary);
}

.coh-subhero__sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-dark-muted);
}

.coh-subhero__ornament {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coh-subhero-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.coh-light-hero {
  padding: 5.5rem 0 4rem;
  background-color: var(--bg-paper);
}

.coh-light-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
}

.coh-light-hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-light-primary);
}

.coh-light-hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light-muted);
}

.coh-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.coh-two-col--center {
  align-items: center;
}

.coh-two-col__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coh-two-col__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--text-light-primary);
}

.coh-section--dark .coh-two-col__text h2,
.coh-section--dark-alt .coh-two-col__text h2 {
  color: var(--text-dark-primary);
}

.coh-two-col__text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light-muted);
}

.coh-section--dark .coh-two-col__text p,
.coh-section--dark-alt .coh-two-col__text p {
  color: var(--text-dark-muted);
}

.coh-mock-panel {
  background-color: var(--bg-slate);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.coh-mock-panel__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-dark);
}

.coh-mock-rule {
  padding: 0.875rem;
  border-radius: 5px;
  border: 1px solid var(--border-dark);
  margin-bottom: 0.625rem;
  background-color: rgba(255,255,255,0.02);
}

.coh-mock-rule:last-child {
  margin-bottom: 0;
}

.coh-mock-rule__type {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--accent-red);
  margin-bottom: 0.25rem;
}

.coh-mock-rule__text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dark-primary);
  line-height: 1.5;
}

.coh-mock-report {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.coh-mock-report__header {
  padding: 1rem 1.25rem;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
}

.coh-mock-report__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light-primary);
}

.coh-mock-report__sub {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  margin-top: 0.25rem;
}

.coh-mock-report__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coh-mock-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid var(--border-light);
}

.coh-mock-row__badge {
  flex-shrink: 0;
}

.coh-mock-row__content {
  flex: 1;
}

.coh-mock-row__clause {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-light-primary);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.coh-mock-row__rule {
  font-size: 0.6875rem;
  color: var(--text-light-muted);
}

.coh-pricing-hero {
  padding: 5.5rem 0 4rem;
  background-color: var(--bg-paper);
}

.coh-pricing-hero__inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coh-pricing-hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  color: var(--text-light-primary);
}

.coh-pricing-hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light-muted);
}

.coh-price-tiers {
  background-color: var(--bg-white);
}

.coh-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.coh-tier-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.coh-tier-card--featured {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 1px var(--accent-red);
}

.coh-tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.coh-tier-card__name {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

.coh-tier-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.coh-tier-card__amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-light-primary);
  line-height: 1;
}

.coh-tier-card__amount span {
  font-size: 1.25rem;
  vertical-align: super;
  line-height: 1;
}

.coh-tier-card__period {
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.coh-tier-card__desc {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

.coh-tier-card__cap {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light-primary);
  background-color: var(--bg-cream);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

.coh-tier-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.coh-tier-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-light-primary);
}

.coh-tier-card__feature-icon {
  color: var(--accent-green);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.coh-tier-card__cta {
  margin-top: auto;
}

.coh-tier-card__cta .coh-btn {
  width: 100%;
  justify-content: center;
}

.coh-enterprise-note {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.9375rem;
  color: var(--text-light-muted);
}

.coh-enterprise-note a {
  color: var(--accent-red);
  text-decoration: underline;
}

.coh-faq {
  background-color: var(--bg-cream);
}

.coh-faq__head {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-white);
  max-width: 840px;
}

.coh-faq-item {
  border-bottom: 1px solid var(--border-light);
}

.coh-faq-item:last-child {
  border-bottom: none;
}

.coh-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light-primary);
  transition: color 150ms var(--ease);
}

.coh-faq-item__q:hover {
  color: var(--accent-red);
}

.coh-faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--text-light-muted);
  transition: transform 250ms var(--ease), color 150ms var(--ease);
}

.coh-faq-item__q:hover .coh-faq-item__icon {
  color: var(--accent-red);
}

.coh-faq-item--open .coh-faq-item__icon {
  transform: rotate(45deg);
  color: var(--accent-red);
}

.coh-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease);
}

.coh-faq-item--open .coh-faq-item__a {
  max-height: 200px;
}

.coh-faq-item__a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}

.coh-about-story {
  background-color: var(--bg-cream);
}

.coh-about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.coh-about-story__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coh-about-story__copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--text-light-primary);
}

.coh-about-story__copy p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-light-muted);
}

.coh-portrait-wrap {
  position: relative;
}

.coh-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  height: auto;
}

.coh-portrait-caption {
  margin-top: 0.875rem;
}

.coh-portrait-caption__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light-primary);
}

.coh-portrait-caption__title {
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.coh-values {
  background-color: var(--bg-paper);
}

.coh-values__head {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coh-values-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 680px;
}

.coh-value-item {
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-red);
}

.coh-value-item__title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light-primary);
  margin-bottom: 0.5rem;
}

.coh-value-item__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}

.coh-contact-section {
  background-color: var(--bg-paper);
}

.coh-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.coh-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.coh-contact-info__h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--text-light-primary);
}

.coh-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.coh-contact-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1rem;
  color: var(--text-light-primary);
}

.coh-contact-detail__icon {
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 18px;
}

.coh-contact-detail__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 0.125rem;
}

.coh-contact-detail__val {
  font-size: 1rem;
  color: var(--text-light-primary);
  line-height: 1.6;
}

.coh-contact-detail__val a {
  color: var(--accent-red);
}

.coh-contact-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2.5rem;
}

.coh-contact-card__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light-primary);
  margin-bottom: 1.75rem;
}

.coh-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coh-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.coh-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light-primary);
}

.coh-field input,
.coh-field select,
.coh-field textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-light-primary);
  background-color: var(--bg-paper);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: border-color 150ms var(--ease);
  outline: none;
}

.coh-field input:focus,
.coh-field select:focus,
.coh-field textarea:focus {
  border-color: var(--accent-red);
}

.coh-field textarea {
  resize: vertical;
  min-height: 120px;
}

.coh-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6460' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.coh-form__submit {
  margin-top: 0.5rem;
}

.coh-blog-hero {
  padding: 5.5rem 0 4rem;
  background-color: var(--bg-paper);
}

.coh-blog-hero__inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coh-blog-hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  color: var(--text-light-primary);
}

.coh-blog-hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-light-muted);
}

.coh-blog-list-section {
  background-color: var(--bg-cream);
}

.coh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.coh-blog-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 250ms var(--ease);
}

.coh-blog-card:hover {
  box-shadow: 0 8px 32px rgba(28,25,23,0.12);
}

.coh-blog-card__cover-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.coh-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 300ms var(--ease);
}

.coh-blog-card:hover .coh-blog-card__cover {
  transform: scale(1.03);
}

.coh-blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.coh-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.coh-blog-card__cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.coh-blog-card__date {
  font-size: 0.8125rem;
  color: var(--text-light-subtle);
}

.coh-blog-card__title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-light-primary);
}

.coh-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.coh-blog-card:hover .coh-blog-card__title {
  color: var(--accent-red);
}

.coh-blog-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-light-muted);
  flex: 1;
}

.coh-blog-card__read {
  font-size: 0.8125rem;
  color: var(--text-light-subtle);
  font-weight: 500;
}

.coh-article-hero {
  padding: 5.5rem 0 4rem;
  background-color: var(--bg-paper);
}

.coh-article-hero__inner {
  max-width: 840px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coh-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.coh-article-hero__cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.coh-article-hero__date {
  font-size: 0.875rem;
  color: var(--text-light-subtle);
}

.coh-article-hero__read {
  font-size: 0.875rem;
  color: var(--text-light-subtle);
}

.coh-article-hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-light-primary);
}

.coh-article-hero__cover {
  width: 100%;
  max-width: 840px;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.coh-article-body-section {
  background-color: var(--bg-white);
}

.coh-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.coh-blog-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem clamp(1rem, 4vw, 2rem);
}

.coh-blog-content h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-light-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.coh-blog-content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light-primary);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.coh-blog-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-light-primary);
  margin-bottom: 1.25rem;
}

.coh-blog-content ul,
.coh-blog-content ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.coh-blog-content ul { list-style: disc; }
.coh-blog-content ol { list-style: decimal; }

.coh-blog-content li {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light-primary);
  margin-bottom: 0.5rem;
}

.coh-blog-content blockquote {
  border-left: 3px solid var(--accent-red);
  margin: 1.75rem 0;
  padding: 0.75rem 1.5rem;
  background-color: var(--bg-cream);
  border-radius: 0 4px 4px 0;
}

.coh-blog-content blockquote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-light-primary);
  margin: 0;
}

.coh-blog-content pre {
  background-color: var(--bg-ink);
  border-radius: 6px;
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.coh-blog-content code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-dark-primary);
  background-color: var(--bg-cream);
  padding: 0.15em 0.4em;
  border-radius: 3px;
}

.coh-blog-content pre code {
  background: none;
  padding: 0;
  color: var(--text-dark-primary);
  font-size: 0.875rem;
}

.coh-blog-content img {
  max-width: 100%;
  border-radius: 6px;
  margin: 1.5rem auto;
  height: auto;
}

.coh-related {
  background-color: var(--bg-cream);
}

.coh-related__head {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coh-related__h2 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-light-primary);
}

.coh-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.coh-legal-layout {
  background-color: var(--bg-white);
}

.coh-prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.coh-prose .legal-article {
  background-color: var(--bg-white);
  color: var(--text-light-primary);
}

.coh-prose .legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.coh-prose .legal-header h1 {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-light-primary);
  margin-bottom: 0.5rem;
}

.coh-prose .legal-meta {
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.coh-prose section {
  margin-bottom: 2rem;
}

.coh-prose h2 {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text-light-primary);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.coh-prose h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-light-primary);
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

.coh-prose p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light-primary);
  margin-bottom: 0.875rem;
}

.coh-prose ul,
.coh-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.coh-prose ul { list-style: disc; }
.coh-prose ol { list-style: decimal; }

.coh-prose li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light-primary);
  margin-bottom: 0.375rem;
}

.coh-prose a {
  color: var(--accent-red);
  text-decoration: underline;
}

.coh-prose address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light-primary);
}

.coh-prose strong {
  font-weight: 600;
  color: var(--text-light-primary);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9375rem;
}

.legal-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background-color: var(--bg-cream);
  color: var(--text-light-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--border-light);
}

.legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light-primary);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.coh-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-ink);
  padding: 2rem;
}

.coh-auth-card {
  width: 100%;
  max-width: 440px;
  background-color: var(--bg-slate);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.coh-auth-card__logo {
  display: flex;
  justify-content: center;
}

.coh-auth-card__logo img {
  height: 32px;
  width: auto;
}

.coh-auth-card__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coh-auth-card__h1 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-dark-primary);
}

.coh-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--text-dark-muted);
}

.coh-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coh-auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.coh-auth-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark-primary);
}

.coh-auth-field input {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark-primary);
  background-color: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: border-color 150ms var(--ease);
  outline: none;
}

.coh-auth-field input::placeholder {
  color: var(--text-dark-muted);
}

.coh-auth-field input:focus {
  border-color: var(--accent-red);
}

.coh-auth-card__submit .coh-btn {
  width: 100%;
  justify-content: center;
}

.coh-auth-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.coh-auth-card__links a {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  transition: color 150ms var(--ease);
}

.coh-auth-card__links .coh-auth-note {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
}

.coh-auth-card__links a:hover {
  color: var(--accent-red);
}

.coh-auth-card__links .coh-auth-link-primary {
  color: var(--accent-red);
}

.coh-auth-card__links .coh-auth-link-primary:hover {
  color: var(--accent-red-dark);
}

.coh-auth-card__legal {
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dark);
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
}

.coh-auth-card__legal a {
  color: var(--text-dark-muted);
  text-decoration: underline;
}

.coh-auth-card__legal a:hover {
  color: var(--accent-red);
}

.coh-auth-card__reassurance {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.coh-auth-card__reassurance i {
  color: var(--accent-green);
  font-size: 0.8125rem;
}

.coh-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  background-color: var(--bg-paper);
}

.coh-404__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.coh-404__num {
  font-family: var(--font-head);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 400;
  color: var(--border-light);
  line-height: 1;
}

.coh-404__h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--text-light-primary);
}

.coh-404__sub {
  font-size: 1.0625rem;
  color: var(--text-light-muted);
  max-width: 440px;
  line-height: 1.65;
}

.coh-404__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.coh-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

.coh-fade-in.coh-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--bg-ink);
  border-top: 1px solid var(--border-dark);
  padding: 1rem 0;
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--accent-red);
  text-decoration: underline;
}

.cookie-banner__actions {
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark-primary);
  background-color: transparent;
  border: 1.5px solid var(--border-dark);
  border-radius: 4px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: border-color 150ms var(--ease), color 150ms var(--ease);
  white-space: nowrap;
}

.cookie-banner__btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

@media (max-width: 1024px) {
  .coh-hero__inner {
    gap: 2.5rem;
  }

  .coh-tier-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .coh-tier-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .coh-section {
    padding: 3.5rem 0;
  }

  .coh-nav__links,
  .coh-nav__actions {
    display: none;
  }

  .coh-nav__hamburger {
    display: flex;
  }

  .coh-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .coh-hero__h1 {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }

  .coh-hero__sub {
    max-width: none;
  }

  .coh-pain__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .coh-how__head {
    margin-bottom: 2.5rem;
  }

  .coh-timeline {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .coh-timeline::before {
    display: none;
  }

  .coh-cap-grid {
    grid-template-columns: 1fr;
  }

  .coh-metrics__grid {
    grid-template-columns: 1fr;
  }

  .coh-testi-list {
    gap: 1rem;
  }

  .coh-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .coh-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .coh-subhero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .coh-subhero__ornament {
    display: none;
  }

  .coh-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .coh-about-story__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .coh-contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .coh-tier-grid {
    grid-template-columns: 1fr;
  }

  .coh-blog-grid {
    grid-template-columns: 1fr;
  }

  .coh-related-grid {
    grid-template-columns: 1fr;
  }

  .coh-auth-card {
    padding: 2rem 1.5rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .coh-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 480px) {
  .coh-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .coh-cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .coh-cta-section__actions .coh-btn {
    justify-content: center;
  }
}

.coh-about-scene-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 8px;
  margin-top: 3rem;
  display: block;
}

.coh-light-cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.coh-light-cta-block__h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-light-primary);
  max-width: 600px;
}

.coh-light-cta-block__sub {
  font-size: 1.0625rem;
  color: var(--text-light-muted);
  max-width: 480px;
  line-height: 1.65;
}

.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;
}
