/* Shared stylesheet for the static SEO pages (/about/, /company-brain/,
   /tribal-knowledge/). Served verbatim from public/ — independent of the
   app bundle so these pages stay tiny. Tokens mirror src/styles/global.css. */
:root {
  --bg: #000000;
  --text: #ffffff;
  --yellow: #FFB829;
  --gold: #F2C33C;
  --cta: #7B5CFF;
  --grey: #777777;
  --border: rgba(255, 255, 255, 0.1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; }

.page-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
}
.page-header__logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.page-header__logo svg { width: 26px; height: 26px; }
.page-header__logo span { font-size: 0.95rem; font-weight: 600; letter-spacing: -0.02em; }
.page-header__back { font-size: 0.85rem; opacity: 0.6; text-decoration: none; }
.page-header__back:hover { opacity: 1; }

main { max-width: 720px; margin: 0 auto; padding: clamp(3rem, 7vw, 5.5rem) 1.5rem 4rem; }
.page-kicker {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 1.1rem;
}
h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 1.5rem;
}
h1 .gold { color: var(--gold); }
h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.15;
  margin: 2.75rem 0 0.9rem;
}
main p { font-size: 1.02rem; font-weight: 300; color: rgba(255,255,255,0.72); margin-bottom: 1.1rem; }
main .lede { font-size: 1.18rem; color: rgba(255,255,255,0.85); }
main ul { margin: 0 0 1.1rem 1.2rem; }
main li { font-size: 1.02rem; font-weight: 300; color: rgba(255,255,255,0.72); margin-bottom: 0.45rem; }
main strong { font-weight: 600; color: rgba(255,255,255,0.92); }
main a { color: var(--gold); text-decoration: none; }
main a:hover { text-decoration: underline; }

.page-cta {
  margin: 3rem 0 0; padding: 2rem;
  border: 1px solid var(--border); border-radius: 14px;
  text-align: center;
}
.page-cta p { margin-bottom: 1.25rem; }
.btn-cta {
  display: inline-block; background: var(--cta); color: #fff;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.85rem 1.9rem; border-radius: 999px; text-decoration: none;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.85; text-decoration: none; }

.page-footer {
  border-top: 1px solid var(--border);
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.page-footer nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.page-footer a { text-decoration: none; opacity: 0.75; }
.page-footer a:hover { opacity: 1; }
