/* Fair Shot Grants — Moravian University brand system.
   Hex values from moravian.edu/identity/visual/colors (official).
   Flat only: hairline borders and Light Grey fills for structure, no shadows or gradients. */

:root {
  /* --- Moravian palette (official) --- */
  --mu-blue: #00267A;         /* dominant brand color */
  --mu-grey: #CCCCCC;         /* structural only, NOT text on white */
  --mu-accent-blue: #078CF5;  /* highlight, active states (AA-large only) */
  --mu-light-grey: #F0F0F0;   /* section bands, card fills */
  --mu-dark-grey: #666666;    /* secondary text (passes AA on white) */
  --mu-dark-blue: #001B56;    /* hover on blue, high-contrast headings */
  --mu-black: #000000;
  --mu-white: #FFFFFF;

  /* --- Tertiary (sparingly — the two matcher signals only) --- */
  --mu-deep-green: #006668;   /* eligibility pass */
  --mu-gold: #E58200;         /* eligibility check */

  /* --- Semantic roles --- */
  --ink: var(--mu-black);
  --ink-2: var(--mu-dark-grey);
  --ink-3: var(--mu-dark-grey);
  --brand: var(--mu-blue);
  --brand-dark: var(--mu-dark-blue);
  --brand-tint: var(--mu-light-grey);
  --bg: var(--mu-white);
  --bg-soft: var(--mu-light-grey);
  --line: var(--mu-grey);
  --card: var(--mu-white);

  /* Eligibility signals (tertiary fills with accessible tinted variants) */
  --pass: var(--mu-deep-green);
  --pass-tint: #e4efef;
  --pass-ink: #004a4c;
  --check: var(--mu-gold);
  --check-tint: #fbeede;
  --check-ink: #7a460a;

  --radius: 8px;
  --radius-sm: 4px;

  --font-display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --font-sans: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.01em; color: var(--ink);
}

a { color: var(--brand); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 14px;
}
.eyebrow.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff; border: 1px solid var(--brand);
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  padding: 12px 20px; border-radius: var(--radius); cursor: pointer;
  text-decoration: none; transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn:focus-visible { outline: 3px solid var(--mu-accent-blue); outline-offset: 2px; }
.btn:disabled { opacity: 0.55; cursor: progress; }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-sm { padding: 9px 15px; font-size: 14px; }
.btn-block { width: 100%; margin-top: 4px; }
.btn-ghost { background: transparent; color: var(--brand); border: 1px solid var(--mu-grey); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--brand-dark); border-color: var(--brand); }
.btn-invert { background: #fff; color: var(--brand); border-color: #fff; }
.btn-invert:hover { background: var(--bg-soft); color: var(--brand-dark); border-color: var(--bg-soft); }

/* Brand mark */
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--brand); }
.brand .mark { color: var(--brand); flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); letter-spacing: 0.01em; text-transform: uppercase; }
.brand-name-2 { color: var(--brand); font-weight: 600; }

/* Skip link (visible on keyboard focus) */
.skip-link {
  position: absolute; left: 16px; top: -56px; z-index: 100;
  background: var(--brand); color: #fff; padding: 10px 16px;
  border-radius: 0 0 8px 8px; font-weight: 600; font-size: 14px; text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; outline: 3px solid var(--mu-accent-blue); outline-offset: 2px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--mu-white);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--brand); }
.nav-links a.btn { color: #fff; }
.nav-links a.btn:hover { color: #fff; }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--brand);
  padding: 8px; margin-right: -8px; cursor: pointer; border-radius: 8px;
}
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle:focus-visible { outline: 3px solid var(--mu-accent-blue); outline-offset: 2px; }

@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 66px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 24px 18px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 13px 2px; font-size: 16px; }
  .nav-links a.btn { margin-top: 10px; justify-content: center; padding: 13px 16px; }
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 76px 0 84px;
  background: var(--mu-light-grey);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4rem); line-height: 1.05; margin: 0 0 20px; font-weight: 700;
  color: var(--mu-dark-blue);
}
.lede { font-size: 18px; color: var(--ink-2); margin: 0 0 30px; max-width: 42ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-micro { margin: 18px 0 0; font-size: 13.5px; color: var(--ink-3); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 52px 0 60px; }
  .hero-visual { order: -1; }
}

