/* ==========================================================================
   CADWiz — Phase 1 landing page
   Design plan: docs/design-plan-phase1.md
   Mobile-first. Navy hero, drafting-paper body. Flat: no shadows, no
   gradients, no scroll animation. Separation comes from rules, not depth.
   ========================================================================== */

:root {
  --blueprint-navy: #0A1020;
  --drafting-paper: #F7F5F0;
  --wireframe-cyan: #4CC3FF;   /* linework + focus on navy ONLY */
  /* CONFIRMED 2026-07-31. 6.4:1 on --drafting-paper, passes AA for body text.
     Brand cyan #4CC3FF on that paper is 1.82:1 — invisible in daylight on a
     phone, which is where the traffic lands. Do NOT "simplify" this back to
     cyan. Scope: links, body text, focus rings. Never marks or logos —
     cyan stays the identity color; this ink is for anything that is read. */
  --wireframe-ink:  #0B5F8A;
  --spark-amber:    #FFB454;   /* the single accent — CTA only */
  --wizard-indigo:  #5B4BD6;   /* Wizard tier marker only, never clickable */

  --rule:      rgba(10, 16, 32, 0.14);
  --rule-dark: rgba(76, 195, 255, 0.22);
  --ink-soft:  rgba(10, 16, 32, 0.72);
  --paper-soft: rgba(247, 245, 240, 0.74);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;

  --wrap: 68rem;
  --pad: 1.25rem;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--drafting-paper);
  color: var(--blueprint-navy);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 48rem) { body { font-size: 1.0625rem; } }

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.6em; text-wrap: balance; }
h1 { font-size: 2.125rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
h2 { font-size: 1.5625rem; font-weight: 600; }
h3 { font-size: 1.1875rem; font-weight: 600; }

@media (min-width: 48rem) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}

p { margin: 0 0 1rem; max-width: 66ch; }

