/* Matlab Diagnostics — dashboard design system */

:root {
  /* Fixed brand teal — deliberately NOT part of the light/dark swap below.
     Used only where a solid teal fill sits behind permanently-white text
     (primary buttons, the CTA band): that pairing needs a teal dark enough
     for white text in both themes, unlike --teal-700 which brightens in
     dark mode so it stays legible as an accent against the dark page background. */
  --brand-solid: oklch(50% 0.11 195);
  --brand-solid-hover: oklch(44% 0.10 195);
  /* Same reasoning as --brand-solid, for the two solid-fill status pills. */
  --green-solid: oklch(48% 0.14 150);
  --red-solid: oklch(52% 0.18 25);

  --radius: 10px;
}

/* Dark is the default look for this site — :root carries it directly so pages
   painting before the toggle script runs never flash light. Explicit light
   mode is the override, gated to when a viewer (or their stored choice) asks
   for it, or a page opts out entirely with data-theme="light". */
:root,
:root[data-theme="dark"] {
  --teal-700: oklch(74% 0.11 195);
  --teal-500: oklch(70% 0.12 195);
  --teal-100: oklch(30% 0.05 195);
  --ink:      oklch(88% 0.01 250);
  --blue:     oklch(75% 0.13 255);
  --blue-100: oklch(30% 0.05 255);

  --bg:       oklch(19% 0.012 250);
  --surface:  oklch(23% 0.013 250);
  --nav-bg:   oklch(20% 0.013 250 / 0.85);
  --border:   oklch(32% 0.014 250);
  --text:     oklch(93% 0.004 250);
  --text-soft:oklch(68% 0.012 250);

  --quality-good: oklch(75% 0.12 165);
  --green:  oklch(72% 0.14 150);
  --green-bg: oklch(30% 0.06 150);
  --green-border: oklch(45% 0.09 150);
  --green-text: oklch(85% 0.09 150);
  --amber:  oklch(76% 0.13 80);
  --amber-bg: oklch(32% 0.06 80);
  --amber-text: oklch(85% 0.10 80);
  --red:    oklch(72% 0.15 25);
  --red-bg: oklch(32% 0.07 25);
  --red-border: oklch(48% 0.10 25);
  --red-text: oklch(85% 0.09 25);
  --gray:   oklch(68% 0.01 250);
  --gray-bg: oklch(28% 0.01 250);

  --shadow: 0 1px 2px oklch(0% 0 0 / 0.25), 0 4px 20px oklch(0% 0 0 / 0.35);
  color-scheme: dark;
}

/* An explicit light choice always wins, on any page. */
:root[data-theme="light"] {
  --teal-700: oklch(52% 0.10 195);
  --teal-500: oklch(72% 0.11 195);
  --teal-100: oklch(94% 0.04 195);
  --ink:      oklch(30% 0.03 250);
  --blue:     oklch(54% 0.16 255);
  --blue-100: oklch(94% 0.03 255);

  --bg:       oklch(97% 0.004 250);
  --surface:  oklch(99% 0.002 250);
  --nav-bg:   oklch(99% 0.002 250 / 0.92);
  --border:   oklch(90% 0.006 250);
  --text:     oklch(24% 0.01 250);
  --text-soft:oklch(46% 0.01 250);

  --quality-good: oklch(58% 0.11 165);
  --green:  oklch(55% 0.13 150);
  --green-bg: oklch(95% 0.045 150);
  --green-border: oklch(80% 0.08 150);
  --green-text: oklch(35% 0.10 150);
  --amber:  oklch(62% 0.14 80);
  --amber-bg: oklch(95% 0.05 80);
  --amber-text: oklch(38% 0.10 80);
  --red:    oklch(56% 0.17 25);
  --red-bg: oklch(95% 0.045 25);
  --red-border: oklch(82% 0.08 25);
  --red-text: oklch(38% 0.13 25);
  --gray:   oklch(50% 0.01 250);
  --gray-bg: oklch(93% 0.005 250);

  --shadow: 0 1px 2px oklch(0% 0 0 / 0.04), 0 4px 16px oklch(0% 0 0 / 0.05);
  color-scheme: light;
}

