/*
 * company.css — the Company page.
 *
 * Builds on the global tokens defined in /styles.css (--ds-*). Deliberately
 * small: this page is prose that has to be TRUSTED, so it borrows the site's
 * type and colour rather than inventing a look of its own.
 */

.company-body {
  background: var(--ds-bg);
}

.co-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

/* ---------- hero ---------- */
.co-hero {
  padding: clamp(56px, 9vw, 104px) 0 clamp(28px, 4vw, 44px);
}

.co-hero h1 {
  margin: 18px 0 0;
  font-family: var(--ds-display, inherit);
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ds-text);
  text-wrap: balance;
}

.co-lede {
  margin: 20px 0 0;
  max-width: 62ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.62;
  color: var(--ds-muted);
}

/* ---------- sections ---------- */
.co-section {
  padding: clamp(30px, 4.5vw, 52px) 0;
}

.co-section h2 {
  margin: 0 0 14px;
  font-size: clamp(21px, 2.5vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ds-text);
  text-wrap: balance;
}

.co-section p {
  margin: 0 0 14px;
  max-width: 68ch;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.68;
  color: var(--ds-muted);
}

.co-section p:last-child {
  margin-bottom: 0;
}

.co-section strong {
  color: var(--ds-text);
  font-weight: 600;
}

/* The production-usage block — the one claim a prospect is actually weighing. */
.co-section-accent .co-inner {
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius-lg, 16px);
  background: var(--ds-bg-soft);
  padding: clamp(24px, 3.4vw, 40px);
}

.co-list {
  margin: 4px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 68ch;
}

.co-list li {
  position: relative;
  padding-left: 20px;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.62;
  color: var(--ds-muted);
}

.co-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ds-accent-strong);
}

.co-outro {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--ds-divider, var(--ds-border));
}

/* ---------- closing CTA ---------- */
.co-cta {
  padding: clamp(34px, 5vw, 64px) 0 clamp(56px, 8vw, 96px);
  text-align: center;
}

.co-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(21px, 2.4vw, 27px);
  color: var(--ds-text);
}

.co-cta p {
  margin: 0 0 20px;
  color: var(--ds-muted);
  font-size: clamp(15px, 1.3vw, 16px);
}

/* ---------- links ----------
 * Prose links must LOOK like links. Pre-fix these inherited body colour with
 * no underline, so the three outbound references were invisible to a reader —
 * present in the markup, unusable on the page.
 */
.co-lede a,
.co-section p a,
.co-list a {
  color: var(--ds-accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: color-mix(in srgb, var(--ds-accent-strong) 42%, transparent);
  transition: text-decoration-color 120ms ease, color 120ms ease;
}

.co-lede a:hover,
.co-section p a:hover,
.co-list a:hover {
  text-decoration-color: var(--ds-accent-strong);
}

.co-lede a:focus-visible,
.co-section p a:focus-visible,
.co-list a:focus-visible {
  outline: 2px solid var(--ds-accent-strong);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- proof strip ---------- */
.co-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.co-proof li {
  border: 1px solid var(--ds-border);
  border-radius: var(--ds-radius, 12px);
  background: var(--ds-bg-soft);
  padding: 16px 18px;
}

.co-proof .n {
  display: block;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ds-text);
}

.co-proof .l {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ds-muted);
}

/* ---------- product list ---------- */
.co-products {
  margin: 18px 0 4px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 68ch;
}

.co-products li {
  display: grid;
  grid-template-columns: minmax(96px, auto) 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 11px 0;
  border-top: 1px solid var(--ds-divider, var(--ds-border));
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
  color: var(--ds-muted);
}

.co-products li:first-child {
  border-top: 0;
}

.co-products .p {
  font-weight: 600;
  color: var(--ds-text);
}

/* ---------- Q&A ---------- */
.co-qa {
  margin: 6px 0 0;
  max-width: 68ch;
}

.co-qa dt {
  margin: 20px 0 6px;
  font-weight: 600;
  font-size: clamp(15px, 1.35vw, 17px);
  color: var(--ds-text);
}

.co-qa dd {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.68;
  color: var(--ds-muted);
}
