/* ============================================================
   Argentum × SAVANT-AI — Microsite
   Working document, not marketing. Modeled on wm.savant-ai.com.
   #fafaf7 bg · #0f1722 ink · Inter throughout · left-aligned · sparse.
   Gold ONLY in eyebrow labels.
   ============================================================ */

:root {
  --bg: #fafaf7;
  --ink: #0f1722;
  --soft: #555555;
  --mute: #999999;
  --rule: #ddd;
  --rule-strong: #0f1722;
  --gold: #b8862c;          /* slightly desaturated gold — works on light bg */
  --burgundy: #6e2639;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  --col-doc: 1040px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { max-width: var(--col-doc); margin: 0 auto; padding: 0 var(--sp-6); }

/* ---------- HEADER — text wordmark left, nav left beneath ---------- */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 18px var(--sp-6);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  max-width: var(--col-doc);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: var(--ink);
}
.wordmark__line {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--ink);
  line-height: 1.1;
}
.wordmark__line .x {
  color: var(--mute);
  font-weight: 500;
  margin: 0 4px;
}
.wordmark__sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--mute);
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: var(--sp-5);
  align-items: center;
}
.site-nav a {
  color: var(--soft);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: color 120ms ease-out;
}
.site-nav a:hover { color: var(--ink); }

/* ---------- HERO — left-aligned, no buttons ---------- */

.hero { padding: var(--sp-9) 0 var(--sp-7); max-width: 740px; }
.hero-prompt {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.1px;
  margin-top: var(--sp-6);
  margin-bottom: 0;
  max-width: 56ch;
}

/* ---------- QUESTION CARDS — dark, white type, mirrors WM nav row ---------- */

.question-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  max-width: var(--col-doc);
  margin: 0 auto;
  padding: var(--sp-5) var(--sp-6) 0;
}
@media (min-width: 760px) {
  .question-row { grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-3); }
}
.qcard {
  display: block;
  text-decoration: none;
  background: var(--ink);
  color: #ffffff;
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  transition: background 120ms ease-out, transform 120ms ease-out;
  min-height: 130px;
}
.qcard:hover { background: #1a2433; }
.qcard-num {
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--mute);
  margin: 0 0 var(--sp-3) 0;
  text-transform: uppercase;
  font-weight: 600;
  max-width: none;
}
.qcard h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.qcard h3 .arrow {
  color: var(--gold);
  margin-left: 4px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: var(--sp-5);
  white-space: nowrap;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 60ch;
}
.hero-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  max-width: none;
  margin: 0;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
}
.hero .lede {
  font-size: 17px;
  color: var(--soft);
  max-width: 56ch;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- JOURNEY — three-column working grid ---------- */

.journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  max-width: var(--col-doc);
  margin: 0 auto;
  padding: var(--sp-3) var(--sp-6) var(--sp-9);
  border-top: 0;
}
@media (min-width: 760px) {
  .journey { grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-3); }
}
.journey .col {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: var(--sp-5);
  border: 1px solid var(--rule);
  background: var(--bg);
  transition: border-color 120ms ease-out, background 120ms ease-out;
}
.journey .col:hover {
  border-color: var(--ink);
  background: #ffffff;
}
.journey .col .col-line {
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  max-width: none;
}
.journey .col .col-line strong { font-weight: 700; }
.journey .col .eyebrow { margin-bottom: var(--sp-3); }

/* ---------- SECTIONS ---------- */

section.band {
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--rule);
}

h2 {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin: var(--sp-3) 0 var(--sp-6);
  max-width: 28ch;
}

h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.sub-h {
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mute);
}
ul.faculty {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
ul.faculty li {
  font-size: 15px;
  color: var(--ink);
  margin: 0;
  max-width: none;
}

p { max-width: 64ch; margin-bottom: var(--sp-4); color: var(--ink); }
p.lede { font-size: 16px; color: var(--soft); max-width: 56ch; line-height: 1.6; }
p.footnote { color: var(--mute); font-size: 13px; margin-top: var(--sp-3); max-width: 56ch; }
p.cta-line { margin-top: var(--sp-5); }

ul, ol { padding-left: 20px; margin-bottom: var(--sp-4); }
ul li, ol li { margin-bottom: 8px; max-width: 60ch; font-size: 14.5px; line-height: 1.55; }

a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 3px; transition: text-decoration-color 120ms ease-out; }
a:hover { text-decoration-color: var(--ink); }
.link-strong { font-weight: 600; text-decoration-color: var(--ink); }

strong { font-weight: 600; color: var(--ink); }

/* ---------- EYEBROW — the ONE place gold appears ---------- */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.p-tag {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 1.4px;
}

/* ---------- TWO-COL LAYOUT (for Index section) ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin: var(--sp-3) 0 var(--sp-4);
}
@media (min-width: 720px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
}

/* ---------- TABLES ---------- */

table.schedule, table.pricing {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  margin: var(--sp-3) 0 var(--sp-4);
  font-size: 14px;
}
table.schedule td, table.pricing td, table.pricing th {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
table.schedule td:first-child { width: 30%; }
table.pricing th {
  color: var(--mute);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
table.pricing td.price {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

/* ---------- BUTTONS (used ONLY in Sprint + Pathway sections) ---------- */

.cta-row { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-3); }

.btn {
  display: inline-block;
  padding: 11px 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: all 120ms ease-out;
}
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: #1a2433; color: var(--bg); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

/* ---------- FOOTER ---------- */

.site-footer {
  border-top: 1px solid var(--rule);
  padding: var(--sp-7) var(--sp-6);
  margin-top: var(--sp-9);
}
.site-footer__inner {
  max-width: var(--col-doc);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.wordmark--footer { gap: 4px; }
.site-footer__meta {
  color: var(--soft);
  font-size: 12px;
  max-width: 60ch;
  line-height: 1.55;
}
.site-footer__meta p { margin-bottom: 6px; color: var(--soft); max-width: none; font-size: 12px; }
.site-footer__meta p.copyright { color: var(--mute); font-size: 11px; line-height: 1.5; margin-top: var(--sp-3); }

/* ---------- RESPONSIVE ---------- */

@media (max-width: 640px) {
  .hero { padding: var(--sp-7) 0 var(--sp-5); }
  .hero h1 { white-space: normal; font-size: 22px; }
  .site-nav { flex-wrap: wrap; gap: var(--sp-3); }
}
