/* ============================================================
   Strawboss · marketing site
   Inherits brand tokens from colors_and_type.css.
   Restrained: one accent per section, no gradients, alternating
   Paper / Cloud rhythm. Lucide icons at 1.5px stroke.
   ============================================================ */

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--c-paper);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--fs-marketing-body);
  line-height: 1.55;
  font-optical-sizing: auto;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- layout helpers ---------- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 760px) {
  .wrap { padding: 0 24px; }
}

.section {
  padding: 120px 0;
}
.section--tight { padding: 80px 0; }
.section--cloud { background: var(--c-cloud); }
.section--navy  { background: var(--c-navy); color: var(--text-on-dark); }
.section--amber { background: var(--c-amber); color: var(--c-navy); }

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-brown);
  margin: 0 0 24px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section--navy .eyebrow { color: var(--c-yellow); }

.eyebrow .bullet {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--c-amber);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-navy);
  margin: 0;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 32;
  text-wrap: balance;
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--c-paper); }

.h-display {
  font-size: clamp(48px, 6.4vw, 80px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.h-1 {
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.h-2 {
  font-size: clamp(24px, 2.2vw, 28px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.h-3 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--c-navy);
}

.lede {
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 62ch;
}
.section--navy .lede { color: #CBD5E1; }

/* The Deep-Navy cursor — borrowed from the logo. */
.cursor {
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  background: currentColor;
  transform: translateY(0.1em);
  margin-left: 0.04em;
  animation: blink 1.1s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-default) var(--ease-default),
              color var(--dur-default) var(--ease-default),
              border-color var(--dur-default) var(--ease-default),
              box-shadow var(--dur-default) var(--ease-default);
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--c-amber); outline-offset: 2px; }

.btn-primary {
  background: var(--c-navy);
  color: var(--c-paper);
}
.btn-primary:hover { background: #1F2A44; box-shadow: var(--elev-2); }

.btn-secondary {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-mist-strong);
}
.btn-secondary:hover { background: var(--c-white); }

.btn-amber {
  background: var(--c-amber);
  color: var(--c-navy);
}
.btn-amber:hover { background: #FBB232; box-shadow: var(--elev-2); }

.btn-ghost-dark {
  background: transparent;
  color: var(--c-paper);
  border-color: rgba(250,250,247,0.25);
}
.btn-ghost-dark:hover { background: rgba(250,250,247,0.08); }

.btn .arrow { transition: transform var(--dur-default) var(--ease-default); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-default) var(--ease-default), background var(--dur-default) var(--ease-default);
}
.nav.is-scrolled {
  border-bottom-color: var(--c-mist);
  background: rgba(250, 250, 247, 0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 22px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-charcoal);
}
.nav-links a { transition: color var(--dur-fast) var(--ease-default); }
.nav-links a:hover { color: var(--c-navy); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .login { font-weight: 500; font-size: 14px; color: var(--c-charcoal); }
.nav-actions .login:hover { color: var(--c-navy); }
.nav-actions .btn { padding: 10px 16px; font-size: 14px; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-actions .login { display: none; }
}

/* ---------- hero ---------- */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}
@media (max-width: 1040px) {
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}

.hero-headline {
  font-size: clamp(48px, 6.4vw, 80px);
  line-height: 1.0;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-navy);
}
.hero-headline .accent { color: var(--c-amber); }
.hero-headline .underline {
  background-image: linear-gradient(to top, var(--c-amber) 0 12px, transparent 12px);
  padding-bottom: 2px;
}

.hero-sub {
  margin-top: 28px;
  font-size: 21px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 36ch;
}

.hero-ctas {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.hero-trust .dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--c-mist-strong);
  display: inline-block;
}

