/* ============================================================================
   Token of Trust — company (about) page-local styles
   ----------------------------------------------------------------------------
   Tokens, reset, layout, typography, header/nav, footer, buttons (.btn base +
   .btn-green/.btn-navy/.btn-line), .proof, .kicker, .steps, .reassurance and
   the reveal animation all live in the shared theme (tot-navy.css, v1.1). This
   file holds ONLY company-page compositions: the centred hero, the solutions
   card grid, the coverage split, the reassurance row, the CTA band and the
   nav active pill. Consumes the shared token layer (no :root re-declare);
   primary CTAs route through --color-cta. Do not minify — one rule per line.
   ========================================================================== */

/* Hero (centred) --------------------------------------------------- */
.hero { text-align: center; padding: 72px 0 0; }
.hero h1 { margin: 16px auto; max-width: 20ch; }
.hero .lede { max-width: 58ch; margin: 0 auto; }
.hero .cta-row { justify-content: center; margin-top: 28px; }

/* CTA variants over the shared .btn base -------------------------- */
.btn-ent { background: var(--color-cta); color: #fff; box-shadow: 0 7px 20px rgba(21, 122, 74, .28); }
.btn-ent:hover { background: var(--color-cta-hover); }

/* Solutions card grid --------------------------------------------- */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.sol-card {
  padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.sol-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-cool); }
.sol-card h3 { font-size: 1.18rem; letter-spacing: -.01em; color: var(--navy); margin-bottom: 8px; }
.sol-card p { font-size: .94rem; color: var(--muted); }
.card-link {
  display: inline-flex; align-items: center; min-height: var(--tap); margin-top: 12px; font-weight: 700; font-size: .9rem; color: var(--teal-ink);
  text-decoration: none;
}
.card-link:hover { color: var(--navy); }

/* How-to-launch steps (over shared .steps) ------------------------ */
.alt-bg { background: #fff; border-block: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; text-align: center; }
.step { padding: 30px 24px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; }
.step .num {
  font-size: .74rem; font-weight: 800; letter-spacing: .14em; display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: #eaf5f2; color: var(--teal-ink);
}
.step h3 { font-size: 1.05rem; margin: 10px 0 6px; color: var(--navy); }
.step p { font-size: .9rem; color: var(--muted); }

/* Coverage split -------------------------------------------------- */
.coverage { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.coverage-copy h2 { margin-top: 6px; }
.coverage-copy p { color: var(--muted); max-width: 46ch; margin: 12px 0 24px; }
.coverage-list {
  list-style: none; display: flex; flex-direction: column; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px;
  box-shadow: var(--shadow-soft);
}
.coverage-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.coverage-list li::before { content: "\2713"; font-weight: 800; flex-shrink: 0; color: var(--green); }

/* Privacy reassurance row ----------------------------------------- */
.reassure-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.privacy-links { margin-top: 28px; font-weight: 600; }
.privacy-links a {
  color: var(--teal-ink); text-decoration: none;
  display: inline-flex; align-items: center; min-height: var(--tap);
}
.privacy-links a:hover { color: var(--navy); }

/* CTA band (over shared .ent-band) -------------------------------- */
.ent-band { padding: 64px 40px; text-align: center; background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-radius: 26px; color: #fff; }
.ent-band .kicker { color: #7fe3b8; }
.ent-band h2 { color: #fff; }
.ent-band p { max-width: 52ch; margin: 0 auto; color: #b8c8de; }
.cta-center { justify-content: center; margin-top: 24px; }
.ent-band .btn-line { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.ent-band .btn-line:hover { border-color: #fff; }

/* Nav active pill + footer note ----------------------------------- */
nav.primary a.active { color: var(--teal-ink); background: #eaf5f2; padding: 6px 16px; border-radius: 999px; font-weight: 700; }
.foot-note { font-size: .88rem; margin-top: 12px; max-width: 34ch; color: var(--muted); }

/* Responsive ------------------------------------------------------ */
@media (max-width: 920px) {
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .coverage { grid-template-columns: 1fr; gap: 28px; }
  .reassure-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sol-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

/* Dark theme — literal light surfaces + decorative tints */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    .sol-card, .alt-bg, .coverage-list { background: var(--card); }
    .step .num, nav.primary a.active { background: rgba(43, 179, 166, .16); color: var(--teal-ink); }
    .sol-card h3, .card-link:hover, .step h3, .privacy-links a:hover { color: var(--ink); }
  }
}
:root[data-theme="dark"] .sol-card,
:root[data-theme="dark"] .alt-bg,
:root[data-theme="dark"] .coverage-list { background: var(--card); }
:root[data-theme="dark"] .step .num,
:root[data-theme="dark"] nav.primary a.active { background: rgba(43, 179, 166, .16); color: var(--teal-ink); }
:root[data-theme="dark"] .sol-card h3,
:root[data-theme="dark"] .card-link:hover,
:root[data-theme="dark"] .step h3,
:root[data-theme="dark"] .privacy-links a:hover { color: var(--ink); }
