/* ============================================================
   CaptureBridge Federal Advisors Website
   Design tokens + shared component CSS
   Official brand palette (see CaptureBridge style guide):
   United States Flag Blue #002868 (primary)
   Pure White #FFFFFF (main background)
   United States Flag Red #BF0A30 (accent, CTAs, logo B)
   Capitol Stone #F4F0E8 (support panels)
   Full Black #000000 (body text)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,300;8..60,400;8..60,500;8..60,600;8..60,700&family=Geist:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Brand */
  --brand-navy: #002868;
  --brand-navy-deep: #001a4d;
  --brand-navy-soft: #1c3f85;
  --brand-red: #bf0a30;
  --brand-red-deep: #99081f;
  --brand-red-light: #ef6079;   /* red for use on navy backgrounds */
  --brand-stone: #f4f0e8;
  --brand-stone-deep: #e9e3d6;
  --brand-black: #000000;

  /* Type */
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-ui: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Scale */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --maxw: 1240px;
  --maxw-narrow: 980px;

  /* Theme: pure white primary, Capitol Stone support */
  --bg: #ffffff;
  --bg-elev: var(--brand-stone);
  --surface: #ffffff;
  --surface-soft: var(--brand-stone);
  --ink: #000000;
  --ink-muted: rgba(0, 0, 0, 0.78);
  --ink-faint: rgba(0, 0, 0, 0.58);
  --rule: rgba(0, 26, 77, 0.14);
  --rule-strong: rgba(0, 26, 77, 0.32);
  --accent: var(--brand-red);
  --on-accent: #ffffff;
  --card-bg: #faf8f3;
  --card-bg-strong: #ffffff;
  --btn-primary-bg: var(--brand-red);
  --btn-primary-ink: #ffffff;
  --btn-primary-hover: var(--brand-red-deep);
  --btn-ghost-border: rgba(0, 40, 104, 0.35);
  --btn-ghost-hover: rgba(0, 40, 104, 0.05);
}

/* ============================================================
   Base
   ============================================================ */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; margin: 0; line-height: 1.08; text-wrap: balance; color: var(--brand-navy); }
p { margin: 0; text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }

/* Accessibility: visible keyboard focus, anchor offset under sticky header,
   reduced motion support */
:focus-visible {
  outline: 3px solid var(--brand-navy);
  outline-offset: 2px;
  border-radius: 2px;
}
.site-footer :focus-visible,
.final-cta :focus-visible,
.stats-strip :focus-visible,
.svc-final :focus-visible {
  outline-color: #ffffff;
}
section[id], [id^="s0"] { scroll-margin-top: 110px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--brand-red);
  opacity: 0.95;
}
.eyebrow.accent { color: var(--accent); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: var(--maxw-narrow); }
.container > * { min-width: 0; }

.section {
  padding: 96px 0;
  border-top: 1px solid var(--rule);
}
.section.no-rule { border-top: 0; }
.section.tight { padding: 64px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}
.section-head p {
  color: var(--ink-muted);
  font-size: 18px;
  max-width: 56ch;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-head { gap: 18px; margin-bottom: 34px; }
  .section-head h2 { font-size: 32px; line-height: 1.08; }
  .section-head p { font-size: 16.5px; }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    gap: 8px;
  }
}

/* ============================================================
   Photo frames
   ============================================================ */
