/* ==========================================================================
   Power Solution Inc., Corporate site design system
   Single stylesheet, no build step.
   ========================================================================== */

/* ----------  Design tokens  ---------- */
:root {
  --ink: #16382d;          /* deep forest green (replaces near-black) */
  --ink-soft: #1e4a3b;
  --ink-line: #2c5848;
  --bg: #f6f3ea;           /* warm cream page background */
  --paper: #ffffff;
  --paper-warm: #f0ece0;
  --paper-warm-2: #e7e2d3;
  --line: #e3ded0;
  --text: #233029;         /* dark green-charcoal (not black) */
  --muted: #5d655d;
  --muted-2: #828a80;
  --brand: #f5d14e;
  --brand-strong: #e9bd25;
  --brand-ink: #3d3100; /* readable text when on brand yellow */
  --ok: #2f7d52;

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(16, 18, 22, 0.06), 0 1px 1px rgba(16, 18, 22, 0.04);
  --shadow: 0 18px 40px -24px rgba(16, 18, 22, 0.35);

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.35rem + 0.75vw, 2rem);
  --step-3: clamp(1.95rem, 1.65rem + 1.5vw, 2.9rem);
  --step-4: clamp(2.4rem, 1.9rem + 2.6vw, 4rem);
}

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

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }

p { margin: 0 0 1rem; }

a {
  color: inherit;
  text-decoration-color: rgba(0, 0, 0, 0.25);
  text-underline-offset: 3px;
}

ul,
ol { margin: 0 0 1rem; padding-left: 1.2rem; }

strong { font-weight: 650; }

:focus-visible {
  outline: 3px solid var(--brand-strong);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ----------  Layout primitives  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
}

.section--tight { padding-block: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section--warm { background: var(--paper-warm); }
.section--ink { background: var(--ink); color: #d9dbe0; }
.section--ink h2,
.section--ink h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-head);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand-strong);
  display: inline-block;
}

.section--ink .eyebrow { color: var(--brand); }
.section--ink .eyebrow::before { background: var(--brand); }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--muted);
  max-width: 58ch;
}

.measure { max-width: 64ch; }
.center { text-align: center; }
.center .eyebrow,
.center .lede { margin-inline: auto; justify-content: center; }

.grid {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.6vw, 1.6rem);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 860px) {
  .grid-3,
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 1rem + 4vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); background: #0f291f; }
.btn--brand {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--brand-ink);
}
.btn--brand:hover { background: var(--brand-strong); border-color: var(--brand-strong); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.section--ink .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.section--ink .btn--ghost:hover { background: #fff; color: var(--ink); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ----------  Header / nav  ---------- */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 100;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0.75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 0.1rem + 1vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  padding: 0.4rem 0.2rem;
  position: relative;
}
.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: -0.1rem;
  height: 2px;
  background: var(--brand-strong);
}

.nav-cta { margin-left: 0.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.5rem var(--gutter) 1.25rem;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 0.95rem 0; }
  .nav-links a[aria-current="page"]::after,
  .nav-links a:hover::after { display: none; }
  .nav-cta { margin: 0.9rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  background-color: var(--bg);
  color: var(--text);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before { /* soft dotted texture */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22, 56, 45, 0.08) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(175deg, #000 5%, transparent 92%);
  mask-image: linear-gradient(175deg, #000 5%, transparent 92%);
  pointer-events: none;
}
.hero::after { /* warm brand glow */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(46% 58% at 92% -5%, rgba(245, 209, 78, 0.34), transparent 60%),
    radial-gradient(42% 52% at -5% 105%, rgba(22, 56, 45, 0.10), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 1rem + 4vw, 3.5rem);
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 6.5rem);
}
.hero h1 { max-width: 20ch; }
.hero-lede { font-size: var(--step-1); color: var(--muted); max-width: 56ch; }

/* Brand Ψ watermark */
.hero-mark {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-48%);
  width: clamp(300px, 40vw, 560px);
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 900px) { .hero-mark { right: -24%; opacity: 0.55; } }

/* Metrics strip inside the hero */
.hero .metrics { margin-top: clamp(2.5rem, 2rem + 3vw, 4rem); }

