/* ClarityComply design system — shared across all pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #FAFAF8;
  --off-white: #F2F1EE;
  --rule: #E0DFDA;
  --muted: #9B9890;
  --muted-light: #C8C7C2;
  --ink: #1A1916;
  --ink-light: #3D3C39;
  --ink-mid: #5C5B57;
  --accent: #1B4FD8;
  --accent-light: #EEF2FD;
  --accent-dim: rgba(27,79,216,0.06);
  --accent-border: rgba(27,79,216,0.2);
  --green: #0E7A5F;
  --green-light: #E8F4F0;
  --green-border: rgba(14,122,95,0.2);
  --red: #C0392B;
  --dark: #13120F;
  --dark-rule: rgba(255,255,255,0.07);
  --nav-h: 60px;
  --container-max: 1280px;
}

/* Boxed content container — all copy/content at 1280px; sections keep full-width background */
.home-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  background: var(--white);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: clip;
}

/* Nav (shared) */
nav.cc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  display: flex; justify-content: center;
  padding: 0;
  height: var(--nav-h);
}
nav.cc-nav .cc-nav-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
nav.cc-nav .nav-logo {
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
nav.cc-nav .nav-logo-image {
  width: 300px;
  height: auto;
  display: block;
  vertical-align: top;
}
nav.cc-nav .nav-links { display: flex; gap: 40px; list-style: none; }
nav.cc-nav .nav-links > li { position: relative; }
nav.cc-nav .nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
nav.cc-nav .nav-links a::after {
  content: '→';
  transition: transform 0.2s;
}
nav.cc-nav .nav-links a:hover {
  color: var(--ink);
}
nav.cc-nav .nav-links a:hover::after {
  transform: translateX(4px);
}
nav.cc-nav .nav-links a.active {
  color: var(--accent);
  font-weight: 500;
}
nav.cc-nav .nav-links a.active::after {
  transform: translateX(4px);
}
nav.cc-nav .nav-caret {
  font-size: 10px;
  color: var(--muted);
  margin-left: 4px;
}
nav.cc-nav .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: rgba(250,250,248,0.98);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 24px rgba(26,25,22,0.08);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 210;
}
nav.cc-nav .nav-dropdown:hover .nav-dropdown-menu,
nav.cc-nav .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
nav.cc-nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--ink-light);
  white-space: nowrap;
}
nav.cc-nav .nav-dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--ink);
}
nav.cc-nav .nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--ink);
  padding: 8px 20px; border: none; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
}
nav.cc-nav .nav-cta:hover { background: var(--accent); }

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

/* Access code gates — manufacturer (/ifu-certification), live scenario (/live-scenario, /live-scenario-iuss) */
.manufacturer-gate,
.live-scenario-gate {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--white);
}
.manufacturer-gate-inner,
.live-scenario-gate-inner {
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.manufacturer-gate-title,
.live-scenario-gate-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.manufacturer-gate-desc,
.live-scenario-gate-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  margin: 0 0 28px;
  line-height: 1.65;
}
.manufacturer-gate-form,
.live-scenario-gate-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  text-align: left;
}
.manufacturer-gate-input,
.live-scenario-gate-input {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 18px;
  border: 1px solid var(--rule);
  border-radius: 0;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.manufacturer-gate-input::placeholder,
.live-scenario-gate-input::placeholder {
  color: var(--muted);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.manufacturer-gate-input:hover,
.live-scenario-gate-input:hover {
  border-color: var(--muted-light);
}
.manufacturer-gate-input:focus,
.live-scenario-gate-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.manufacturer-gate-submit,
.live-scenario-gate-submit {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border: none;
  padding: 16px 28px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.manufacturer-gate-submit:hover,
.live-scenario-gate-submit:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.manufacturer-gate-submit:focus-visible,
.live-scenario-gate-submit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.manufacturer-gate-error,
.live-scenario-gate-error {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--red);
  text-align: center;
}

/* Footer (shared) */
footer.cc-footer {
  border-top: 1px solid var(--rule);
  padding: 32px 0;
  display: flex; justify-content: center;
  background: var(--off-white);
}
footer.cc-footer .cc-footer-inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
footer.cc-footer .footer-logo {
  font-family: 'DM Mono', monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--ink);
}
footer.cc-footer .footer-logo span { color: var(--accent); }
footer.cc-footer .footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: 0.06em;
}
footer.cc-footer .footer-links { display: flex; gap: 32px; list-style: none; }
footer.cc-footer .footer-links a {
  font-size: 12px; font-weight: 300;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
footer.cc-footer .footer-links a:hover { color: var(--ink); }

/* ═══ Enterprise footer (site-footer) ═══ */
.site-footer {
  background: #1A1916;
  color: #FAFAF8;
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 22px 22px;
}
.site-footer::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, #1B4FD8 0%, #7B9FEA 55%, transparent 100%);
}
.site-footer .cc-footer-inner {
  position: relative; z-index: 1;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  box-sizing: border-box;
}