/* ---------- product mock (hero) ---------- */
.product-frame {
  position: relative;
  background: var(--c-white);
  border-radius: 14px;
  border: 1px solid var(--c-mist);
  box-shadow: var(--elev-3);
  overflow: hidden;
}
.product-frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 36px;
  background: var(--c-cloud);
  border-bottom: 1px solid var(--c-mist);
}
.product-frame::after {
  content: "";
  position: absolute;
  top: 14px; left: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-mist-strong);
  box-shadow: 16px 0 0 var(--c-mist-strong), 32px 0 0 var(--c-mist-strong);
}
.product-frame-url {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
  border: 1px solid var(--c-mist);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-tertiary);
  padding: 4px 14px;
  font-family: var(--font-mono);
}
.product-body {
  padding: 36px 0 0 0;
  background: var(--c-paper);
}
.hero-shot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 604 / 378;
}

/* The dashboard mock itself */
.mock {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}
.mock-side {
  background: var(--c-paper);
  border-right: 1px solid var(--c-mist);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-side-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  font-size: 16px;
  font-family: var(--font-display);
}
.mock-side-brand .dot {
  width: 16px; height: 16px; border-radius: 4px; background: var(--c-amber);
  position: relative;
}
.mock-side-brand .dot::after {
  content: ""; position: absolute; top: 3px; right: 5px;
  width: 2px; height: 10px; background: var(--c-navy);
}
.mock-side-group {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 12px 8px 4px;
}
.mock-side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--c-charcoal);
  font-weight: 500;
}
.mock-side-item .ico {
  width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-slate);
}
.mock-side-item.is-active {
  background: rgba(245,158,11,0.12);
  color: var(--c-navy);
  font-weight: 600;
}
.mock-side-item.is-active .ico { color: var(--c-brown); }
.mock-side-item .pip {
  margin-left: auto;
  background: var(--c-green);
  color: var(--c-navy);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
}

.mock-main {
  padding: 24px 26px 28px;
  background: var(--c-white);
}
.mock-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 20px;
}
.mock-head .pre {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-brown); font-weight: 600; margin-bottom: 6px;
}
.mock-head .title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--c-navy); letter-spacing: -0.015em;
}
.mock-head .head-action {
  font-size: 11px; font-weight: 600; color: var(--c-paper);
  background: var(--c-navy); padding: 7px 11px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}

.mock-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-bottom: 22px;
}
.mock-stat {
  background: var(--c-paper);
  border: 1px solid var(--c-mist);
  border-radius: 10px;
  padding: 12px 12px 14px;
  position: relative;
}
.mock-stat::before {
  content: ""; position: absolute; top: 12px; left: 0; width: 3px; height: 16px;
  background: var(--c-mist-strong); border-radius: 0 2px 2px 0;
}
.mock-stat.green::before { background: var(--c-green); }
.mock-stat.brown::before { background: var(--c-brown); }
.mock-stat .lbl { font-size: 10px; color: var(--text-secondary); font-weight: 500; }
.mock-stat .num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--c-navy); letter-spacing: -0.02em; margin-top: 4px; }
.mock-stat .delta { font-size: 9px; color: var(--text-tertiary); margin-top: 4px; }

.mock-feed-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.mock-feed-head .ttl { font-size: 14px; font-weight: 700; color: var(--c-navy); }
.mock-feed-head .lnk { font-size: 11px; color: var(--c-brown); font-weight: 600; }

.mock-insight {
  background: var(--c-paper);
  border: 1px solid var(--c-mist);
  border-left: 3px solid var(--c-green);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.mock-insight .lead {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: var(--c-navy);
}
.mock-insight .lead .pip {
  width: 7px; height: 7px; border-radius: 50%; background: var(--c-green);
}
.mock-insight .lead .source { color: var(--text-tertiary); font-weight: 500; }
.mock-insight .body { font-size: 12px; color: var(--c-charcoal); margin-top: 6px; line-height: 1.4; }

@media (max-width: 760px) {
  .mock { grid-template-columns: 1fr; min-height: 0; }
  .mock-side { display: none; }
  .mock-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- logo strip / industries ---------- */
.industries {
  border-top: 1px solid var(--c-mist);
  border-bottom: 1px solid var(--c-mist);
  padding: 28px 0;
  background: var(--c-paper);
}
.industries-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.industries .label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--text-tertiary);
}
.industries-list {
  display: flex; gap: 40px; align-items: center; flex-wrap: wrap;
}
.industry {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--c-charcoal);
}
.industry .ico { color: var(--c-brown); }

