/* Vision page — layered on top of app.css, which the page already links.
   Kept separate so the landing page's inlined critical CSS stays small. */

.vision-hero { padding-bottom: clamp(32px, 6vw, 64px); }
.vision-hero h1 { max-width: 16ch; }

/* ===== CLAIM / MISSION ===== */
.claim {
  max-width: 760px;
  margin: clamp(28px, 5vw, 44px) auto 0;
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
}
.claim blockquote {
  margin: 0;
  font-size: clamp(24px, 4.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: var(--leading-tight, 1.15);
  text-wrap: balance;
}
.claim figcaption {
  margin-top: 20px;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
}
.claim figcaption strong { display: block; margin-top: 12px; color: var(--text); }

/* ===== PILLARS ===== */
.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(26px, 3vw, 34px);
  text-align: left;
}
/* The number labels the pillar. It sits in the flow above the heading rather than as a giant
   watermark behind it — a watermark large enough to read is also large enough to collide. */
.pillar-num {
  align-self: flex-start;
  padding: 5px 14px;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: var(--radius-full);
  background: rgba(168, 85, 247, 0.1);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-light);
}
.pillar h3 { font-size: 20px; line-height: 1.3; text-wrap: balance; }
.pillar-lead { color: var(--muted); font-size: var(--text-body); line-height: var(--leading-relaxed); margin: 0; }
.pillar-points { margin: 6px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pillar-points li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
}
.pillar-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.pillar-points strong { color: var(--text); font-weight: 600; }

/* ===== POSITIONING ===== */
.position-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-card); align-items: stretch; }
.position { display: flex; flex-direction: column; gap: 10px; padding: clamp(24px, 3vw, 32px); text-align: left; }
.position h3 { font-size: 19px; line-height: 1.3; }
.position p { color: var(--muted); font-size: var(--text-body); line-height: var(--leading-relaxed); }
.position.muted { opacity: 0.72; }
.pos-tag {
  align-self: flex-start;
  padding: 5px 13px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-full);
  color: var(--muted);
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
}
.pos-tag.accent { border-color: rgba(168, 85, 247, 0.5); background: rgba(168, 85, 247, 0.12); color: var(--accent-light); }

/* ===== TODAY ===== */
.today-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-card); }
.today { text-align: left; }
.today-icon { display: block; font-size: 26px; line-height: 1; margin-bottom: 12px; }
.today h3 { font-size: 16px; margin-bottom: 6px; }
.today p { color: var(--muted); font-size: var(--text-xs); line-height: var(--leading-relaxed); }
.vision-cta-note { margin: 14px 0 0; color: var(--muted); font-size: var(--text-sm); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pillars, .position-grid { grid-template-columns: 1fr; }
  .today-grid { grid-template-columns: repeat(2, 1fr); }
  .position.muted { opacity: 1; }
}
@media (max-width: 560px) {
  .today-grid { grid-template-columns: 1fr; }
}
@media (min-width: 1500px) {
  .claim blockquote { font-size: clamp(40px, 3vw, 52px); }
  .claim { max-width: 900px; }
}