a { color: var(--wireframe-ink); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.mono { font-family: var(--mono); font-size: 0.94em; }

/* --- accessibility ------------------------------------------------------ */

:focus-visible {
  outline: 3px solid var(--wireframe-ink);
  outline-offset: 2px;
}
.hero :focus-visible,
.waitlist :focus-visible,
.site-head :focus-visible {
  outline-color: var(--wireframe-cyan);
}

.skip {
  position: absolute; left: -9999px;
  background: var(--spark-amber); color: var(--blueprint-navy);
  padding: 0.75rem 1rem; font-weight: 600; z-index: 10;
}
.skip:focus { left: 0; top: 0; }

.vh {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- the mark ----------------------------------------------------------- */

.mark-logo { width: 2.25rem; height: 2.25rem; display: block; flex: none; }

/* --- placeholders ------------------------------------------------------- */

.ph {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Inline placeholder for a value that is BLOCKING, not decorative. Reads as
   obviously unfinished on purpose so it cannot ship unnoticed. */
.ph-inline {
  display: inline-flex; padding: 0.1em 0.5em; font-size: 0.7rem;
  border: 1px dashed var(--rule);
  border-radius: 2px;
  background: repeating-linear-gradient(
    135deg, transparent, transparent 7px,
    rgba(10, 16, 32, 0.045) 7px, rgba(10, 16, 32, 0.045) 8px);
}

/* The demo slot. Section 8 forbids faking a demo, so this stays a
   placeholder — but "honest" and "unfinished-looking" are not the same
   thing. Dashed hatching says the builder ran out of time. Registration
   marks on a ruled viewport say the frame is reserved and the drawing has
   not been issued yet, which is both true and deliberate.
   Corner ticks are the drafting convention for exactly that. */
.ph-demo {
  position: relative;
  width: 100%; aspect-ratio: 16 / 10;
  color: var(--paper-soft);
  border: 1px solid var(--rule-dark);
  background-color: rgba(76, 195, 255, 0.03);
  background-image:
    linear-gradient(rgba(76, 195, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 195, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.ph-demo::before,
.ph-demo::after {
  content: ""; position: absolute;
  width: 1.125rem; height: 1.125rem;
  border: 1px solid var(--wireframe-cyan);
  opacity: 0.55;
}
/* Top-RIGHT and bottom-LEFT, not the other diagonal: the "Early build" stamp
   occupies the top-left corner and was covering the mark entirely. */
.ph-demo::before { top: 0.5rem; right: 0.5rem; border-left: 0; border-bottom: 0; }
.ph-demo::after { bottom: 0.5rem; left: 0.5rem; border-right: 0; border-top: 0; }

/* --- header ------------------------------------------------------------- */

.site-head { background: var(--blueprint-navy); }
.head-inner { padding-block: 1rem 0; }
.logo { display: inline-flex; align-items: center; gap: 0.6rem; }
.logo-word {
  color: var(--drafting-paper);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

/* --- 1. hero ------------------------------------------------------------ */

.hero {
  background-color: var(--blueprint-navy);
  /* faint blueprint grid — flat, no gradient */
  background-image:
    linear-gradient(rgba(76, 195, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 195, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  color: var(--drafting-paper);
  border-bottom: 1px solid var(--rule-dark);
  padding-block: 2.5rem 3rem;
}
.hero-inner { display: grid; gap: 2.25rem; }

@media (min-width: 56rem) {
  .hero { padding-block: 4.5rem 5rem; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
}

/* No max-width cap here. The grid column is already the measure, and a ch
   cap on top of it fights text-wrap:balance and orphans short words onto
   their own line. Let balance work inside the column. */
.hero h1 { color: var(--drafting-paper); text-wrap: balance; }
.hero .sub {
  font-size: 1.0625rem;
  color: var(--paper-soft);
  max-width: 46ch;
  margin-bottom: 1.75rem;
}
@media (min-width: 48rem) { .hero .sub { font-size: 1.25rem; } }

/* The outcome line carries the weight; the teacher clause sits under it,
   quieter but present. Dropping it would leave the hero selling speed alone. */
.hero .sub { margin-bottom: 0.6rem; }
.hero .sub-2 {
  font-size: 0.9375rem;
  color: var(--paper-soft);
  margin-bottom: 1.75rem;
}
@media (min-width: 48rem) { .hero .sub-2 { font-size: 1.0625rem; } }

.hero-cta { margin: 0; display: flex; flex-wrap: wrap; gap: 0.9rem 1.5rem; }
.btn-link {
  display: inline-block;
  color: var(--spark-amber);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--spark-amber);
  padding-bottom: 2px;
}
.btn-link-secondary {
  color: var(--drafting-paper);
  border-bottom-color: rgba(247, 245, 240, 0.8);
}
.btn-link::before { content: "\25B8\00a0"; }
.btn-link:hover { border-bottom-width: 3px; }

/* --- workbench page ----------------------------------------------------- */

.workbench-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.25rem;
}

.workbench-nav a {
  color: var(--drafting-paper);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(247, 245, 240, 0.35);
}

.workbench-hero {
  background-color: var(--blueprint-navy);
  color: var(--drafting-paper);
  border-bottom: 1px solid var(--rule-dark);
  padding-block: 2.5rem 3rem;
}

.workbench-hero .sub {
  font-size: 1.05rem;
  color: var(--paper-soft);
}

.workbench-wrap {
  max-width: 74rem;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wireframe-ink);
}

.submission-grid,
.role-grid,
.pipeline-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 56rem) {
  .submission-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .role-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pipeline-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.submission-card,
.role-card,
.pipeline-card {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--blueprint-navy);
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.2);
}

.submission-card.gemini { border-top-color: #1d5eff; }
.submission-card.openai { border-top-color: #e26d2d; }
.submission-card.anthropic { border-top-color: #5d7b73; }

.submission-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blueprint-navy);
  background: rgba(10, 16, 32, 0.06);
  padding: 0.3rem 0.5rem;
  margin-bottom: 0.85rem;
}

.submission-card h3,
.role-card h3,
.pipeline-card h3 {
  margin-bottom: 0.6rem;
}

.feature-list,
.check-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.feature-list li,
.check-list li {
  margin-bottom: 0.55rem;
}

.section-panel {
  margin-top: 2.5rem;
}

.signal-box {
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--rule);
  background: rgba(76, 195, 255, 0.04);
}

.action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1.5rem;
}

.action-bar a {
  font-weight: 600;
}

.metric-row {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 48rem) {
  .metric-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.metric {
  padding: 1rem;
  border: 1px solid var(--rule);
  background: rgba(247, 245, 240, 0.8);
}

.metric strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--blueprint-navy);
}

.metric span {
  color: var(--ink-soft);
}

.workbench-surface {
  background: var(--drafting-paper);
}

@media (min-width: 48rem) {
  .primary-column {
    max-width: 70ch;
  }
}

.demo { margin: 0; }
.demo { position: relative; }
.stamp {
  position: absolute; top: 0; left: 0; z-index: 1;
  background: var(--wireframe-cyan);
  color: var(--blueprint-navy);
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.55rem;
}
.demo figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--paper-soft);
  max-width: 46ch;
}

/* --- bands -------------------------------------------------------------- */

.band { padding-block: 3rem; border-bottom: 1px solid var(--rule); }
@media (min-width: 48rem) { .band { padding-block: 4.5rem; } }

.lede { color: var(--ink-soft); max-width: 58ch; margin-bottom: 2rem; }

/* --- 2. three levels ---------------------------------------------------- */

.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
@media (min-width: 52rem) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--blueprint-navy);
  border-radius: 2px;
  padding: 1.25rem;
  background: transparent;
}
.card h3 { margin-bottom: 0.5rem; }

