/* WordOfBot — one-page marketing site.
   Self-contained: no CDN, no web fonts, no JS. Mobile-first.
   Design inherited from novellogic.ca: light bg, near-black text, serif
   headings (NLV's own Georgia fallback stack), system-sans body, mono chips.
   One accent (brand rust #b0401f) means "about you": the mark, the CTA, and the
   reader's own chip share it — nothing else on the page is rust. */

:root {
  --bg:         #fafaf8;
  --text:       #1a1a1a;
  --text-muted: #3a3a3a;
  --text-dim:   #5e5e5e;
  --rule:       #e5e3df;
  --chip-border:#e0ddd8;
  --accent:     #b0401f;   /* brand rust — the mark, the CTA, the reader's own chip */
  --accent-ink: #8f3319;   /* rust, darker (CTA hover) */
  --parchment:  #f0ebe0;   /* warm callout / preview backing */
  --graphite:   #8a867c;   /* chips, captions, source lines */
  --serif: Georgia, 'Times New Roman', serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono:  ui-monospace, SFMono-Regular, Menlo, Consolas, 'Segoe UI Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

a { color: inherit; }

/* ── Header ── */
.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/* Header lockup: the rust mark (brand asset) beside the wordmark set in live
   serif text, so the wordmark always matches the site font exactly. */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark {
  width: 30px;
  height: 30px;
  display: block;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--text);
}
/* Parent-company mark: intentionally quieter than the WordOfBot wordmark —
   same serif family, smaller, muted. Signals parentage, not the point. */
.parent-mark {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.parent-mark:hover,
.parent-mark:focus-visible { color: var(--text-muted); }

/* ── Section rhythm ── */
section { padding: 2.75rem 0; }
.hook { padding-top: 3.25rem; }

/* ── 1. Hook ── */
.hook h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.95rem, 7vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 15ch;
}
.hook .sub {
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1.15rem;
  max-width: 40ch;
}
/* Measurement stamp — the shared brand component (wordofbot-brand/web/stamp.html).
   Mono, because every chip carries a panel-measured fact. The rust "--you" chip
   is reserved for the reader's own result. */
.wob-stamp {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wob-chip {
  border: 1px solid var(--chip-border);
  border-radius: 8px;
  padding: 4px 9px;
  color: var(--graphite);
  background: transparent;
  white-space: nowrap;
}
.wob-chip--you {
  border-color: var(--accent);
  color: var(--accent);
  background: #faede7;
}
.footnote {
  font-size: 0.72rem;
  color: #8a867e;
  line-height: 1.5;
  margin-top: 1.1rem;
  max-width: 52ch;
}
/* Above-the-fold hero CTA — reuses .cta-btn; just sits between chips and footnote */
.hero-cta { margin-top: 1.75rem; }

/* Hero two-column: copy on the left, the artifact the audit delivers on the right. */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
}
.hero-card { display: flex; justify-content: center; }
/* A compact preview of the emailed scorecard, tilted like a printed artifact and
   backed in parchment. The rust "named 0 of 24" chip is the reader's own result. */
.preview-card {
  width: 100%;
  max-width: 340px;
  background: var(--parchment);
  border: 1px solid #e2dccf;
  border-radius: 8px;
  padding: 18px 18px 16px;
  transform: rotate(1.5deg);
  box-shadow: 0 10px 26px rgba(31,30,29,0.10);
}
.preview-head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.preview-mark { width: 18px; height: 18px; display: block; }
.preview-kicker {
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--graphite);
}
.preview-eyebrow { font-size: 0.8rem; color: var(--text-dim); margin: 0 0 6px; }
.preview-finding {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3.4vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 14px;
}
.preview-stamp { margin-top: 0; }

/* Disagreement motif — four engine marks, each answering with a different subset
   of dots. These replace the plain section rules. Graphite, never rust: the
   dividers are about the engines, not the reader. */
.motif { display: flex; justify-content: center; padding: 0.5rem 0; }
.motif-svg { height: 36px; width: auto; display: block; }

/* ── 2. Problem — the page's ONE dark band: a deliberate pivot between hook and
   proof, and it makes the two white scorecards pop right after. One finding and
   nothing else: a serif headline over a single supporting sentence. */
.problem {
  background: #111111;
  padding: 5.5rem 0;
}
/* Now a section headline (a full sentence), not a hero-scale numeral — sized to
   read large but wrap gracefully at desktop and mobile widths. */
.finding-big {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.95rem, 6vw, 3.3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
  color: #f4f2ec;
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
}
.finding-sub {
  max-width: 40ch;
  margin: 1.25rem auto 0;
  text-align: center;
  color: #d9d6cd;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.45;
}
/* Credibility footnote under the finding — rigor as texture keeps the headline
   claim honest rather than promotional. Graphite, deliberately quiet. */
.finding-note {
  max-width: 48ch;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--graphite);
  font-size: 11px;
  line-height: 1.55;
}
/* Ambient loop under the finding — silent, autoplay, below the fold (preload
   none). Reduced-motion users get the poster still instead of the video. */
.finding-media {
  margin: 1.75rem auto 0;
  max-width: 880px;
  width: 100%;
}
.finding-video,
.finding-poster {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 716;
  border-radius: 8px;
}
.finding-poster { display: none; }
@media (prefers-reduced-motion: reduce) {
  .finding-video { display: none; }
  .finding-poster { display: block; }
}

/* ── 3. Cards ── (motif dividers, not rules, separate the light sections) */
.cards-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 4.5vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}
.card-pair {
  display: flex;
  flex-direction: column;   /* mobile: stacked, Card A first */
  align-items: center;
  gap: 1.5rem;
}
.card-fig { width: 100%; max-width: 380px; }
.card-fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 808 / 800;
  border-radius: 8px;
}
.cards-caption {
  font-size: 0.72rem;
  color: var(--graphite);
  line-height: 1.5;
  margin-top: 1.5rem;
  text-align: center;
}

/* ── 4. What you get ── */
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 4.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.get h2 { margin-bottom: 1.5rem; }
.get-list { list-style: none; display: flex; flex-direction: column; gap: 1.35rem; }
.get-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1rem;
  border-left: 2px solid var(--rule);
}
.get-h {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.get-b {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.canada {
  margin-top: 1.75rem;
  padding: 1rem 1.1rem;
  background: #f3f2ec;
  border: 1px solid var(--rule);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── 5. CTA ── */
.cta {
  text-align: center;
  padding: 3.5rem 0;
}
.cta-who {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
/* Closing line — a declarative finding, so it takes the serif. */
.cta-close {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  line-height: 1.35;
  color: var(--text);
  max-width: 34ch;
  margin: 0 auto 1.5rem;
  text-wrap: balance;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.cta-btn:hover,
.cta-btn:focus-visible { background: var(--accent-ink); }

/* ── Footer — full-width, space-between; stacks centred on mobile ── */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 2.75rem 0 3rem;
}
.footer-stamp { margin-top: 0; margin-bottom: 1.5rem; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.footer-inner a { color: var(--text-dim); text-decoration: none; border-bottom: 1px solid var(--chip-border); }
.footer-inner a:hover { color: var(--text); }

@media (max-width: 620px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.65rem;
  }
}

/* ── Desktop ── */
@media (min-width: 720px) {
  .container { padding: 0 2rem; }
  section { padding: 3.75rem 0; }
  .hook { padding-top: 4.5rem; }
  .problem { padding: 7rem 0; }
  .card-pair {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
  }
  .card-fig { flex: 1 1 0; max-width: 380px; }
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.75rem;
    align-items: center;
  }
}