* { box-sizing: border-box; }
body { background: var(--bg); }
svg { display: block; flex-shrink: 0; } /* kills the baseline gap that throws off icon centering next to text */
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Public Sans', -apple-system, Segoe UI, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
h1, h2, h3, .brand-word {
  font-family: 'Poppins', 'Public Sans', sans-serif;
  margin: 0;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--teal-700); text-decoration: underline; }
button { font-family: inherit; }

/* ---------- brand lockup ---------- */
.brand { display: flex; align-items: center; gap: 10px; }
.brand-word { font-weight: 700; font-size: 17px; letter-spacing: 0.2px; line-height: 1.1; }
.brand-word b { color: var(--teal-700); }
.brand-word span { display: block; color: var(--blue); font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; }

/* ---------- shell layout ---------- */
.shell { display: flex; min-height: 100vh; }
.sidebar {
  width: 232px; flex: none; background: var(--surface); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 20px 14px; gap: 22px;
}
.sidebar nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar nav a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px;
  color: var(--text-soft); font-weight: 600; font-size: 13.5px;
}
.sidebar nav a:hover { background: var(--gray-bg); text-decoration: none; color: var(--text); }
.sidebar nav a.active { background: var(--teal-100); color: var(--teal-700); }
.sidebar nav a svg { flex: none; opacity: 0.9; }
.sidebar-foot { margin-top: auto; font-size: 11px; color: var(--text-soft); padding: 0 12px; }

.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 28px; border-bottom: 1px solid var(--border); background: var(--surface);
  position: sticky; top: 0; z-index: 15;
}
.topbar h1 { font-size: 18px; font-weight: 700; }
.topbar .sub { color: var(--text-soft); font-size: 12.5px; margin-top: 2px; }
.user-chip { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12.5px; flex: none;
}
.avatar.lg { width: 56px; height: 56px; font-size: 18px; }
.user-chip .who { line-height: 1.25; }
.user-chip .name { font-weight: 700; font-size: 13px; }
.user-chip .role { color: var(--text-soft); font-size: 11.5px; }

/* ---------- theme toggle ---------- */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text-soft); cursor: pointer; padding: 0; flex: none;
}
.theme-toggle:hover { background: var(--gray-bg); color: var(--text); }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.content { padding: 24px 28px; max-width: 1180px; width: 100%; margin: 0 auto; }

/* ---------- cards ---------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.card-pad { padding: 20px 22px; }
.card-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--border); }
.card-head h2 { font-size: 15px; font-weight: 700; }

.kpi-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 20px; }
.kpi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.kpi .n { font-size: 26px; font-weight: 700; font-family: 'Poppins', sans-serif; }
.kpi .l { color: var(--text-soft); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; margin-top: 2px; }
.kpi.accent-teal .n { color: var(--teal-700); }
.kpi.accent-amber .n { color: var(--amber); }
.kpi.accent-red .n { color: var(--red); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  border-radius: 8px; padding: 9px 16px; font-weight: 700; font-size: 13.5px; border: 1px solid transparent;
  cursor: pointer; line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand-solid); color: white; }
.btn-primary:hover { background: var(--brand-solid-hover); color: white; }
.btn-outline { background: var(--surface); border-color: var(--border); color: var(--text); }
.btn-outline:hover { background: var(--gray-bg); color: var(--text); }
.btn-danger { background: var(--red-bg); color: var(--red); border-color: var(--red-border); }
.btn-danger:hover { background: var(--red-border); color: var(--red-text); }
.btn-ghost { background: transparent; color: var(--text-soft); border-color: transparent; padding: 6px 10px; }
.btn-ghost:hover { background: var(--gray-bg); color: var(--text); }
.btn-sm { padding: 6px 11px; font-size: 12.5px; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text-soft); }
.field .hint { font-size: 11.5px; color: var(--text-soft); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input[type=text], .field input[type=email], .field input[type=password],
.field input[type=datetime-local], .field input[type=date], .field select, .field textarea {
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-size: 13.5px;
  font-family: inherit; background: var(--surface); color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-100);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 18px; }
.section-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal-700);
  margin: 26px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--teal-100);
}
.section-title:first-child { margin-top: 0; }

/* ---------- table ---------- */
table.data { width: 100%; border-collapse: collapse; }
table.data th {
  text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text-soft);
  padding: 10px 14px; border-bottom: 1px solid var(--border); background: var(--gray-bg);
}
table.data td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
table.data tr:last-child td { border-bottom: none; }
table.data tr:hover td { background: var(--gray-bg); }
.num { text-align: right; font-variant-numeric: tabular-nums; }