/* ---------- "how it works" ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
}
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; gap: 32px; } }
.how-step {
  position: relative;
  padding-top: 28px;
  border-top: 4px solid var(--c-navy);
}
.how-step.step-2 { border-top-color: var(--c-amber); }
.how-step.step-3 { border-top-color: var(--c-green); }
.how-step .num {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--text-tertiary); text-transform: uppercase;
}
.how-step h3 { margin-top: 12px; font-size: 26px; line-height: 1.15; }
.how-step p { margin-top: 14px; color: var(--text-secondary); font-size: 16px; line-height: 1.55; max-width: 36ch; }
.how-step .ico-row {
  margin-top: 18px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.how-chip {
  font-size: 12px; font-weight: 500;
  background: var(--c-cloud); color: var(--c-charcoal);
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid var(--c-mist);
}

/* ---------- "Strawboss noticed" feature ---------- */
.feature-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .feature-head { grid-template-columns: 1fr; gap: 24px; } }

.insights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .insights-row { grid-template-columns: 1fr; } }

.insight {
  background: var(--c-white);
  border: 1px solid var(--c-mist);
  border-left: 4px solid var(--c-green);
  border-radius: var(--radius-md);
  padding: 24px 24px 22px;
  box-shadow: var(--elev-1);
  display: flex; flex-direction: column;
}
.insight .lead {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--c-navy);
  margin-bottom: 10px;
}
.insight .lead .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--c-green); }
.insight .lead .src { color: var(--text-tertiary); font-weight: 500; margin-left: auto; font-size: 12px; }
.insight .body { font-size: 16px; line-height: 1.5; color: var(--c-charcoal); }
.insight .actions { margin-top: 18px; display: flex; gap: 12px; }
.insight .actions a { font-size: 13px; font-weight: 600; color: var(--c-brown); }
.insight .actions a.muted { color: var(--text-tertiary); }

/* ---------- capabilities ---------- */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--c-mist);
  border-left: 1px solid var(--c-mist);
}
@media (max-width: 900px) { .caps-grid { grid-template-columns: 1fr; } }
.cap {
  padding: 32px 32px 36px;
  border-right: 1px solid var(--c-mist);
  border-bottom: 1px solid var(--c-mist);
  background: var(--c-paper);
}
.cap .ico {
  width: 28px; height: 28px;
  color: var(--c-navy);
  margin-bottom: 18px;
}
.cap h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  margin: 0 0 10px 0;
}
.cap p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ---------- field+office split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.split-text h2 { margin-bottom: 24px; }
.split-text p { color: var(--text-secondary); margin: 0 0 28px; max-width: 44ch; }
.split-list { list-style: none; padding: 0; margin: 0; }
.split-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--c-mist);
}
.split-list li:last-child { border-bottom: 1px solid var(--c-mist); }
.split-list li .ico { color: var(--c-brown); margin-top: 2px; }
.split-list li .lbl { font-weight: 600; color: var(--c-navy); font-size: 15px; }
.split-list li .sub { font-size: 14px; color: var(--text-secondary); margin-top: 2px; }