/* Hero sample card */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-blur { display: none; }
.sample-card {
  position: relative; z-index: 1; width: 100%; max-width: 400px;
  background: var(--card); border: 1px solid var(--mu-grey); border-radius: var(--radius);
  padding: 22px;
  border-top: 4px solid var(--mu-blue);
}
.sample-top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.sample-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.25; color: var(--mu-dark-blue); }
.sample-fit { text-align: right; flex: none; }
.sample-num { font-family: var(--font-display); font-size: 32px; color: var(--brand); font-weight: 700; display: block; line-height: 1; }
.sample-cap { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }
.sample-gate {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  background: var(--check-tint); color: var(--check-ink); font-size: 12.5px; font-weight: 600;
  padding: 6px 10px; border-radius: var(--radius-sm);
}
.sample-gate .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--check); }
.sample-meta { font-size: 12.5px; color: var(--ink-3); margin-top: 12px; display: flex; flex-wrap: wrap; gap: 4px 14px; }
.sample-fitreason { font-size: 13.5px; color: var(--ink-2); margin: 12px 0 0; }

/* Sections */
.section { padding: 76px 0; }
.section-soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Dark Grey on the Light Grey fill is 5.04:1 — clears AA but not the 7:1 AAA bar,
   which is the threshold set for ~20/80 acuity. On soft fills, step secondary text
   up to Dark Blue (14.3:1). Both are core palette colors. */
.hero, .page-head, .section-soft, .eligibility, .legend, .callout {
  --ink-2: var(--mu-dark-blue);
  --ink-3: var(--mu-dark-blue);
}
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.5rem); line-height: 1.14; margin: 0 0 14px; font-weight: 600; color: var(--mu-dark-blue); }
.section-title.center { text-align: center; }
.section-lede { font-size: 17px; color: var(--ink-2); max-width: 60ch; margin: 0 auto 8px; }
.section-lede.center { text-align: center; }
.source-note { text-align: center; font-size: 12.5px; color: var(--ink-3); margin: 28px auto 0; max-width: 62ch; }
.source-note a { color: var(--brand); text-decoration: underline; }
@media (max-width: 860px) { .section { padding: 52px 0; } }

/* 3-column features */
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.feature {
  background: var(--card); border: 1px solid var(--mu-grey); border-radius: var(--radius);
  padding: 26px 24px;
  border-top: 3px solid var(--mu-blue);
}
.feature h3 { font-size: 18px; margin: 0 0 8px; font-weight: 600; color: var(--mu-dark-blue); }
.feature p { margin: 0; color: var(--ink-2); font-size: 15px; }
@media (max-width: 860px) { .cols-3 { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.step { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--brand); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 19px;
  margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin: 0 0 8px; font-weight: 600; color: var(--mu-dark-blue); }
.step p { margin: 0; color: var(--ink-2); font-size: 15px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 28px; margin-top: 34px; } }

/* Tool grid */
.tool-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 36px; align-items: start; margin-top: 44px;
}
@media (max-width: 900px) { .tool-grid { grid-template-columns: 1fr; gap: 24px; } }

.panel {
  background: var(--card); border: 1px solid var(--mu-grey); border-radius: var(--radius);
  padding: 26px; position: sticky; top: 90px;
}
@media (max-width: 900px) { .panel { position: static; } }
.panel-title { margin: 0 0 18px; font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--brand); }
.field { display: block; margin-bottom: 18px; }
.label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.opt { font-weight: 400; color: var(--ink-3); }
.hint { display: block; font-size: 14px; color: var(--ink-3); margin-bottom: 8px; line-height: 1.4; }
select, input, textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--mu-white); border: 1px solid var(--mu-grey); border-radius: var(--radius-sm);
  padding: 11px 13px; transition: border-color 0.12s ease;
}
textarea { resize: vertical; }
select:focus, input:focus, textarea:focus {
  outline: 3px solid var(--mu-accent-blue); outline-offset: 2px;
  border-color: var(--brand); background: #fff;
}
.disclaimer { margin: 16px 0 0; font-size: 14px; color: var(--ink-3); line-height: 1.45; }
.input-warning {
  margin: 0 0 18px; padding: 11px 13px; font-size: 14px; line-height: 1.45;
  color: var(--check-ink); background: var(--check-tint);
  border: 1px solid var(--check); border-radius: var(--radius-sm);
}