/* Tier marks. Drawn as linework rather than emoji — the wand emoji is
   Unicode 13 and renders as tofu on older Windows, which is the worst
   possible glyph to lose on the one card that must look deliberate. */
.mark {
  width: 1.375rem; height: 1.375rem;
  vertical-align: -0.18em;
  margin-right: 0.4rem;
  fill: none;
  stroke: var(--blueprint-navy);
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.card-wizard .mark { stroke: var(--wizard-indigo); }
.card p { margin-bottom: 0; }

/* Wizard is deliberately the least clickable object on the page. */
.card-wizard { border-top-color: var(--wizard-indigo); }
.chip {
  display: inline-block;
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--wizard-indigo);
  border: 1px solid var(--wizard-indigo);
  border-radius: 2px;
  padding: 0.1rem 0.45rem;
  margin-bottom: 0.75rem;
}

.pull {
  margin-top: 2rem;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* --- 3. signature: the dimensioned remix -------------------------------- */

.remix { margin: 0 0 1.5rem; }
.drawing { width: 100%; height: auto; display: block; }

.drawing .part { fill: none; stroke: var(--rule); stroke-width: 1.5; }
.drawing .hole { fill: rgba(11, 95, 138, 0.07); stroke: var(--wireframe-ink); stroke-width: 1.75; }
.drawing .ext  { stroke: var(--wireframe-ink); stroke-width: 1; opacity: 0.5; }
.drawing .lead { stroke: var(--wireframe-ink); stroke-width: 1; }
.drawing .flow { stroke: var(--blueprint-navy); stroke-width: 1.5; opacity: 0.45; }
.drawing .tick { fill: var(--wireframe-ink); }
.drawing .flow + .tick { fill: var(--blueprint-navy); opacity: 0.45; }
.drawing .num {
  fill: var(--blueprint-navy);
  font-family: var(--mono);
  font-size: 15px;
  text-anchor: middle;
}

.said { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.5rem; }
.said-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
}
.utterance {
  border-left: 3px solid var(--wireframe-ink);
  padding: 0.35rem 0 0.35rem 0.75rem;
  font-size: 1rem;
}
@media (min-width: 48rem) { .utterance { font-size: 1.0625rem; } }

.after-note { color: var(--ink-soft); }

/* --- 4. the loop -------------------------------------------------------- */