.results-editor td, .results-editor th { padding: 6px 8px; }
.results-editor input { width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 7px 9px; font-size: 13px; }
.row-remove { color: var(--red); background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; }
.row-remove:hover { background: var(--red-bg); }

/* ---------- badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px; letter-spacing: 0.2px; white-space: nowrap;
}
.badge-verified { background: var(--green-bg); color: var(--green); }
.badge-submitted { background: var(--amber-bg); color: var(--amber); }
.badge-flagged { background: var(--red-bg); color: var(--red); }
.badge-draft { background: var(--gray-bg); color: var(--gray); }

.quality-excellent { color: var(--green); font-weight: 700; }
.quality-good { color: var(--quality-good); font-weight: 700; }
.quality-fair { color: var(--amber); font-weight: 700; }
.quality-poor { color: var(--red); font-weight: 700; }
.quality-na { color: var(--text-soft); }

.verdict-banner {
  display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: var(--radius);
  font-weight: 700; margin-bottom: 20px;
}
.verdict-banner.positive { background: var(--green-bg); color: var(--green-text); border: 1px solid var(--green-border); }
.verdict-banner.negative { background: var(--red-bg); color: var(--red-text); border: 1px solid var(--red-border); }
.verdict-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: 11px; letter-spacing: 0.4px; text-transform: uppercase; }
.verdict-pill.positive { background: var(--green-solid); color: white; }
.verdict-pill.negative { background: var(--red-solid); color: white; }

.who-cell { display: flex; align-items: center; gap: 10px; }
.who-cell .name { font-weight: 700; font-size: 13px; }
.who-cell .role { color: var(--text-soft); font-size: 11.5px; }

/* ---------- signature box ---------- */
.sig-box {
  border: 1.5px dashed var(--border); border-radius: var(--radius); padding: 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px; background: var(--gray-bg);
}
.sig-box.has-sig { border-style: solid; background: var(--surface); }
.sig-preview { max-width: 220px; max-height: 90px; object-fit: contain; }
.sig-script { font-family: 'Dancing Script', cursive; font-size: 34px; color: var(--blue); }
.sig-meta { font-size: 11.5px; color: var(--text-soft); }
.upload-drop {
  border: 1.5px dashed var(--teal-500); border-radius: 8px; padding: 16px; text-align: center;
  background: var(--teal-100); color: var(--teal-700); font-size: 12.5px; font-weight: 600; cursor: pointer;
}

/* ---------- alerts ---------- */
.alert { border-radius: 8px; padding: 12px 16px; font-size: 13px; margin-bottom: 18px; display: flex; gap: 10px; align-items: flex-start; }
.alert-ok { background: var(--green-bg); color: var(--green-text); }
.alert-error { background: var(--red-bg); color: var(--red-text); }
.alert-warn { background: var(--amber-bg); color: var(--amber-text); }