/* Highlighter accent for a key headline phrase */
.hl {
  color: #a87900;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}
.hero-tags li {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

/* ----------  Metric cards  ---------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.section--ink .metrics,
.hero .metrics { background: var(--ink-line); border-color: var(--ink-line); }
@media (max-width: 760px) { .metrics { grid-template-columns: repeat(2, 1fr); } }

.metric {
  background: var(--paper);
  padding: 1.5rem 1.4rem;
}
.section--ink .metric,
.hero .metric { background: var(--ink-soft); }
.metric .num {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.section--ink .metric .num,
.hero .metric .num { color: #fff; }
.metric .num .unit { font-size: 0.55em; color: var(--muted); margin-left: 0.15em; }
.hero .metric .num .unit { color: var(--brand); }
.metric .label {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--step--1);
  color: var(--muted);
}
.hero .metric .label { color: #aeb3bd; }

/* ----------  Cards  ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.card--warm { background: var(--paper-warm); }
.card h3 { font-size: var(--step-1); }
.card p:last-child { margin-bottom: 0; }

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--brand);
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 24px; height: 24px; }

.vertical-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

/* ----------  Feature list  ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}
.feature-list .tick {
  margin-top: 0.15rem;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 7px;
  background: rgba(245, 209, 78, 0.25);
  color: var(--brand-ink);
  display: grid;
  place-items: center;
}
.section--ink .feature-list .tick { background: rgba(245, 209, 78, 0.2); color: var(--brand); }
.feature-list h4 { font-family: var(--font-head); font-size: 1.02rem; margin: 0 0 0.2rem; color: inherit; }
.section--ink .feature-list h4 { color: #fff; }
.feature-list p { margin: 0; color: var(--muted); font-size: 0.97rem; }
.section--ink .feature-list p { color: #b4b9c2; }

/* ----------  Trust strip (Leidos)  ---------- */
.trust {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-warm);
  padding: clamp(1.5rem, 1rem + 2vw, 2.4rem);
}
.trust-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.trust-head .seal {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink); color: var(--brand);
  display: grid; place-items: center; flex: 0 0 auto;
}
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.vendor {
  background: #fff;
  padding: 1rem 1.1rem;
}
.vendor .v-name { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.vendor .v-role { font-size: 0.85rem; color: var(--muted); }

/* ----------  Tables  ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.95rem;
}
table.data caption {
  text-align: left;
  padding: 0 0 0.9rem;
  color: var(--muted-2);
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
table.data th,
table.data td {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data thead th {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper-warm);
}
table.data tbody tr:last-child td { border-bottom: none; }
table.data tbody tr:hover { background: var(--paper-warm); }
.pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(47, 125, 82, 0.12);
  color: var(--ok);
  white-space: nowrap;
}
.pill--neutral { background: var(--paper-warm-2); color: var(--muted); }
.pill--brand { background: rgba(245, 209, 78, 0.3); color: var(--brand-ink); }

/* ----------  Steps / process  ---------- */
.steps { counter-reset: step; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.step {
  background: #fff;
  padding: 1.5rem 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-ink);
  background: var(--brand);
  width: 42px; height: 42px;
  border-radius: 10px;
  display: grid; place-items: center;
}
.step h3 { font-size: 1.08rem; margin-bottom: 0.25rem; }
.step p { margin: 0; color: var(--muted); }

/* ----------  Leadership  ---------- */
.leader {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
@media (max-width: 520px) { .leader { grid-template-columns: 1fr; } }
.avatar {
  width: 84px; height: 84px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--brand);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.8rem;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.leader h3 { margin-bottom: 0.1rem; }
.leader .role {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-strong);
  margin-bottom: 0.8rem;
}
.leader .role span { color: var(--muted); font-weight: 500; }

/* ----------  Callout / quote  ---------- */
.callout {
  border-left: 3px solid var(--brand-strong);
  background: var(--paper-warm);
  padding: 1.4rem 1.6rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout p { margin: 0; }
.callout cite { display: block; margin-top: 0.6rem; font-style: normal; color: var(--muted); font-size: 0.9rem; }

/* ----------  CTA band  ---------- */
.cta-band { background: var(--brand); }
.cta-band .container {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 760px) { .cta-band .container { grid-template-columns: 1fr; } }
.cta-band h2 { color: var(--ink); margin-bottom: 0.3rem; }
.cta-band p { color: var(--brand-ink); margin: 0; max-width: 52ch; }

/* ----------  Forms  ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.field .req { color: var(--brand-strong); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--brand-strong); outline: none; box-shadow: 0 0 0 3px rgba(245, 209, 78, 0.35); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-status {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(47, 125, 82, 0.1);
  color: var(--ok);
  font-size: 0.95rem;
}
.form-status.show { display: flex; }

/* ----------  Contact details list  ---------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.3rem; }
.contact-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.contact-list .ci {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--paper-warm-2); color: var(--ink);
  display: grid; place-items: center; flex: 0 0 auto;
}
.contact-list .k { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.contact-list .v { color: var(--muted); }
.contact-list a { color: var(--text); }

/* ----------  Page header (interior)  ---------- */
.page-head { position: relative; overflow: hidden; background: var(--paper-warm); color: var(--text); border-bottom: 1px solid var(--line); }
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22, 56, 45, 0.06) 1px, transparent 1.3px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(175deg, #000, transparent 95%);
  mask-image: linear-gradient(175deg, #000, transparent 95%);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.page-head h1 { max-width: 18ch; }
.page-head .lede { color: var(--muted); }

.breadcrumb { list-style: none; display: flex; gap: 0.5rem; padding: 0; margin: 0 0 1.2rem; font-size: 0.85rem; color: var(--muted-2); }
.breadcrumb a { color: var(--text); text-decoration: none; }
.breadcrumb li::after { content: "/"; margin-left: 0.5rem; color: var(--muted-2); }
.breadcrumb li:last-child::after { content: ""; }

/* ----------  Disclosure note  ---------- */
.note {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  background: var(--paper-warm);
}

/* ----------  Footer  ---------- */
.site-footer {
  background: var(--ink);
  color: #aeb3bd;
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem);
  font-size: 0.92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--ink-line);
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: auto; width: 200px; margin-bottom: 1rem; background: #fff; padding: 9px 12px; border-radius: 9px; }
.footer-brand p { color: #8b919b; max-width: 34ch; font-size: 0.9rem; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: #aeb3bd; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: #7b818a;
}
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a { color: #9aa0aa; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer { max-width: 70ch; line-height: 1.6; }

/* ----------  Utilities  ---------- */
.stack > * + * { margin-top: 1rem; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flow > * + * { margin-top: 1.2rem; }
hr.rule { border: none; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.section--ink hr.rule { border-color: var(--ink-line); }
