/* sideKick homepage — extracted from design handoff 3 Sep 2026 */
:root {
  --page: #F5F5F5;
  --muted-band: #EBEBEB;
  --card: #FFFFFF;
  --navy: #0F1B2D;
  --navy-border: #26384F;
  --text: #0F1B2D;
  --text-heading-alt: #17293D;
  --text-body: #2A3D55;
  --text-muted: #56657C;
  --text-muted-on-navy: #8EA0B8;
  --text-body-on-navy: #C3D2E4;
  --text-deck-on-navy: #DCE6F0;
  --numeral: #6E6E6E;
  --numeral-on-navy: #6C89B4;
  --steel: #3D5A80;
  --ice: #B3DBFC;
  --action: oklch(0.379 0.146 265.52);
  --hair: #DCDCDC;
  --section-rule: #C8C8C8;
  --faint: #EBEBEB;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body { margin: 0; background: var(--page); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
a { color: var(--action); text-decoration: none; }
a:hover { color: var(--text); }
::selection { background: var(--ice); }
a:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; border-radius: 3px; }
.btn-primary:hover { background: var(--navy) !important; color: #F5F5F5 !important; }
.btn-ice:hover { background: #FFFFFF !important; color: var(--navy) !important; }
.work-row:hover { background: var(--muted-band); }
.btn-primary, .btn-ice, .work-row { transition: background-color 140ms ease-out; }

/* Site header + mobile menu */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 0 48px;
  min-height: 68px;
  background: rgba(245,245,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #DCDCDC;
  box-sizing: border-box;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.nav-open {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid #DCDCDC;
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: #3D5A80;
  box-shadow: 0 -6px 0 #3D5A80, 0 6px 0 #3D5A80;
}
.header-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  background: oklch(0.379 0.146 265.52);
  color: #F5F5F5 !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}
.header-cta:hover { color: #F5F5F5 !important; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: #3D5A80;
}
.site-nav a[aria-current="page"] {
  font-weight: 600;
  color: #0F1B2D;
}

@media (max-width: 1080px) {
  header, section, footer, article, .site-header { padding-left: 32px !important; padding-right: 32px !important; }
  section, article { padding-top: 80px !important; padding-bottom: 80px !important; }
  [data-r="2col"] { grid-template-columns: minmax(0,1fr) !important; gap: 44px !important; }
  [data-r="sidebar"] { grid-template-columns: minmax(0,1fr) !important; gap: 44px !important; }
  [data-r="sidebar"] > div:first-child { position: static !important; }
  [data-r="4col"] { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    order: 10;
    padding: 8px 0 16px;
    border-top: 1px solid #DCDCDC;
  }
  .nav-open:checked ~ .site-nav { display: flex; }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #EBEBEB;
    font-size: 16px;
  }
  .site-nav a:last-child { border-bottom: none; }
}

@media (max-width: 680px) {
  header, section, footer, article, .site-header { padding-left: 20px !important; padding-right: 20px !important; }
  section, article { padding-top: 64px !important; padding-bottom: 64px !important; }
  [data-r="row"] { grid-template-columns: minmax(0,1fr) !important; gap: 10px !important; padding-top: 22px !important; padding-bottom: 22px !important; }
  [data-r="row"] > p:last-child { display: none !important; }
  [data-r="4col"], [data-r="3col"] { grid-template-columns: minmax(0,1fr) !important; }
  [data-r="cta"] { width: 100% !important; }
  .header-cta { padding: 0 12px; font-size: 13px; }
}