/* Status / empty / error */
.status {
  border: 1px dashed var(--mu-grey); border-radius: var(--radius);
  padding: 26px; color: var(--ink-2); background: var(--card);
}
.status p { margin: 0; }
.status.err { border-style: solid; border-color: var(--check); background: var(--check-tint); color: var(--check-ink); }
.status.note { border-style: solid; border-color: var(--brand); background: var(--mu-light-grey); color: var(--ink); }
.searching { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--brand); animation: pulse 1.1s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.1); } }

.result-count { font-size: 13.5px; color: var(--ink-2); margin: 0 0 16px; }
.results-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.results-head .result-count { margin: 0; flex: 1 1 200px; }
.results-head .btn { flex: none; }

/* Persistent link to the full opportunity list — shown in every results state */
.results-foot {
  margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--mu-grey);
  font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.results-foot a { color: var(--brand); font-weight: 600; }

/* Result cards */
#cards { display: flex; flex-direction: column; gap: 16px; }
.card {
  background: var(--card); border: 1px solid var(--mu-grey); border-radius: var(--radius);
  padding: 22px 24px; border-left: 4px solid var(--mu-blue); animation: rise 0.4s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.card-title { margin: 0; font-size: 18px; font-weight: 600; line-height: 1.3; font-family: var(--font-display); color: var(--mu-dark-blue); }
.card-title a { color: var(--mu-dark-blue); text-decoration: none; border-bottom: 1.5px solid var(--mu-grey); }
.card-title a:hover { border-color: var(--brand); color: var(--brand); }

.relevance { flex: none; width: 82px; text-align: right; }
.relevance .num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--brand); line-height: 1; }
.relevance .num.dim { color: var(--ink-3); }
.relevance .cap { font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-3); }
.bar { height: 4px; border-radius: 2px; background: var(--line); margin-top: 7px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: var(--brand); }

.gate {
  display: inline-flex; align-items: center; gap: 8px; margin: 14px 0 0;
  padding: 7px 12px; border-radius: var(--radius-sm); font-size: 13px; line-height: 1.35;
}
.gate.pass { background: var(--pass-tint); color: var(--pass-ink); }
.gate.check { background: var(--check-tint); color: var(--check-ink); }
.gate .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.gate.pass .dot { background: var(--pass); }
.gate.check .dot { background: var(--check); }
.gate b { font-weight: 700; }

.eligibility {
  margin: 10px 0 0; font-size: 13.5px; color: var(--ink-2);
  background: var(--bg-soft); border: 1px solid var(--mu-grey); border-radius: var(--radius-sm);
  padding: 10px 12px; line-height: 1.45;
}
.eligibility .eyebrow {
  display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--ink-3); margin-bottom: 3px; font-weight: 700;
}