/* Field/tablet mock — real phone screenshots, overlapping cluster */
.field-mock {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  padding: 24px 0;
}
.field-mock .phone {
  position: absolute;
  filter: drop-shadow(0 24px 48px rgba(15,23,42,0.16)) drop-shadow(0 8px 16px rgba(15,23,42,0.08));
  transition: transform 220ms var(--ease-default);
}
.field-mock .phone img { display: block; width: 100%; height: auto; aspect-ratio: 277 / 540; }
.field-mock .phone.back {
  width: 280px;
  transform: translate(-110px, 30px) rotate(-6deg);
  z-index: 1;
}
.field-mock .phone.front {
  width: 320px;
  transform: translate(0, 0);
  z-index: 3;
}
.field-mock .phone.right {
  width: 280px;
  transform: translate(110px, 40px) rotate(6deg);
  z-index: 2;
}
.field-mock .phone.back:hover,
.field-mock .phone.right:hover { transform: translate(-110px, 24px) rotate(-6deg); }
.field-mock .phone.right:hover { transform: translate(110px, 34px) rotate(6deg); }

@media (max-width: 1040px) {
  .field-mock { min-height: 540px; }
  .field-mock .phone.front { width: 280px; }
  .field-mock .phone.back { width: 240px; transform: translate(-90px, 26px) rotate(-6deg); }
  .field-mock .phone.right { width: 240px; transform: translate(90px, 34px) rotate(6deg); }
}
@media (max-width: 560px) {
  .field-mock { min-height: 480px; padding: 0; }
  .field-mock .phone.front { width: 220px; }
  .field-mock .phone.back { width: 180px; transform: translate(-70px, 22px) rotate(-6deg); }
  .field-mock .phone.right { width: 180px; transform: translate(70px, 28px) rotate(6deg); }
}

/* ---------- jurisdiction ---------- */
.juris-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .juris-grid { grid-template-columns: 1fr; gap: 40px; } }

.regs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250,250,247,0.18);
  border-left: 1px solid rgba(250,250,247,0.18);
}
.reg {
  padding: 18px 18px;
  border-right: 1px solid rgba(250,250,247,0.18);
  border-bottom: 1px solid rgba(250,250,247,0.18);
}
.reg .code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-yellow);
  letter-spacing: 0.04em;
}
.reg .name { font-weight: 600; color: var(--c-paper); margin-top: 6px; font-size: 15px; }
.reg .meta { font-size: 12px; color: #94A3B8; margin-top: 2px; }

/* ---------- quote ---------- */
.quote-wrap { max-width: 900px; margin: 0 auto; text-align: center; }
.quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--c-navy);
  font-weight: 500;
  text-wrap: balance;
}
.quote .open {
  color: var(--c-amber);
  opacity: 0.45;
  font-size: 1.2em;
  vertical-align: -0.05em;
}
.quote-attr {
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex; gap: 12px; justify-content: center; align-items: center;
}
.quote-attr .role { color: var(--text-tertiary); }
.quote-attr .sep { color: var(--c-mist-strong); }

/* ---------- final CTA ---------- */
.cta-card {
  background: var(--c-navy);
  border-radius: 16px;
  padding: 72px 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  color: var(--c-paper);
}
@media (max-width: 900px) { .cta-card { grid-template-columns: 1fr; padding: 40px; gap: 24px; } }
.cta-card h2 { color: var(--c-paper); font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.02em; }
.cta-card p { color: #CBD5E1; margin: 16px 0 0; max-width: 48ch; font-size: 17px; }
.cta-card-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer {
  background: var(--c-paper);
  border-top: 1px solid var(--c-mist);
  padding: 64px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
.foot-brand img { height: 22px; }
.foot-brand .tag {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 28ch;
}
.foot-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-brown);
  font-family: var(--font-sans);
  margin: 0 0 16px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin: 10px 0; font-size: 14px; color: var(--c-charcoal); }
.foot-col a:hover { color: var(--c-navy); text-decoration: underline; text-underline-offset: 4px; }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--c-mist);
  font-size: 12px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom .links { display: flex; gap: 24px; }
.foot-bottom a:hover { color: var(--c-navy); }

/* ---------- small print ---------- */
.kbd {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px;
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--c-white);
  border: 1px solid var(--c-mist-strong);
  box-shadow: 0 1px 0 var(--c-mist);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-charcoal);
}
