/* Augmented Organisation — 3-page straw man
   Inherits Lens tokens (../ask-max/assets/lens-tokens.css)
   Forest-green accent shared with Ask Max for visual continuity. */

:root {
  --aug-accent: #2f5d3a;
  --aug-accent-soft: #e8f0e9;
  --aug-ink: #1a1f23;
  --aug-mute: #6b7480;
  --aug-bg: #fafaf7;
  --aug-line: rgba(26,31,35,0.10);
  --aug-warn: #c44a3a;
  --aug-warn-soft: #fbeae6;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--aug-bg); color: var(--aug-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased; }

body {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}

.page {
  min-height: 100vh;
  scroll-snap-align: start;
  padding: 64px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--aug-line);
  position: relative;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aug-accent);
  font-weight: 600;
  margin-bottom: 14px;
}

h1 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px 0;
  font-weight: 700;
  max-width: 900px;
}
h1 em { font-style: normal; color: var(--aug-accent); }

h2 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px 0;
  font-weight: 700;
  max-width: 900px;
}

.lede {
  font-size: 20px;
  line-height: 1.5;
  max-width: 760px;
  color: var(--aug-ink);
  margin: 0 0 32px 0;
}

.pageno {
  position: absolute;
  bottom: 24px;
  right: 32px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--aug-mute);
  font-weight: 600;
}

.brandmark {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--aug-mute);
  font-weight: 600;
}

/* Anti-pattern + pattern callouts */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin-top: 24px;
}
.vs-card {
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--aug-line);
  background: white;
}
.vs-card.anti {
  border-color: var(--aug-warn);
  background: var(--aug-warn-soft);
}
.vs-card.pattern {
  border-color: var(--aug-accent);
  background: var(--aug-accent-soft);
}
.vs-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.vs-card.anti .vs-label { color: var(--aug-warn); }
.vs-card.pattern .vs-label { color: var(--aug-accent); }
.vs-headline {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.vs-body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--aug-mute);
  margin: 0;
}

/* Page 2 — flow */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: stretch;
  margin-top: 36px;
  max-width: 1200px;
}
.flow-step {
  background: white;
  border: 1px solid var(--aug-line);
  border-radius: 10px;
  padding: 22px 18px;
  position: relative;
}
.flow-step .fn { font-size: 11px; letter-spacing: 0.14em; color: var(--aug-accent); font-weight: 700; margin-bottom: 8px; }
.flow-step .ft { font-size: 17px; font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.flow-step .fd { font-size: 13px; color: var(--aug-mute); line-height: 1.45; }
.flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--aug-accent);
  font-size: 22px;
  z-index: 2;
}

.requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  max-width: 1200px;
}
.req {
  padding: 22px;
  background: white;
  border: 1px solid var(--aug-line);
  border-radius: 10px;
}
.req .rt {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--aug-accent);
}
.req .rd {
  font-size: 14px;
  color: var(--aug-ink);
  line-height: 1.5;
}

/* Page 3 — value-stream examples */
.streams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
  max-width: 1200px;
}
.stream {
  background: white;
  border: 1px solid var(--aug-line);
  border-left: 4px solid var(--aug-accent);
  border-radius: 10px;
  padding: 24px;
}
.stream .sn {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aug-accent);
  font-weight: 700;
  margin-bottom: 8px;
}
.stream .sh {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.stream .sf {
  font-size: 13px;
  color: var(--aug-warn);
  font-weight: 600;
  margin-bottom: 8px;
}
.stream .sa {
  font-size: 13px;
  color: var(--aug-mute);
  line-height: 1.5;
}

.straw-note {
  margin-top: 40px;
  padding: 18px 22px;
  background: white;
  border: 1px dashed var(--aug-mute);
  border-radius: 8px;
  font-size: 14px;
  color: var(--aug-mute);
  max-width: 900px;
}

@media (max-width: 900px) {
  .page { padding: 40px 24px; }
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  .vs-grid, .flow, .requirements, .streams { grid-template-columns: 1fr; }
  .flow-step:not(:last-child)::after { display: none; }
}

/* ============================================================
   READABILITY BUMP — 2026-06-29 per Jeff (~1.4-1.6x)
   ============================================================ */
.eyebrow { font-size: 14px !important; letter-spacing: 0.14em !important; }
h1 { font-size: clamp(48px, 6vw, 80px) !important; }
h2 { font-size: clamp(36px, 4.4vw, 56px) !important; }
.lede { font-size: 22px !important; line-height: 1.55 !important; }
.vs-headline { font-size: 26px !important; }
.vs-body { font-size: 17px !important; line-height: 1.5 !important; }
.flow-step .ft { font-size: 20px !important; }
.flow-step .fd { font-size: 15px !important; line-height: 1.55 !important; }
.flow-step .fn { font-size: 13px !important; letter-spacing: 0.10em !important; }
.req .rt { font-size: 18px !important; }
.req .rd { font-size: 16px !important; line-height: 1.55 !important; }
.stream .sn { font-size: 13px !important; letter-spacing: 0.10em !important; }
.stream .sh { font-size: 22px !important; }
.stream .sf, .stream .sa { font-size: 16px !important; line-height: 1.55 !important; }
.straw-note { font-size: 16px !important; line-height: 1.55 !important; }
.pageno { font-size: 13px !important; }