.photo-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 26, 77, 0.14);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card .caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-top: 3px solid var(--brand-red);
  background: var(--brand-navy);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.photo-plain {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.photo-plain img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 228px;
  max-width: 100%;
  height: auto;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a.nav-link {
  font-size: 15px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink-muted);
  font-weight: 500;
}
.nav a.nav-link:hover { color: var(--brand-navy); background: var(--btn-ghost-hover); }
.nav a.nav-link.current { color: var(--brand-navy); font-weight: 600; }
.nav .nav-divider { width: 1px; height: 18px; background: var(--rule); margin: 0 8px; }
@media (max-width: 920px) {
  .site-header .container {
    height: auto;
    min-height: 84px;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 12px;
    gap: 12px 18px;
  }
  .nav {
    flex: 1 1 100%;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .nav a.nav-link {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 14px;
  }
  .nav .nav-divider,
  .nav .btn {
    display: none;
  }
}
@media (max-width: 640px) {
  .site-header .container {
    min-height: 0;
    gap: 16px;
  }
  .brand {
    gap: 10px;
    min-width: 0;
  }
  .brand-logo { width: 206px; }
  .nav .btn { display: none; }
}
@media (max-width: 420px) {
  .brand-logo { width: min(190px, calc(100vw - 40px)); }
}

/* ============================================================
   Buttons
   Official kit: red for primary calls to action
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14.5px; }
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-ink);
}
.btn-primary:hover { background: var(--btn-primary-hover); }
.btn-navy {
  background: var(--brand-navy);
  color: #ffffff;
}
.btn-navy:hover { background: var(--brand-navy-soft); }
.btn-ghost {
  background: transparent;
  color: var(--brand-navy);
  border-color: var(--btn-ghost-border);
}
.btn-ghost:hover { background: var(--btn-ghost-hover); border-color: var(--rule-strong); }
.btn-text {
  background: transparent;
  color: var(--brand-navy);
  padding: 0 0 4px;
  height: auto;
  border-radius: 0;
  border-bottom: 1px solid var(--rule-strong);
}
.btn-text:hover { border-bottom-color: var(--accent); color: var(--accent); }
@media (max-width: 640px) {
  .btn {
    width: 100%;
    min-height: 48px;
    height: auto;
    justify-content: center;
    padding: 12px 16px;
    white-space: normal;
    text-align: center;
  }
}

/* ============================================================
   Cards / common
   ============================================================ */
.card {
  background: var(--card-bg-strong);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 1px 0 rgba(0,26,77,0.04);
}
.card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.card h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 10px;
}
.card p {
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ============================================================
   GEO answer pages
   ============================================================ */
.geo-hero {
  padding: 64px 0 72px;
  background:
    radial-gradient(ellipse 70% 60% at 95% 0%, rgba(0,40,104,0.06), transparent 60%),
    linear-gradient(180deg, var(--brand-stone), #ffffff);
  border-bottom: 1px solid var(--rule);
}
.geo-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  max-width: 18ch;
  margin: 18px 0 18px;
}
.geo-hero .lead {
  color: var(--ink-muted);
  font-size: 19px;
  max-width: 62ch;
}
.geo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.answer-box {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  max-width: 880px;
  box-shadow: 0 12px 30px rgba(0,26,77,0.08);
}
.answer-box .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.answer-box p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.24;
  color: var(--brand-navy);
}
.geo-body {
  padding: 72px 0;
}
.geo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}
.geo-article {
  max-width: 820px;
}
.geo-article h2 {
  font-size: 34px;
  margin: 0 0 18px;
}
.geo-article h3 {
  font-size: 24px;
  margin: 34px 0 12px;
}
.geo-article p,
.geo-article li {
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.72;
}
.geo-article a {
  color: var(--brand-navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.geo-article ul,
.geo-article ol {
  margin: 0 0 24px;
  padding-left: 22px;
}
.geo-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 34px;
}
.geo-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--card-bg-strong);
}
.geo-card h3 {
  font-size: 21px;
  margin: 0 0 10px;
}
.geo-card p {
  font-size: 15.5px;
  line-height: 1.6;
}
.geo-side {
  position: sticky;
  top: 112px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--card-bg);
  padding: 24px;
}
.geo-side h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.geo-side a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--rule);
  color: var(--brand-navy);
  font-size: 15px;
}
.source-list {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--card-bg);
}
.source-list h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.source-list a {
  color: var(--brand-navy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.geo-faq-list {
  display: grid;
  gap: 14px;
}
.geo-faq-item {
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 22px;
}
.geo-faq-item h2,
.geo-faq-item h3 {
  font-size: 23px;
  margin: 0 0 10px;
}
.geo-faq-item p {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.64;
}
@media (max-width: 920px) {
  .geo-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .geo-side {
    position: static;
  }
}
@media (max-width: 640px) {
  .geo-hero { padding: 52px 0 56px; }
  .geo-hero .lead,
  .geo-article p,
  .geo-article li { font-size: 16px; }
  .answer-box { padding: 20px; }
  .geo-card-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--brand-navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 72px 0 32px;
  margin-top: 0;
  border-top: 3px solid var(--brand-red);
}
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 18px;
  font-weight: 500;
}
.site-footer a { color: rgba(255,255,255,0.9); display: block; padding: 6px 0; font-size: 15px; }
.site-footer a:hover { color: var(--brand-stone); }
.site-footer .footer-mark {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  background: #ffffff;
  border-radius: var(--radius-md);
}
.site-footer .footer-mark .brand-logo {
  width: 220px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid .brand-block p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-top: 18px;
  max-width: 32ch;
}
.footer-meta {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .site-footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .site-footer a,
  .footer-meta,
  .fc-link {
    overflow-wrap: anywhere;
  }
}

/* Footer contact strip */
.footer-contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-contact .fc-block h4 { margin-bottom: 18px; }
.fc-rows { display: flex; flex-direction: column; gap: 14px; }
.fc-rows > div { display: flex; flex-direction: column; gap: 3px; }
.fc-city {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.fc-sub {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.fc-link {
  display: inline-block !important;
  padding: 0 !important;
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  color: #fff !important;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.fc-link:hover { color: var(--brand-stone) !important; }
@media (max-width: 920px) {
  .footer-contact { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .footer-contact {
    gap: 28px;
    padding-bottom: 34px;
    margin-bottom: 34px;
  }
}

/* ============================================================
   Audience grid (shared)
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: var(--surface);
}
.audience-card {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.15s ease;
  min-height: 240px;
}
.audience-card:hover { background: var(--card-bg); }
.audience-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.audience-card h3 {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: auto;
}
.audience-card p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 1100px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .audience-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Process grid (shared)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--rule-strong);
}
.process-step::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 56px;
  height: 5px;
  background: var(--brand-red);
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
}
.process-step p {
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.process-step ul.deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.process-step ul.deliverables li {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  text-transform: uppercase;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   Final CTA band (shared)
   ============================================================ */
.final-cta {
  background: var(--brand-navy);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--brand-red);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.final-cta h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.final-cta h2 em { color: var(--brand-stone); font-style: italic; font-weight: 500; }
.final-cta p { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 50ch; margin-bottom: 28px; }
.final-cta .eyebrow { color: rgba(255,255,255,0.7); }
.final-cta .eyebrow::before { background: var(--brand-red-light); }
.final-cta .btn-primary { background: var(--brand-red); color: #fff; }
.final-cta .btn-primary:hover { background: var(--brand-red-deep); }
.final-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }
.final-cta .cta-list {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.final-cta .cta-list .item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: baseline;
}
.final-cta .cta-list .item .label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.final-cta .cta-list .item .val { color: #fff; font-size: 16px; font-weight: 500; }
@media (max-width: 920px) {
  .final-cta .container { grid-template-columns: 1fr; gap: 40px; }
  .final-cta .cta-list { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 32px; }
}
@media (max-width: 640px) {
  .final-cta { padding: 64px 0; }
  .final-cta h2 {
    font-size: 36px;
    line-height: 1.08;
  }
  .final-cta p { font-size: 16px; }
  .final-cta .cta-list .item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ============================================================
   Forms
   ============================================================ */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%), linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%); background-position: calc(100% - 18px) center, calc(100% - 12px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 30px; }
.field select option { color: var(--brand-navy); background: #fff; }

/* ============================================================
   Utility
   ============================================================ */
.divider { height: 1px; background: var(--rule); margin: 32px 0; }
.kbd-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.kbd-tag.accent { color: var(--accent); border-color: rgba(191,10,48,0.4); }

.list-checked { list-style: none; padding: 0; margin: 0; }
.list-checked li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: 16px;
}
.list-checked li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
