/* =================================================================
   mkrops.com — page layout
   The COMMERCE / company face of MkrOps, Inc. (AMBER surface).
   Links /_shared/family.css FIRST; this file ADDS only what the
   shared system lacks. --accent resolves to amber via
   <body data-surface="com">. Reuse shared classes/vars everywhere.
   stdlib only · no build · no webfont fetch.
   ================================================================= */

/* ---------------------------------------------------------------
   TRUST / QUALS STRIP — small stacked qualification cells.
   Reuses .grid--4, .pill, .dot, .mock-badge from the shared system.
   --------------------------------------------------------------- */
.quals { margin-top: 0.5rem; }
.qual {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.1rem 1.2rem;
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.qual__k {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-mute);
}
.qual__v { font-size: 1.18rem; font-weight: 680; letter-spacing: -0.02em; color: var(--fg); }
.qual__v--mono { font-family: var(--mono); font-size: 1rem; letter-spacing: 0.04em; color: var(--accent-bright); }
.qual .pill { align-self: flex-start; }

/* ---------------------------------------------------------------
   CAPABILITY STATEMENT — three competency cards across the top,
   NAICS code panel spanning the full width below them.
   --------------------------------------------------------------- */
.capstmt {
  margin-top: 2rem;
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(3, 1fr);
}
.capcodes { grid-column: 1 / -1; }   /* NAICS panel spans full row */

.capcard { display: flex; flex-direction: column; }
.caplist {
  margin: 0.2rem 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.caplist li {
  position: relative; padding-left: 1.1rem;
  font-size: 0.92rem; color: var(--fg-soft); line-height: 1.45;
}
.caplist li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); opacity: 0.8;
}
.capcard__note {
  margin: 0.9rem 0 0; font-size: 0.78rem; color: var(--fg-faint);
  line-height: 1.45; border-top: 1px solid var(--line-soft); padding-top: 0.7rem;
}

/* ---------------------------------------------------------------
   OPPORTUNITIES TICKER — label frame above the shared .ticker strip.
   --------------------------------------------------------------- */
.ticker-frame { padding-top: 1.2rem; padding-bottom: 0.4rem; }
.ticker-frame__label {
  display: flex; align-items: center; margin: 0;
}

/* ---------------------------------------------------------------
   CTA BAND — centered call to engage, amber-tinted radial wash.
   --------------------------------------------------------------- */
.ctaband {
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 50% 0%, var(--accent-glow), transparent 62%),
    var(--ink-850);
}
.ctaband__inner { display: flex; flex-direction: column; align-items: center; }
.ctaband .section__eyebrow { margin-bottom: 0.7rem; }
.ctaband__title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.06;
  color: var(--fg);
}
.ctaband__lede {
  margin: 0 auto 1.8rem; max-width: 52ch;
  font-size: 1.06rem; color: var(--fg-soft);
}
.ctaband__cta { justify-content: center; }

/* ---------------------------------------------------------------
   RESPONSIVE — collapse the cap-statement grid on narrow viewports.
   (Shared family.css already collapses .grid--3/--4 at 880px.)
   --------------------------------------------------------------- */
@media (max-width: 880px) {
  .capstmt { grid-template-columns: 1fr; }
}