/* ---------- login ---------- */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--bg), var(--teal-100)); padding: 24px; }
.auth-card { width: 380px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); padding: 32px 30px; }
.auth-card .brand { justify-content: center; margin-bottom: 22px; }
.auth-card .tagline { text-align: center; font-style: italic; color: var(--text-soft); font-size: 12px; margin: -14px 0 20px; }
.auth-card .btn-primary { width: 100%; padding: 11px; margin-top: 6px; }
.demo-creds { margin-top: 18px; padding: 12px 14px; background: var(--gray-bg); border-radius: 8px; font-size: 11.5px; color: var(--text-soft); line-height: 1.6; }

/* ---------- verification (public) ---------- */
.verify-wrap { max-width: 560px; margin: 60px auto; padding: 0 20px; }
.verify-result { border-radius: var(--radius); padding: 22px; margin-top: 20px; }
.verify-result.genuine { background: var(--green-bg); border: 1px solid var(--green-border); color: var(--green-text); }
.verify-result.not-found { background: var(--red-bg); border: 1px solid var(--red-border); color: var(--red-text); }
.verify-result h3 { display: flex; align-items: center; gap: 10px; font-size: 16px; }

/* ---------- utility ---------- */
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.muted { color: var(--text-soft); }
.stack { display: flex; flex-direction: column; gap: 4px; }
.row { display: flex; align-items: center; gap: 8px; }
.empty-state { text-align: center; padding: 50px 20px; color: var(--text-soft); }