.loop { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
@media (min-width: 52rem) { .loop { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.loop li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  align-items: baseline;
  border-top: 1px solid var(--rule);
  padding-top: 0.75rem;
}
@media (min-width: 52rem) {
  .loop li { grid-template-columns: 1fr; row-gap: 0.15rem; }
}
.step-n {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--wireframe-ink);
  grid-row: span 2;
}
@media (min-width: 52rem) { .step-n { grid-row: auto; } }
.loop strong { font-weight: 600; }
.loop span:last-child { color: var(--ink-soft); font-size: 0.9375rem; }

/* --- 5. how it works ---------------------------------------------------- */

.steps { margin: 0; padding: 0 0 0 1.5rem; display: grid; gap: 1.75rem; }
.steps li::marker { font-family: var(--mono); color: var(--wireframe-ink); }
.steps h3 { margin-bottom: 0.35rem; }
.steps p { margin-bottom: 0; color: var(--ink-soft); }

/* --- 6. trust ----------------------------------------------------------- */

.trust { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.trust li {
  border-left: 3px solid var(--wireframe-ink);
  padding-left: 1rem;
  max-width: 62ch;
  color: var(--ink-soft);
}
.trust strong { color: var(--blueprint-navy); }

/* --- 7. limits ---------------------------------------------------------- */

.band-limits { background: rgba(10, 16, 32, 0.03); }

/* --- 7b. tell me what to build ------------------------------------------ */

/* The question itself carries the section, so .lede runs at heading weight
   here rather than as a subtitle. No box, no accent — asking plainly is the
   point, and --spark-amber stays reserved for the one CTA below it. */
.band-ask .lede {
  color: var(--blueprint-navy);
  font-size: 1.1875rem;
  max-width: 46ch;
  margin-bottom: 1.25rem;
}
@media (min-width: 48rem) { .band-ask .lede { font-size: 1.375rem; } }
.ask-how { color: var(--ink-soft); font-size: 0.9375rem; }
.limits { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.limits li {
  border-top: 1px solid var(--rule);
  padding-top: 0.75rem;
  max-width: 62ch;
  color: var(--ink-soft);
}
.limits strong { color: var(--blueprint-navy); }

/* --- 3b. why this exists -------------------------------------------------
   Main-body weight, not an aside. First paragraph carries the most size on
   the page after the hero — the personal admission is the argument. */

.maker-lead {
  max-width: 34ch;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--blueprint-navy);
  margin-bottom: 1.25rem;
}
.maker { max-width: 58ch; color: var(--ink-soft); }

@media (min-width: 48rem) {
  .maker-lead { font-size: 1.75rem; max-width: 26ch; }
  .maker { font-size: 1.125rem; }
  .band-maker .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
  .band-maker h2 { grid-column: 1 / -1; }
  .maker-lead { grid-column: 1; margin-bottom: 0; }
  .band-maker .maker { grid-column: 2; }
  .band-maker .maker + .maker { grid-column: 2; margin-bottom: 0; }
}

/* --- 8. waitlist -------------------------------------------------------- */

.waitlist {
  background-color: var(--blueprint-navy);
  background-image:
    linear-gradient(rgba(76, 195, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 195, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  color: var(--drafting-paper);
  padding-block: 3rem;
}
@media (min-width: 48rem) { .waitlist { padding-block: 4.5rem; } }

.waitlist h2 { color: var(--drafting-paper); }
.waitlist .sub { color: var(--paper-soft); margin-bottom: 1.5rem; }

.wl-form { display: grid; gap: 0.6rem; max-width: 30rem; margin-bottom: 1rem; }
@media (min-width: 34rem) { .wl-form { grid-template-columns: 1fr auto; } }

.wl-form input {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--rule-dark);
  border-radius: 2px;
  background: rgba(247, 245, 240, 0.06);
  color: var(--drafting-paper);
  min-width: 0;
}
.wl-form input::placeholder { color: rgba(247, 245, 240, 0.45); }

.wl-form button {
  font: inherit;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border: 0;
  border-radius: 2px;
  background: var(--spark-amber);
  color: var(--blueprint-navy);
  cursor: pointer;
}

.micro { font-size: 0.875rem; color: var(--paper-soft); max-width: 46ch; margin-bottom: 0.5rem; }

.wl-form button[disabled] { opacity: 0.65; cursor: default; }

/* Result states. Left rule rather than a tinted box — the page separates
   regions with rules, and a green/red panel would be the one piece of
   generic form chrome on an otherwise drafted page. */
.wl-msg {
  max-width: 46ch;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.wl-ok  { border-color: var(--spark-amber); color: var(--drafting-paper); }
.wl-err { border-color: var(--wireframe-cyan); color: var(--paper-soft); }

.wl-form input[aria-invalid="true"] { border-color: var(--wireframe-cyan); }

/* --- 9. footer title block ---------------------------------------------- */

.site-foot { padding-block: 2rem 2.5rem; }

.titleblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
  border-radius: 2px;
  margin-bottom: 1rem;
  max-width: 34rem;
}
@media (min-width: 40rem) { .titleblock { grid-template-columns: 2fr 1fr 1fr; } }

.tb-cell { padding: 0.6rem 0.85rem; border-right: 1px solid var(--rule); }
.tb-cell:last-child { border-right: 0; }
.tb-wide { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 40rem) {
  .tb-wide { grid-column: auto; border-right: 1px solid var(--rule); border-bottom: 0; }
}

.tb-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tb-val { display: block; font-family: var(--mono); font-size: 0.8125rem; }

.foot-links { font-size: 0.9375rem; color: var(--ink-soft); }
.foot-links a { margin-right: 0.35rem; }
.foot-links span { margin-right: 0.35rem; }

.form-wrap { max-width: 48rem; }
.intake-form { display:grid; gap:1rem; }
.intake-form label { display:grid; gap:.35rem; font-weight:600; }
.intake-form input,.intake-form select,.intake-form textarea,.dashboard-auth input { font:inherit; padding:.65rem; border:1px solid var(--rule); background:white; }
.intake-form textarea { min-height:6rem; resize:vertical; }
.intake-form .check { display:flex; align-items:flex-start; font-weight:400; }
.intake-form .check input { margin-top:.35rem; }
.intake-form button,.dashboard-auth button { font:inherit; font-weight:700; padding:.75rem 1.25rem; background:var(--spark-amber); border:0; cursor:pointer; }
.honeypot { position:absolute; left:-9999px; }
.dashboard-auth { display:flex; flex-wrap:wrap; gap:.75rem; align-items:end; }
.dashboard-auth label { display:grid; gap:.25rem; }
.dashboard-grid { display:grid; gap:2rem; margin-top:2rem; }
@media(min-width:56rem){.dashboard-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
.dashboard-grid section { border-top:3px solid var(--blueprint-navy); padding-top:1rem; }
.dashboard-grid table { width:100%; border-collapse:collapse; }
.dashboard-grid th,.dashboard-grid td { text-align:left; padding:.5rem; border-bottom:1px solid var(--rule); }
.dashboard-note { color:var(--ink-soft); margin-top:2rem; }
.source-status { margin-top:1.5rem; padding:1rem; border-left:3px solid var(--wireframe-ink); }
.source-status p { margin-bottom:.4rem; }