.footer-cta-band {
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.footer-cta-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.footer-cta-eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 1px;
  background: rgba(255,255,255,0.15);
}
.footer-cta-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400; line-height: 1.15;
  color: rgba(255,255,255,0.88);
}
.footer-cta-headline em { font-style: italic; color: #7B9FEA; }
.footer-cta-actions {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.footer-btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #FAFAF8; background: #1B4FD8;
  padding: 13px 26px; text-decoration: none;
  white-space: nowrap; display: inline-block;
  transition: background 0.2s;
}
.footer-btn-primary:hover { background: #7B9FEA; }
.footer-btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  text-decoration: none; padding: 13px 26px;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap; display: inline-block;
  transition: all 0.2s;
}
.footer-btn-ghost:hover {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.22);
}

.footer-main {
  display: grid;
  grid-template-columns: 240px repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  padding: 48px 40px 48px 0;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo-link {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}
.footer-brand-logo-link:focus-visible {
  outline: 2px solid rgba(123, 159, 234, 0.85);
  outline-offset: 4px;
  border-radius: 2px;
}
.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-mark { flex-shrink: 0; }
.footer-wordmark {
  font-family: 'DM Mono', monospace;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72);
  display: inline-block;
}
.footer-wordmark span { color: #7B9FEA; }
.footer-brand-desc {
  font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,0.27); line-height: 1.75;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer-social-link:hover {
  color: #7B9FEA;
}
.footer-social-icon {
  width: 20px;
  height: 20px;
}
.footer-contact-stack { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.fci-icon {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: #7B9FEA; opacity: 0.55;
  flex-shrink: 0; width: 14px; margin-top: 1px;
}
.fci-text {
  font-size: 11.5px; font-weight: 300;
  color: rgba(255,255,255,0.28); line-height: 1.55;
}
.fci-text a {
  color: rgba(255,255,255,0.36); text-decoration: none;
  transition: color 0.18s;
}
.fci-text a:hover { color: rgba(255,255,255,0.7); }

.footer-nav-col {
  padding: 48px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.footer-nav-col:last-child { border-right: none; padding-right: 0; }
.footer-col-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  display: flex; align-items: center; gap: 8px;
}
.footer-col-label::before {
  content: '';
  display: inline-block;
  width: 12px; height: 1px;
  background: #1B4FD8; opacity: 0.6; flex-shrink: 0;
}
.footer-nav-links { list-style: none; }
.footer-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.footer-nav-links li:last-child { border-bottom: none; }
.footer-nav-links a {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none; line-height: 1.4;
  transition: color 0.15s;
}
.footer-nav-links a:hover { color: rgba(255,255,255,0.82); }
.link-badge {
  font-family: 'DM Mono', monospace;
  font-size: 7px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 7px; flex-shrink: 0;
  color: #7B9FEA;
  border: 1px solid rgba(123,159,234,0.28);
}
.link-badge.gn { color: #0E7A5F; border-color: rgba(14,122,95,0.32); }
.link-badge.new { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.15); }

.footer-trust {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-cell {
  padding: 20px 22px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 12px;
  transition: background 0.18s;
}
.trust-cell:last-child { border-right: none; }
.trust-cell:first-child { padding-left: 0; }
.trust-cell:hover { background: rgba(255,255,255,0.02); }
.trust-icon-wrap {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon-svg {
  width: 14px; height: 14px;
  color: rgba(255,255,255,0.3);
}
.trust-cell-title {
  font-family: 'DM Mono', monospace;
  font-size: 8px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 2px;
}
.trust-cell-sub {
  font-size: 10.5px; font-weight: 300;
  color: rgba(255,255,255,0.2); line-height: 1.4;
}

.footer-legal {
  padding: 18px 0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.footer-legal-left {
  display: flex; align-items: center; gap: 1px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px; color: rgba(255,255,255,0.16);
  letter-spacing: 0.06em;
  padding-right: 16px;
  margin-right: 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.site-footer .footer-copy { margin-bottom: 0; }
.footer-legal-links { display: flex; gap: 0; list-style: none; flex-wrap: wrap; align-items: center; }
.footer-legal-links li { display: flex; align-items: center; }
.footer-legal-links a {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px; color: rgba(255,255,255,0.2);
  text-decoration: none; letter-spacing: 0.05em;
  padding: 0 14px; transition: color 0.15s;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.footer-legal-links li:last-child a { border-right: none; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.5); }
.footer-location {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px; color: rgba(255,255,255,0.12);
  letter-spacing: 0.06em; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}
.footer-location a {
  color: rgba(255,255,255,0.12);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-location a:hover {
  color: #7B9FEA;
}
.footer-location::before {
  content: '';
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: #1B4FD8; opacity: 0.5;
}

/* ═══ Page header (dedicated layout from about) ═══ */
.page-header {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  padding-top: 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.header-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.header-accent-blob {
  position: absolute;
  right: 0;
  top: 60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse at 80% 20%, rgba(27,79,216,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.header-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: end;
  box-sizing: border-box;
}
.header-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.header-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.header-h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  color: #FAFAF8;
  letter-spacing: -0.01em;
}
.header-h1 em { font-style: italic; color: #7B9FEA; }
.header-right {
  padding-bottom: 8px;
}
.header-right-label {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 16px;
}
.header-right-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}
.header-band {
  margin-top: 56px;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
/* Reserve band height without stat columns or vertical rules (e.g. Contact) */
.page-header .header-band--empty {
  display: block;
  min-height: 104px;
  padding: 0;
  border-right: none;
  grid-template-columns: none;
}
.page-header .band-item {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.page-header .band-item:last-child { border-right: none; }
.page-header .band-num {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: #FAFAF8;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 3px;
}
.page-header .band-num em { font-style: italic; color: #7B9FEA; font-size: 22px; }
.page-header .band-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.header-ac-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #7B9FEA 60%, transparent 100%);
}
.page-header--gray .header-ac-line {
  background: linear-gradient(90deg, var(--accent) 0%, #7B9FEA 60%, #ebeae6 100%);
}

/* Page header — gray variant (same structure as About hero; tone matches sidebar / --off-white) */
.page-header--gray {
  background: linear-gradient(180deg, #f6f5f2 0%, var(--off-white) 48%, #ebeae6 100%);
}
.page-header--gray .header-dot-grid {
  background-image: radial-gradient(circle, rgba(26, 25, 22, 0.07) 1px, transparent 1px);
}
.page-header--gray .header-accent-blob {
  background: radial-gradient(ellipse at 80% 20%, rgba(27, 79, 216, 0.1) 0%, transparent 65%);
}
.page-header--gray .header-eyebrow {
  color: var(--muted);
}
.page-header--gray .header-eyebrow::before {
  background: var(--rule);
}
.page-header--gray .header-h1 {
  color: var(--ink);
}
.page-header--gray .header-h1 em {
  color: var(--accent);
}
.page-header--gray .header-right-label {
  color: var(--muted);
}
.page-header--gray .header-right-text {
  color: var(--ink-mid);
}
.page-header--gray .header-band {
  border-top: 1px solid rgba(26, 25, 22, 0.1);
}
.page-header--gray .header-band--empty {
  border-top: 1px solid rgba(26, 25, 22, 0.1);
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr; padding: 56px 24px 0; gap: 32px; }
  .header-band { max-width: none; grid-template-columns: 1fr 1fr; }
  .header-right { display: none; }
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 40px 32px 40px 0;
  }
  .footer-nav-col { padding: 36px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .footer-nav-col:last-child { padding-right: 0; }
  .footer-cta-band { padding: 36px 0; }
  .footer-trust { grid-template-columns: repeat(3, 1fr); }
  .trust-cell:nth-child(3) { border-right: none; }
  .footer-legal { padding: 16px 0; }
  .site-footer .cc-footer-inner { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 700px) {
  .footer-cta-band { flex-direction: column; grid-template-columns: 1fr; align-items: stretch; }
  .footer-cta-actions { flex-direction: column; }
  .footer-btn-primary, .footer-btn-ghost { text-align: center; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; padding: 40px 24px 40px 0; }
  .footer-trust { grid-template-columns: 1fr 1fr; }
  .trust-cell:nth-child(2n) { border-right: none; }
  .trust-cell:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); }
  .footer-legal { flex-direction: column; align-items: flex-start; padding: 20px 0; gap: 12px; }
  .footer-legal-left { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-copy { border-right: none; padding-right: 0; margin-right: 0; }
  .footer-location { flex-shrink: 0; }
  .footer-cta-band { padding: 28px 0; }
  .site-footer .cc-footer-inner { padding-left: 24px; padding-right: 24px; }
}

/* Shared page hero — reusable for how-it-works-style pages */
.page-hero {
  padding-top: 58px;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 48px 48px;
  max-width: 800px;
}
.page-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.5s 0.1s forwards;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--muted);
}
.page-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}
.page-title em { font-style: italic; color: var(--accent); }
.page-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.6s 0.3s forwards;
}

/* Homepage: hero, proof bar, section, how-section, components, pricing, cta */
.hero { min-height: 100vh; padding-top: var(--nav-h); display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
.hero-left { padding: 80px 48px; padding-left: max(48px, calc((100vw - var(--container-max) - 96px) / 2 + 48px)); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--rule); }
.hero-eyebrow { font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 12px; margin-bottom: 36px; opacity: 0; animation: fadeUp 0.6s 0.1s forwards; }
.hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--muted); }
.hero-headline { font-family: 'Instrument Serif', serif; font-size: clamp(42px, 5vw, 68px); line-height: 1.08; font-weight: 400; color: var(--ink); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.7s 0.2s forwards; }
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 16px; font-weight: 300; color: var(--ink-light); line-height: 1.75; max-width: 420px; margin-bottom: 48px; opacity: 0; animation: fadeUp 0.7s 0.35s forwards; }
.hero-actions { display: flex; align-items: center; gap: 24px; opacity: 0; animation: fadeUp 0.7s 0.45s forwards; }
.btn-primary { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); background: var(--accent); padding: 14px 28px; border: none; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn-ghost { font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.btn-ghost:hover { color: var(--ink); }
.btn-ghost::after { content: '→'; }
.hero-right { background: var(--off-white); display: flex; align-items: center; justify-content: center; padding: 80px 48px 80px 23%; position: relative; overflow: hidden; min-width: 0; }
.hero-right::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(var(--rule) 1px, transparent 1px), linear-gradient(90deg, var(--rule) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.5; }
.demo-card { position: relative; z-index: 1; background: var(--white); border: 1px solid var(--rule); width: 100%; max-width: 400px; box-shadow: 0 4px 40px rgba(26,25,22,0.07); opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.demo-card-header { padding: 16px 20px; border-bottom: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; }
.demo-card-title { font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.demo-status { font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); background: var(--green-light); padding: 3px 8px; display: flex; align-items: center; gap: 5px; }
.demo-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); display: block; animation: pulse 2s infinite; }
.demo-status--complete { color: var(--green); background: var(--green-light); }
.demo-status--complete::before { animation: none; opacity: 1; }
.demo-scenario { padding: 20px; border-bottom: 1px solid var(--rule); background: #FFFDF5; }
.demo-scenario-label { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.demo-scenario-text { font-size: 14px; font-weight: 400; color: var(--ink); line-height: 1.5; }
.demo-steps { padding: 20px; display: flex; flex-direction: column; gap: 0; }
.demo-step { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--rule); opacity: 0; }
.demo-step:last-child { border-bottom: none; }
.demo-step-num { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 0.08em; min-width: 18px; margin-top: 2px; }
.demo-step-content { flex: 1; }
.demo-step-label { font-size: 12px; font-weight: 400; color: var(--ink-light); line-height: 1.4; }
.demo-step-status { font-family: 'DM Mono', monospace; font-size: 9px; margin-top: 3px; }
.status-done { color: var(--green); }
.status-active { color: var(--accent); }
.status-pending { color: var(--muted); }
.demo-question { margin: 0; padding: 20px; border-top: 1px solid var(--rule); background: var(--accent-light); }
.demo-q-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.demo-q-label { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0; }
.demo-q-complete-pill {
  font-family: 'DM Mono', monospace; font-size: 8px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); background: var(--white); border: 1px solid rgba(14, 122, 95, 0.25);
  padding: 4px 10px; flex-shrink: 0;
}
.demo-q-text { font-size: 13px; font-weight: 400; color: var(--ink); margin-bottom: 12px; line-height: 1.45; }
.demo-q-recorded {
  display: flex; flex-direction: column; gap: 6px; padding: 12px 14px;
  background: var(--white); border: 1px solid var(--rule); border-left: 3px solid var(--green);
}
.demo-q-recorded-label {
  font-family: 'DM Mono', monospace; font-size: 8px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.demo-q-recorded-answer { font-size: 12.5px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.demo-q-recorded-cite { font-size: 11px; font-weight: 300; color: var(--ink-mid); line-height: 1.5; }
.demo-q-options { display: flex; flex-direction: column; gap: 6px; }
.demo-q-opt { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 300; padding: 8px 12px; border: 1px solid var(--rule); background: var(--white); cursor: pointer; transition: border-color 0.15s, background 0.15s; text-align: left; color: var(--ink-light); }
.demo-q-opt:hover { border-color: var(--accent); color: var(--accent); }

.proof-bar { width: 100%; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 20px 0; display: flex; justify-content: center; background: var(--off-white); }
.proof-bar .home-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; overflow-x: auto; }
.proof-item { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.proof-num { font-family: 'Instrument Serif', serif; font-size: 28px; font-weight: 400; color: var(--ink); line-height: 1; }
.proof-label { font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; white-space: nowrap; }
.proof-divider { width: 1px; height: 32px; background: var(--rule); flex-shrink: 0; }

.section { width: 100%; padding: 100px 0; background: var(--white); }
.section .home-container { padding-left: 48px; padding-right: 48px; }
.section-eyebrow { font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--muted); }
.section-headline { font-family: 'Instrument Serif', serif; font-size: clamp(32px, 3.5vw, 48px); line-height: 1.12; font-weight: 400; color: var(--ink); max-width: 600px; margin-bottom: 20px; }
.section-headline em { font-style: italic; color: var(--accent); }
.section-sub { font-size: 16px; font-weight: 300; color: var(--ink-light); line-height: 1.75; max-width: 480px; margin-bottom: 60px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--rule); }
.problem-item { padding: 32px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); transition: background 0.2s; }
.problem-item:hover { background: var(--off-white); }
.problem-item:nth-child(3n) { border-right: none; }
.problem-item:nth-last-child(-n+3) { border-bottom: none; }
.problem-icon { margin-bottom: 16px; opacity: 0.85; display: flex; align-items: center; }
.problem-icon svg { width: 28px; height: 28px; color: var(--accent); }
.problem-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.problem-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* Dark problem section (home) */
.section-problem-dark { width: 100%; padding: 100px 0; background: var(--ink); color: var(--white); }
.section-problem-dark .home-container { padding-left: 48px; padding-right: 48px; }
.section-problem-dark .section-eyebrow { color: rgba(255,255,255,0.3); }
.section-problem-dark .section-eyebrow::before { background: rgba(255,255,255,0.2); }
.section-problem-dark .section-headline { color: var(--white); max-width: 640px; font-size: clamp(32px, 3.5vw, 52px); line-height: 1.1; }
.section-problem-dark .section-headline em { font-style: italic; color: #7B9FEA; }
.section-problem-dark .section-sub { color: rgba(255,255,255,0.5); max-width: 520px; margin-bottom: 64px; }
.problem-grid-dark { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,0.08); }
.problem-item-dark { padding: 36px 32px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.problem-item-dark:nth-child(3n) { border-right: none; }
.problem-item-dark:nth-last-child(-n+3) { border-bottom: none; }
.problem-num-dark { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: #7B9FEA; margin-bottom: 16px; }
.problem-title-dark { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.88); margin-bottom: 10px; }
.problem-desc-dark { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.7; }

/* Pilot CTA (home) — right column box */
.pilot-included-box { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--rule); }
.pilot-included-top { padding: 32px; border-bottom: 1px solid var(--rule); }
.pilot-included-lbl { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.pilot-included-list { display: flex; flex-direction: column; gap: 10px; }
.pilot-included-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 300; color: var(--ink-light); }
.pilot-included-item span { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--green); }
.pilot-included-bottom { padding: 32px; background: var(--off-white); }
.pilot-included-bottom .btn-primary { display: block; text-align: center; margin-bottom: 14px; }
.pilot-included-note { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-align: center; }

.how-section { width: 100%; padding: 100px 0; background: var(--ink); color: var(--white); }
.how-section .home-container { padding-left: 48px; padding-right: 48px; }
.how-section .section-eyebrow { color: rgba(255,255,255,0.35); }
.how-section .section-eyebrow::before { background: rgba(255,255,255,0.2); }
.how-section .section-headline { color: var(--white); }
.how-section .section-headline em { color: #7B9FEA; }
.how-section .section-sub { color: rgba(255,255,255,0.5); }
.steps-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.08); }
.step-item { padding: 36px 28px; border-right: 1px solid rgba(255,255,255,0.08); position: relative; }
.step-item:last-child { border-right: none; }
.step-num { font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 400; letter-spacing: 0.14em; color: rgba(255,255,255,0.25); margin-bottom: 24px; }
.step-title { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.9); line-height: 1.5; margin-bottom: 10px; }
.step-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.7; }
.step-arrow { position: absolute; top: 36px; right: -12px; font-size: 10px; color: rgba(255,255,255,0.2); z-index: 1; }