@media (max-width: 860px) {
  .sidebar { display: none; }
  .kpi-row, .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* =====================================================================
   Public marketing site — nav, hero, sections, footer
   ===================================================================== */
.site-nav {
  position: sticky; top: 0; z-index: 20; background: var(--nav-bg); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-nav .wrap { max-width: 1160px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-nav .links { display: flex; align-items: center; gap: 28px; }
.site-nav .links a { color: var(--text); font-weight: 600; font-size: 13.5px; }
.site-nav .links a:hover { color: var(--teal-700); text-decoration: none; }
.site-nav .links a.current { color: var(--teal-700); }

.site-main { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.hero { padding: 76px 0 60px; text-align: center; }
.hero .eyebrow { color: var(--teal-700); font-weight: 700; font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; }
.hero h1 { font-size: 42px; line-height: 1.15; margin: 14px 0 18px; max-width: 780px; margin-left: auto; margin-right: auto; }
.hero p.lede { font-size: 16px; color: var(--text-soft); max-width: 600px; margin: 0 auto 28px; line-height: 1.6; }
.hero .cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero .btn { padding: 12px 22px; font-size: 14px; }

.cert-showcase { display: flex; justify-content: center; padding: 10px 0 36px; }
.cert-card {
  width: 340px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow); padding: 18px 20px; transform: rotate(-1.5deg);
}
.cert-card-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding-bottom: 10px; margin-bottom: 8px; border-bottom: 2px solid var(--teal-100); }
.cert-ref { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 12px; }
.cert-seal { display: inline-flex; align-items: center; gap: 5px; color: var(--green); font-size: 10.5px; font-weight: 700; }
.cert-mini-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.cert-mini-table td { padding: 5px 0; border-bottom: 1px dotted var(--border); }
.cert-mini-table td:last-child { text-align: right; font-weight: 700; }
.cert-code { margin-top: 10px; font-size: 9.5px; color: var(--text-soft); text-align: center; letter-spacing: 0.2px; }

.trust-strip { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; padding: 20px 0 60px; color: var(--text-soft); font-size: 12.5px; font-weight: 600; }
.trust-strip span { display: flex; align-items: center; gap: 7px; }
.trust-strip svg { color: var(--teal-700); flex: none; }

.site-section { padding: 60px 0; }
.site-section.tint { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.section-head .eyebrow { color: var(--teal-700); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.section-head h2 { font-size: 28px; margin: 10px 0 12px; }
.section-head p { color: var(--text-soft); font-size: 14.5px; line-height: 1.6; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 26px 24px; box-shadow: var(--shadow); text-align: center; }
.feature-card .icon-wrap {
  width: 44px; height: 44px; border-radius: 10px; background: var(--teal-100); color: var(--teal-700);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { color: var(--text-soft); font-size: 13.5px; line-height: 1.6; margin: 0; }

/* Photo variant: an image fills the card top edge-to-edge, icon becomes a small
   badge overlapping the photo, rest of the card unchanged. */
.feature-card.has-photo { padding: 0 0 24px; overflow: hidden; }
.feature-card.has-photo .photo-wrap { position: relative; margin-bottom: 34px; }
.feature-card.has-photo .photo-wrap img { display: block; width: 100%; height: 168px; object-fit: cover; }
.feature-card.has-photo .icon-wrap {
  position: absolute; left: 24px; bottom: -20px; margin: 0; background: var(--surface);
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.feature-card.has-photo h3, .feature-card.has-photo p { padding: 0 24px; }

/* ---------- full-width hero banner photo ---------- */
.hero-banner { margin: 8px 0 40px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.hero-banner img { display: block; width: 100%; height: 380px; object-fit: cover; }

/* ---------- sample gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.gallery-card img { display: block; width: 100%; height: 190px; object-fit: cover; }
.gallery-card-body { padding: 14px 16px; }
.gallery-card .ref { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 12.5px; color: var(--teal-700); }
.gallery-card .caption { font-size: 12.5px; color: var(--text-soft); margin-top: 4px; line-height: 1.5; }

/* ---------- inline section photo (About / process) ---------- */
.section-photo { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 20px; }
.section-photo img { display: block; width: 100%; height: 260px; object-fit: cover; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-banner img { height: 240px; }
}

.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-left: 6px; }
.step .num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--brand-solid); color: white; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; margin-bottom: 14px;
}
.step h3 { font-size: 15.5px; margin-bottom: 6px; }
.step p { color: var(--text-soft); font-size: 13.5px; line-height: 1.6; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px 16px; }
.team-card .name { font-weight: 700; font-size: 14px; margin-top: 12px; }
.team-card .role { color: var(--text-soft); font-size: 12px; margin-top: 2px; }

.about-lede { max-width: 720px; margin: 0 auto; text-align: center; font-size: 16px; color: var(--text); line-height: 1.7; }
.about-lede .tagline { display: block; font-style: italic; color: var(--teal-700); margin-top: 10px; font-weight: 600; }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.contact-item .icon-wrap { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-100); color: var(--teal-700); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.contact-item .l { font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--text-soft); font-weight: 700; }
.contact-item .v { font-size: 13.5px; font-weight: 600; margin-top: 4px; }

.cta-band { background: var(--brand-solid); border-radius: 20px; padding: 50px 40px; text-align: center; color: white; margin: 0 0 60px; }
.cta-band h2 { color: white; font-size: 26px; margin-bottom: 10px; }
.cta-band p { color: oklch(94% 0.02 195); margin-bottom: 24px; }
.cta-band .btn-primary { background: white; color: var(--brand-solid); }
.cta-band .btn-primary:hover { background: oklch(94% 0.02 195); }
.cta-band .btn-outline { background: transparent; border-color: oklch(85% 0.03 195); color: white; }
.cta-band .btn-outline:hover { background: var(--brand-solid-hover); color: white; }

.site-footer { border-top: 1px solid var(--border); padding: 40px 0; color: var(--text-soft); font-size: 12.5px; }
.site-footer .wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.site-footer a { color: var(--text-soft); }
.site-footer a:hover { color: var(--teal-700); }

@media (max-width: 860px) {
  .feature-grid, .steps-row, .team-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .site-nav .links { display: none; }
  .hero h1 { font-size: 32px; }
}