.meta {
  font-size: 12.5px; color: var(--ink-3);
  margin: 12px 0 0; display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.fit { margin: 12px 0 0; color: var(--ink-2); font-size: 14.5px; }
.checks { margin: 12px 0 0; padding: 0; list-style: none; }
.checks li { font-size: 13.5px; color: var(--check-ink); padding-left: 20px; position: relative; margin-top: 7px; }
.checks li::before { content: "?"; position: absolute; left: 0; color: var(--check); font-weight: 700; }

/* Legal / terms */
.legal { max-width: 780px; margin: 40px auto 0; }
.legal p { font-size: 14px; color: var(--ink-2); margin: 0 0 14px; line-height: 1.65; }
.legal p:last-child { margin-bottom: 0; }
.legal strong { color: var(--mu-dark-blue); font-weight: 700; }
.legal a { color: var(--brand); text-decoration: underline; }
.updated { font-size: 14px; color: var(--ink-3); margin: 0; }
.updated.center { text-align: center; }

/* CTA band */
.cta-band { background: var(--brand); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 48px 24px; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin: 0; }
@media (max-width: 640px) { .cta-inner { flex-direction: column; text-align: center; } }

/* Footer */
.site-foot { background: var(--mu-dark-blue); color: #c9d2e6; }
.foot-grid { display: flex; justify-content: space-between; gap: 30px; padding: 44px 24px; flex-wrap: wrap; }
.site-foot .brand-name { color: #fff; }
.site-foot .brand-name-2 { color: #aeb9d6; }
.site-foot .mark { color: #fff; }
.foot-tag { margin: 12px 0 0; font-size: 14px; color: #aeb9d6; }
.foot-meta { max-width: 46ch; }
.foot-meta p { margin: 0 0 8px; font-size: 13.5px; line-height: 1.55; }
.foot-name { color: #fff; font-weight: 600; }
.site-foot a { color: #fff; text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .pulse { animation: none; }
}

/* ==========================================================================
   Resources / guide pages
   Reuses the brand system. Adds a two-signal read for AI use, echoing the
   matcher: Deep Green = use AI, Red (tertiary, status-marker use) = do it
   yourself. Both use accessible tinted variants.
   ========================================================================== */
:root {
  --use: var(--mu-deep-green);
  --use-tint: var(--pass-tint);
  --use-ink: var(--pass-ink);
  --diy: var(--mu-red, #BC204B);
  --diy-tint: #f9e6ea;
  --diy-ink: #8a1a3a;
}

/* Homepage entry point to the resources */
.resource-card {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  max-width: 820px; margin: 40px auto 0;
  background: var(--card); border: 1px solid var(--mu-grey); border-radius: var(--radius);
  border-left: 4px solid var(--mu-blue); padding: 26px 28px;
}
.resource-card .rc-body { min-width: 0; }
.resource-card .rc-kicker {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--brand); margin: 0 0 6px;
}
.resource-card h3 { font-size: 20px; margin: 0 0 8px; font-weight: 600; color: var(--mu-dark-blue); }
.resource-card p { margin: 0; color: var(--ink-2); font-size: 15px; }
.resource-card .rc-meta { margin-top: 10px; font-size: 12.5px; color: var(--ink-3); }
.resource-card .btn { flex: none; }
@media (max-width: 640px) {
  .resource-card { flex-direction: column; align-items: flex-start; gap: 18px; }
  .resource-card .btn { width: 100%; }
}

/* Guide page header band */
.page-head {
  background: var(--mu-light-grey); border-bottom: 1px solid var(--line);
  padding: 60px 0 52px;
}
.page-head h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.1rem); line-height: 1.08; margin: 0 0 18px;
  font-weight: 700; color: var(--mu-dark-blue); max-width: 20ch;
}
.page-head-sub { font-size: 18px; color: var(--ink-2); margin: 0; max-width: 60ch; font-style: italic; }
.page-head-meta {
  margin: 22px 0 0; font-family: var(--font-display); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3);
}
.back-link {
  display: inline-flex; align-items: center; gap: 6px; margin: 0 0 20px;
  font-weight: 600; font-size: 14px; color: var(--brand); text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* Readable single-column guide body */
.guide { max-width: 760px; margin: 0 auto; }
.guide-lede { font-size: 19px; line-height: 1.6; color: var(--ink); margin: 0 0 8px; }
.guide-lede strong { color: var(--mu-dark-blue); }
.guide h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.16; font-weight: 600;
  color: var(--mu-dark-blue); margin: 52px 0 14px;
}
.guide h2:first-of-type { margin-top: 40px; }
.guide > p { color: var(--ink-2); font-size: 16px; }
.guide a { color: var(--brand); text-decoration: underline; }

/* AI primer: the two mini-panels */
.ai-primer { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0 0; }
.ai-primer-item {
  border: 1px solid var(--mu-grey); border-radius: var(--radius); padding: 20px 22px;
  background: var(--card);
}
.ai-primer-item.use { border-top: 3px solid var(--use); }
.ai-primer-item.diy { border-top: 3px solid var(--diy); }
.ai-primer-item h3 { font-size: 16.5px; margin: 0 0 8px; font-weight: 600; color: var(--mu-dark-blue); }
.ai-primer-item p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
@media (max-width: 640px) { .ai-primer { grid-template-columns: 1fr; } }

/* Signal badges + legend */
.signal {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em; padding: 5px 12px; border-radius: 100px;
}
.signal .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.signal.use { background: var(--use-tint); color: var(--use-ink); }
.signal.use .dot { background: var(--use); }
.signal.diy { background: var(--diy-tint); color: var(--diy-ink); }
.signal.diy .dot { background: var(--diy); }
.legend {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin: 24px 0 0;
  padding: 16px 18px; border: 1px solid var(--mu-grey); border-radius: var(--radius);
  background: var(--bg-soft); font-size: 14px; color: var(--ink-2);
}
.legend .legend-row { display: flex; align-items: center; gap: 10px; }

/* Workflow steps */
.workflow { list-style: none; margin: 4px 0 0; padding: 0; }
.wstep { position: relative; border-top: 1px solid var(--line); padding: 30px 0; }
.wstep-head { display: flex; align-items: baseline; gap: 14px; }
.wstep-num { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--brand); flex: none; }
.wstep-head h3 { font-size: 20px; margin: 0; font-weight: 600; color: var(--mu-dark-blue); }
.wstep .signal { margin: 12px 0 0; }
.wstep > p { margin: 14px 0 0; color: var(--ink-2); font-size: 16px; }

/* "AI here" callouts */
.callout {
  margin: 16px 0 0; padding: 14px 16px; border-left: 3px solid var(--line);
  background: var(--bg-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.55;
}
.callout.use { border-left-color: var(--use); }
.callout.diy { border-left-color: var(--diy); }
.callout strong { color: var(--mu-dark-blue); font-weight: 700; }

/* Keystone warning panel */
.keystone {
  margin: 52px 0 0; padding: 34px 34px; background: var(--mu-dark-blue);
  border-radius: var(--radius); color: #d7deef;
}
.keystone h2 { color: #fff; margin: 0 0 14px; }
.keystone p { color: #d7deef; font-size: 16px; margin: 0 0 14px; }
.keystone .rule {
  margin: 20px 0 0; padding: 16px 18px; border-left: 3px solid var(--mu-accent-blue);
  background: rgba(255, 255, 255, 0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px; color: #eef2fb;
}
.keystone .rule strong { color: #fff; }
@media (max-width: 640px) { .keystone { padding: 26px 22px; } }

/* Three accounts */
.accounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0 0; }
.account {
  background: var(--card); border: 1px solid var(--mu-grey); border-top: 3px solid var(--mu-blue);
  border-radius: var(--radius); padding: 22px 22px;
}
.account h3 { font-size: 17px; margin: 0 0 8px; font-weight: 600; }
.account h3 a { color: var(--mu-dark-blue); }
.account p { margin: 0; font-size: 14px; color: var(--ink-2); }
@media (max-width: 760px) { .accounts { grid-template-columns: 1fr; } }

/* Closing panel + guide footnote */
.guide-close {
  margin: 52px 0 0; padding: 28px 30px; background: var(--bg-soft);
  border: 1px solid var(--mu-grey); border-radius: var(--radius);
}
.guide-close h2 { margin-top: 0; }
.guide-close p { margin: 0; color: var(--ink); font-size: 16.5px; }
.guide-foot { max-width: 760px; margin: 40px auto 0; }
.guide-foot p { font-size: 12.5px; color: var(--ink-3); font-style: italic; line-height: 1.6; margin: 0 0 10px; }