.components-section { width: 100%; padding: 100px 0; border-top: 1px solid var(--rule); background: var(--white); }
.components-section .home-container { padding-left: 48px; padding-right: 48px; }
.components-header { padding: 0 0 60px; }
.components-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--rule); }
.component-item { padding: 48px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); transition: background 0.2s; }
.component-item:nth-child(2n) { border-right: none; }
.component-item:nth-last-child(-n+2) { border-bottom: none; }
.component-item:hover { background: var(--accent-light); }
.component-tag { font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: block; }
.component-title { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.component-desc { font-size: 14px; font-weight: 300; color: var(--ink-light); line-height: 1.7; margin-bottom: 20px; }
.component-examples { display: flex; flex-wrap: wrap; gap: 6px; }
.component-tag-pill { font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 400; letter-spacing: 0.08em; color: var(--muted); background: var(--off-white); border: 1px solid var(--rule); padding: 4px 10px; }

.pricing-section { width: 100%; padding: 100px 0; background: var(--off-white); border-top: 1px solid var(--rule); }
.pricing-section .home-container { padding-left: 48px; padding-right: 48px; }
.pricing-card { border: 1px solid var(--rule); background: var(--white); max-width: 700px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.pricing-left { padding: 48px; border-right: 1px solid var(--rule); }
.pricing-right { padding: 48px; display: flex; flex-direction: column; justify-content: space-between; }
.price-range { font-family: 'Instrument Serif', serif; font-size: 40px; font-weight: 400; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.price-unit { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.1em; }
.pricing-title { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; margin-top: 32px; }
.pricing-sub { font-size: 13px; font-weight: 300; color: var(--ink-light); line-height: 1.7; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 300; color: var(--ink-light); }
.pricing-feature::before { content: '✓'; color: var(--green); font-weight: 500; flex-shrink: 0; margin-top: 1px; font-family: 'DM Mono', monospace; font-size: 11px; }

.cta-section { width: 100%; padding: 120px 0; border-top: 1px solid var(--rule); background: var(--white); }
.cta-section .home-container { padding-left: 48px; padding-right: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-quote { font-family: 'Instrument Serif', serif; font-size: clamp(28px, 3vw, 42px); font-style: italic; line-height: 1.25; color: var(--ink); }
.cta-quote-mark { font-size: 80px; line-height: 0.5; color: var(--rule); font-family: 'Instrument Serif', serif; display: block; margin-bottom: 16px; }
.cta-right p { font-size: 15px; font-weight: 300; color: var(--ink-light); line-height: 1.8; margin-bottom: 36px; }
.cta-note { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.08em; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.demo-step:nth-child(1) { animation: fadeUp 0.5s 0.7s forwards; }
.demo-step:nth-child(2) { animation: fadeUp 0.5s 0.85s forwards; }
.demo-step:nth-child(3) { animation: fadeUp 0.5s 1.0s forwards; }
.demo-step:nth-child(4) { animation: fadeUp 0.5s 1.15s forwards; }
.demo-step:nth-child(5) { animation: fadeUp 0.5s 1.3s forwards; }

/* Contact page */
.cc-contact-shell { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: var(--nav-h) 48px 80px; min-height: calc(100vh - var(--nav-h)); display: grid; grid-template-columns: 360px minmax(0, 1fr); align-items: start; }
.cc-contact-left { grid-row: 1 / 2; border-right: 1px solid var(--rule); display: flex; flex-direction: column; background: var(--white); position: relative; }
.cc-contact-left-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--rule) 1px, transparent 1px), linear-gradient(90deg, var(--rule) 1px, transparent 1px); background-size: 36px 36px; opacity: 0.3; pointer-events: none; }
.cc-contact-left-inner { position: relative; z-index: 1; padding: 40px 32px 28px; display: flex; flex-direction: column; height: 100%; min-height: 100%; }
.cc-contact-eyebrow { font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.cc-contact-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--muted); }
.cc-contact-headline { font-family: 'Instrument Serif', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.08; color: var(--ink); margin-bottom: 12px; }
.cc-contact-headline em { font-style: italic; color: var(--accent); }
.cc-contact-sub { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 1.75; margin-bottom: 24px; }
.cc-contact-opts { display: flex; flex-direction: column; border: 1px solid var(--rule); margin-bottom: 24px; }
.cc-contact-opt { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--rule); cursor: pointer; transition: background 0.15s; background: var(--white); }
.cc-contact-opt:last-child { border-bottom: none; }
.cc-contact-opt:hover { background: var(--off-white); }
.cc-contact-opt.active { background: var(--accent-dim); }
.cc-contact-opt-icon { width: 26px; height: 26px; flex-shrink: 0; border: 1px solid var(--rule); background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 11px; }
.cc-contact-opt.active .cc-contact-opt-icon { background: var(--accent-dim); border-color: var(--accent-border); }
.cc-contact-opt-body { flex: 1; }
.cc-contact-opt-title { font-size: 12px; font-weight: 400; color: var(--ink-light); line-height: 1.3; }
.cc-contact-opt.active .cc-contact-opt-title { color: var(--accent); }
.cc-contact-opt-sub { font-size: 10px; font-weight: 300; color: var(--muted); margin-top: 1px; }
.cc-contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--rule); margin-bottom: 12px; }
.cc-contact-info-cell { padding: 10px 12px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.cc-contact-info-cell:nth-child(2n) { border-right: none; }
.cc-contact-info-cell:nth-last-child(-n+2) { border-bottom: none; }
.cc-contact-info-k { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.cc-contact-info-v { font-size: 11px; font-weight: 400; color: var(--ink-light); line-height: 1.4; }
.cc-contact-right { grid-row: 1 / 2; background: var(--off-white); padding: 40px; min-width: 0; }
.cc-contact-form-wrap { width: 100%; max-width: none; }
.cc-contact-form-title { font-family: 'Instrument Serif', serif; font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 20px; }
.cc-contact-form-title em { font-style: italic; color: var(--accent); }
.cc-contact-frow { display: grid; margin-bottom: 0; }
.cc-contact-frow-2 { grid-template-columns: 1fr 1fr; }
.cc-contact-ff { background: var(--white); border: 1px solid var(--rule); border-bottom: none; padding: 10px 14px 4px; }
.cc-contact-frow-2 .cc-contact-ff:first-child { border-right: none; }
.cc-contact-fl { font-family: 'DM Mono', monospace; font-size: 8px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 4px; }
.cc-contact-fi, .cc-contact-fta { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 300; color: var(--ink); background: transparent; border: none; outline: none; padding: 0; width: 100%; }
.cc-contact-fta { resize: vertical; min-height: 120px; line-height: 1.65; }
.cc-contact-check-row {
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 14px;
}
.cc-contact-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.6;
}
.cc-contact-check span {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cc-contact-check input {
  margin-top: 2px;
  accent-color: var(--accent);
}
.cc-contact-submit-row { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.cc-contact-success { background: var(--green-light); border: 1px solid var(--green-border); padding: 24px; margin-bottom: 24px; }
.cc-contact-success-title { font-family: 'Instrument Serif', serif; font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.cc-contact-success-ref { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--green); letter-spacing: 0.1em; margin-top: 12px; }
.cc-contact-chips-row {
  border: 1px solid var(--rule); border-top: none;
  background: var(--white);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.cc-contact-chips-lbl {
  font-family: 'DM Mono', monospace; font-size: 8px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-right: 4px; flex-shrink: 0;
}
.cc-contact-chip {
  font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 400;
  letter-spacing: 0.08em; color: var(--ink-mid);
  border: 1px solid var(--rule); background: var(--off-white);
  padding: 5px 12px; cursor: pointer; transition: all 0.15s; user-select: none;
}
.cc-contact-chip:hover { border-color: var(--accent-border); color: var(--accent); background: var(--accent-dim); }
.cc-contact-chip.on { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* Contact page — light form (IFU gate–inspired: mono fields, accent focus, soft panels) */
.contact-page--form-light .cc-contact-left-bg {
  opacity: 0.18;
}
.contact-page--form-light .cc-contact-left-inner {
  padding: 36px 28px 32px;
  gap: 26px;
}
.contact-page--form-light .cc-contact-left-intro {
  margin: 0;
}
.contact-page--form-light .cc-contact-left-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.contact-page--form-light .cc-contact-left-lead {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
  max-width: 30ch;
}
.contact-page--form-light .cc-contact-opts--cards {
  border: none;
  gap: 10px;
  margin-bottom: 0;
}
.contact-page--form-light .cc-contact-opts--cards .cc-contact-opt {
  border: 1px solid rgba(224, 223, 218, 0.85);
  border-left: 3px solid transparent;
  padding: 14px 16px;
  margin: 0;
  background: rgba(255, 255, 255, 0.72);
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.contact-page--form-light .cc-contact-opts--cards .cc-contact-opt:last-child {
  border-bottom: 1px solid rgba(224, 223, 218, 0.85);
}
.contact-page--form-light .cc-contact-opts--cards .cc-contact-opt:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(27, 79, 216, 0.12);
}
.contact-page--form-light .cc-contact-opts--cards .cc-contact-opt.active {
  border-left-color: var(--accent);
  background: rgba(238, 242, 253, 0.92);
  border-color: rgba(27, 79, 216, 0.2);
  box-shadow: 0 10px 32px rgba(26, 25, 22, 0.07);
}
.contact-page--form-light .cc-contact-opts--cards .cc-contact-opt.active:last-child {
  border-bottom-color: rgba(27, 79, 216, 0.15);
}
.contact-page--form-light .cc-contact-opt-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(224, 223, 218, 0.95);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page--form-light .cc-contact-opt.active .cc-contact-opt-icon {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--white);
}
.contact-page--form-light .cc-contact-opt-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.contact-page--form-light .cc-contact-opts--cards .cc-contact-opt-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.contact-page--form-light .cc-contact-opts--cards .cc-contact-opt.active .cc-contact-opt-title {
  color: var(--ink);
}
.contact-page--form-light .cc-contact-opts--cards .cc-contact-opt-sub {
  font-size: 11px;
  line-height: 1.45;
}
.contact-page--form-light .cc-contact-left-footer {
  margin-top: auto;
  padding-top: 4px;
}
.contact-page--form-light .cc-contact-info-heading {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.contact-page--form-light .cc-contact-info-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  border: 1px solid rgba(224, 223, 218, 0.65);
  background: rgba(255, 255, 255, 0.55);
}
.contact-page--form-light .cc-contact-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(224, 223, 218, 0.4);
}
.contact-page--form-light .cc-contact-info-row:last-child {
  border-bottom: none;
}
.contact-page--form-light .cc-contact-info-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.contact-page--form-light .cc-contact-info-value {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-light);
  text-align: right;
  line-height: 1.35;
}
.contact-page--form-light .cc-contact-info-value a {
  color: var(--accent);
  text-decoration: none;
}
.contact-page--form-light .cc-contact-info-value a:hover {
  text-decoration: underline;
}
.contact-page--form-light .cc-contact-footnote {
  font-size: 10px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.contact-page--form-light .cc-contact-shell {
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
}
.contact-page--form-light .cc-contact-opts--cards .cc-contact-opt:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.contact-page--form-light .cc-contact-right {
  background: linear-gradient(180deg, #fafaf8 0%, #f4f3ef 100%);
  padding: 40px 36px 48px;
}
.contact-page--form-light .cc-contact-form-error {
  font-size: 13px;
  color: var(--red);
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(192, 57, 43, 0.2);
  background: rgba(254, 226, 226, 0.45);
}
.contact-page--form-light .cc-contact-success--light {
  background: rgba(232, 244, 240, 0.65);
  border: 1px solid rgba(14, 122, 95, 0.22);
  padding: 22px 20px;
  margin-bottom: 24px;
}
.contact-page--form-light .cc-contact-success-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.75;
  margin: 0;
}
.contact-page--form-light .cc-contact-form-title {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.contact-page--form-light .cc-contact-form--light .cc-contact-frow {
  gap: 14px;
  margin-bottom: 14px;
}
.contact-page--form-light .cc-contact-form--light .cc-contact-frow:last-of-type {
  margin-bottom: 0;
}
.contact-page--form-light .cc-contact-form--light .cc-contact-ff {
  border: 1px solid rgba(224, 223, 218, 0.75);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 16px 14px;
  border-radius: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-page--form-light .cc-contact-form--light .cc-contact-frow-2 .cc-contact-ff:first-child {
  border-right: 1px solid rgba(224, 223, 218, 0.75);
}
.contact-page--form-light .cc-contact-form--light .cc-contact-ff:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.contact-page--form-light .cc-contact-fl {
  margin-bottom: 8px;
}
.contact-page--form-light .cc-contact-fi,
.contact-page--form-light .cc-contact-fta {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
.contact-page--form-light .cc-contact-fta {
  min-height: 112px;
  line-height: 1.6;
  resize: vertical;
}
.contact-page--form-light select.cc-contact-fi {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%239B9890' stroke-linecap='round' stroke-width='1.2' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 22px;
}
.contact-page--form-light .cc-contact-chips-row--light {
  margin-top: 4px;
  margin-bottom: 14px;
  border: 1px solid rgba(224, 223, 218, 0.75);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 14px;
}
.contact-page--form-light .cc-contact-check-row--light {
  border: 1px solid rgba(224, 223, 218, 0.75);
  background: rgba(255, 255, 255, 0.85);
  padding: 14px 16px;
  margin-top: 14px;
}
.contact-page--form-light .cc-contact-check span {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink-light);
  line-height: 1.55;
}
.contact-page--form-light .cc-contact-submit-row--light {
  margin-top: 22px;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}
.contact-page--form-light .cc-contact-submit-note {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  text-align: center;
}
.contact-page--form-light .cc-contact-submit-btn {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border: none;
  padding: 16px 28px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}
.contact-page--form-light .cc-contact-submit-btn:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.contact-page--form-light .cc-contact-submit-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 860px) {
  .cc-contact-shell { grid-template-columns: 1fr; padding: var(--nav-h) 24px 56px; }
  .cc-contact-left { grid-row: auto; border-right: none; border-bottom: 1px solid var(--rule); }
  .cc-contact-right { grid-row: auto; }
  .contact-page--form-light .cc-contact-right { padding: 28px 20px 40px; }
  .contact-page--form-light .cc-contact-left-inner { padding: 28px 20px 32px; }
  .contact-page--form-light .cc-contact-form--light .cc-contact-frow-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { max-width: none; padding: 60px 24px; padding-left: 24px; border-right: none; }
  .home-container { padding-left: 24px; padding-right: 24px; }
  .page-hero-content { padding: 44px 24px 36px; }
  .proof-bar .home-container { padding-left: 24px; padding-right: 24px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid-dark { grid-template-columns: 1fr 1fr; }
  .section-problem-dark { padding: 72px 0; }
  .steps-flow { grid-template-columns: 1fr; }
  .step-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .step-item:last-child { border-bottom: none; }
  .step-arrow { display: none; }
  .components-grid { grid-template-columns: 1fr; }
  .component-item { border-right: none; }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-left { border-right: none; border-bottom: 1px solid var(--rule); }
  .cta-section .home-container { grid-template-columns: 1fr; gap: 48px; }
  nav.cc-nav .cc-nav-inner { padding: 0 24px; }
  nav.cc-nav .nav-links { display: none; }
  nav.cc-nav .nav-logo-image { width: min(240px, 70vw); }
  .section, .how-section, .pricing-section { padding: 72px 0; }
  .cta-section { padding: 72px 0; }
  .hero-left { padding: 60px 0 60px 0; }
  footer.cc-footer { padding: 24px 0; }
  footer.cc-footer .cc-footer-inner { padding: 0 24px; }
  footer.cc-footer .cc-footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
