/* ===========================================================
   Groundwork CRM — Marketing Site
   Design tokens + shared components
   =========================================================== */

:root {
  /* Brand palette — pulled from Groundwork product UI */
  --gw-forest-900: #0E2A20;
  --gw-forest-800: #143528;
  --gw-forest-700: #1A4231;
  --gw-forest-600: #245740;
  --gw-forest-500: #2E6B50;
  --gw-green-600: #0F6B45;   /* primary CTA */
  --gw-green-500: #178A5A;
  --gw-green-100: #DCEAE1;
  --gw-green-050: #EDF3EE;

  --gw-cream-100: #FBFAF6;   /* card / surface */
  --gw-cream-200: #F6F4EF;   /* body bg */
  --gw-cream-300: #EFEBE2;
  --gw-cream-400: #E5DFD1;   /* hairline border warm */

  --gw-ink-900: #14181A;
  --gw-ink-800: #1B2124;
  --gw-ink-700: #2A3235;
  --gw-ink-500: #56605F;
  --gw-ink-400: #7A8582;
  --gw-ink-300: #A6ADAA;

  --gw-line: #E4DFD3;
  --gw-line-strong: #CFC8B7;

  --gw-clay-500: #B85C38;    /* rust accent */
  --gw-clay-100: #F1E1D6;

  --gw-red-500: #B23A3A;
  --gw-amber-500: #C48A2E;
  --gw-blue-500: #3C6E9A;

  /* Type */
  --font-serif: "Newsreader", "Instrument Serif", ui-serif, Georgia, serif;
  --font-sans:  "Instrument Sans", "Söhne", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Radius / shadow */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(20, 30, 25, 0.05), 0 1px 3px rgba(20, 30, 25, 0.04);
  --shadow-md: 0 8px 24px -6px rgba(20, 40, 30, 0.10), 0 2px 6px rgba(20, 40, 30, 0.06);
  --shadow-lg: 0 30px 60px -20px rgba(20, 40, 30, 0.25), 0 10px 20px -10px rgba(20, 40, 30, 0.15);

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--gw-cream-200);
  color: var(--gw-ink-800);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ===========================================================
   Layout helpers
   =========================================================== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gw-forest-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gw-forest-600);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--gw-ink-900);
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6vw, 84px); font-weight: 400; letter-spacing: -0.025em; }
h2 { font-size: clamp(34px, 4vw, 56px); font-weight: 400; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2.2vw, 30px); }
h4 { font-size: 18px; font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.005em; }

.lede { font-size: 20px; line-height: 1.5; color: var(--gw-ink-500); max-width: 62ch; text-wrap: pretty; }
.small { font-size: 13px; color: var(--gw-ink-500); }

.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 20px; }

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gw-forest-800);
  color: var(--gw-cream-100);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 14px -6px rgba(14,42,32,0.5);
}
.btn-primary:hover { background: var(--gw-forest-900); }
.btn-secondary {
  background: transparent;
  color: var(--gw-ink-900);
  border-color: var(--gw-line-strong);
}
.btn-secondary:hover { background: var(--gw-cream-100); border-color: var(--gw-ink-700); }
.btn-ghost {
  background: transparent;
  color: var(--gw-ink-900);
  padding: 10px 4px;
}
.btn-ghost:hover { color: var(--gw-forest-700); }
.btn-light {
  background: var(--gw-cream-100);
  color: var(--gw-ink-900);
  border: 1px solid var(--gw-line);
}
.btn-light:hover { background: white; }
.arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===========================================================
   Navigation
   =========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 239, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid rgba(228, 223, 211, 0.6);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gw-ink-900);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gw-forest-800);
  display: inline-block;
  background-image: url('/static/assets/groundwork-mark-256.png');
  background-size: cover;
  background-position: center;
  /* Suppress any inner text (legacy "Gw" fallback) */
  color: transparent;
  font-size: 0;
  overflow: hidden;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--gw-ink-700);
  font-weight: 450;
}
.nav-links a:hover { color: var(--gw-ink-900); background: rgba(20,40,30,0.04); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.nav-cta .signin {
  font-size: 14.5px;
  color: var(--gw-ink-700);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nav-cta .signin:hover { color: var(--gw-ink-900); border-color: var(--gw-line); }
.nav-cta .signin .host {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gw-ink-400);
  padding-left: 10px;
  border-left: 1px solid var(--gw-line);
  white-space: nowrap;
}
@media (max-width: 1180px) {
  .nav-cta .signin .host { display: none; }
}

/* Nav dropdown affordance */
.nav-links a { position: relative; }
.nav-links a.has-menu::after {
  content: "▾";
  font-size: 9px;
  margin-left: 5px;
  color: var(--gw-ink-400);
  vertical-align: middle;
}
.nav-links a.nav-active {
  color: var(--gw-ink-900);
  background: rgba(20,40,30,0.06);
}

.nav-item { position: relative; }
.nav-item.has-dropdown > a { cursor: default; }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  min-width: 340px;
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 200;
}
.nav-item:hover > .dropdown-panel,
.nav-item:focus-within > .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Invisible hover bridge so the mouse can travel from trigger to menu */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
}
.dropdown-grid { display: flex; flex-direction: column; gap: 2px; }
.dropdown-section {
  padding: 8px 12px 4px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gw-ink-400);
  font-weight: 600;
}
.dropdown-section:not(:first-child) { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--gw-cream-300); }
.dropdown-link {
  padding: 8px 12px !important;
  border-radius: 6px;
  display: block;
  background: transparent !important;
}
.dropdown-link:hover { background: var(--gw-cream-200) !important; }
.dropdown-link .dl-label { font-size: 14px; font-weight: 500; color: var(--gw-ink-900); }
.dropdown-link .dl-desc { font-size: 12px; color: var(--gw-ink-500); margin-top: 2px; }

.footer-col a { display: block; }
.footer-col ul li { padding: 4px 0; }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  padding: 72px 0 40px;
  overflow: hidden;
}
.hero-grid { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .hero-grid { padding: 0 20px; } }
@media (max-width: 480px) { .hero-grid { padding: 0 16px; } }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gw-ink-700);
  margin-bottom: 32px;
}
.hero-tag .pill {
  background: var(--gw-forest-800);
  color: var(--gw-green-100);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 16ch;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gw-forest-700);
  font-weight: 400;
}
.hero .lede { font-size: 21px; margin-bottom: 40px; max-width: 58ch; }
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--gw-ink-500);
  font-size: 13.5px;
  flex-wrap: wrap;
}
.hero-meta .dot { width: 4px; height: 4px; background: var(--gw-ink-300); border-radius: 50%; }
.hero-meta .check {
  color: var(--gw-green-600);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* Hero product mock — Today dashboard preview */
.hero-mock {
  margin-top: 72px;
  border-radius: var(--r-xl);
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

/* ===========================================================
   Product Mock components (recreated Groundwork UI)
   =========================================================== */
.pm { /* product mock container */
  background: var(--gw-cream-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gw-line);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gw-ink-800);
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 500px;
}
.pm-lg { grid-template-columns: 220px 1fr; }
.pm-sidebar {
  background: var(--gw-forest-800);
  color: #B7CFC1;
  padding: 18px 14px;
  font-size: 12.5px;
}
.pm-sidebar .brand {
  color: white;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pm-sidebar .brand .brand-mark {
  width: 22px; height: 22px;
  background: var(--gw-forest-700);
  background-image: url('/static/assets/groundwork-mark-256.png');
  background-size: cover;
  color: transparent;
  font-size: 0;
  border-radius: 5px;
}
.pm-sidebar .brand-sub { font-size: 10px; color: #7A9788; margin-bottom: 18px; letter-spacing: 0.02em; padding-left: 30px; margin-top: -6px; }
.pm-sidebar .sb-group { margin-top: 14px; }
.pm-sidebar .sb-label { color: #6E8B7C; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; padding: 0 6px; }
.pm-sidebar .sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 5px;
  color: #C8DACF;
  margin-bottom: 1px;
}
.pm-sidebar .sb-item.active {
  background: var(--gw-forest-700);
  color: white;
  font-weight: 500;
}
.pm-sidebar .sb-item .ic { width: 12px; height: 12px; opacity: 0.7; }

.pm-main { padding: 18px 22px; overflow: hidden; background: var(--gw-cream-100); }
.pm-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gw-cream-300);
  margin-bottom: 18px;
  font-size: 11.5px;
  color: var(--gw-ink-500);
}
.pm-topbar .search {
  flex: 1;
  background: var(--gw-cream-200);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--gw-ink-400);
  font-size: 11px;
}
.pm-topbar .new-btn {
  background: var(--gw-green-600);
  color: white;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
}

.pm-title-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 18px; }
.pm-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gw-ink-900);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pm-title small { font-family: var(--font-sans); font-size: 10.5px; color: var(--gw-ink-500); letter-spacing: 0.06em; text-transform: uppercase; margin-left: 12px; font-weight: 500; }

.pm-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.pm-stat {
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-cream-300);
  padding: 12px 14px;
  border-radius: 8px;
}
.pm-stat .lbl { font-size: 10px; letter-spacing: 0.12em; color: var(--gw-ink-400); text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.pm-stat .val { font-family: var(--font-serif); font-size: 28px; color: var(--gw-ink-900); font-weight: 500; }
.pm-stat.overdue .val { color: var(--gw-red-500); }
.pm-stat.sold .val { color: var(--gw-green-500); }

.pm-card {
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-cream-300);
  border-radius: 8px;
  padding: 14px 16px;
}
.pm-card + .pm-card { margin-top: 14px; }
.pm-card-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-weight: 600; font-size: 13px; color: var(--gw-ink-900); }
.pm-card-h .chip {
  background: var(--gw-forest-800);
  color: white;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
}

.pm-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  border-top: 1px solid var(--gw-cream-300);
  font-size: 12px;
}
.pm-task:first-of-type { border-top: none; }
.pm-task .cb { width: 12px; height: 12px; border: 1.5px solid var(--gw-ink-300); border-radius: 3px; flex: none; }
.pm-task .cb.done { background: var(--gw-green-600); border-color: var(--gw-green-600); position: relative; }
.pm-task .cb.done::after { content: ""; position: absolute; left: 2.5px; top: 0px; width: 4px; height: 8px; border-right: 1.5px solid white; border-bottom: 1.5px solid white; transform: rotate(45deg); }
.pm-task .tk-title { color: var(--gw-ink-900); font-weight: 500; }
.pm-task .tk-tags { display: flex; gap: 4px; margin-left: auto; }
.pm-task.overdue { background: rgba(178, 58, 58, 0.05); border-radius: 4px; }
.pm-task.overdue .cb { border-color: var(--gw-red-500); }

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.tag-follow { background: #FDE7CF; color: #8B4C15; }
.tag-name { background: var(--gw-green-050); color: var(--gw-forest-700); }
.tag-overdue { background: #FBDCD8; color: #A02B2B; }
.tag-red { background: #FBDCD8; color: #A02B2B; }
.tag-qual { background: #F6E4B8; color: #8A651C; }
.tag-rapport { background: #D8E8DC; color: #2E6B50; }
.tag-website { background: #DDE7F1; color: #3C6E9A; }
.tag-email { background: #E4E0F0; color: #5E4E88; }

.pm-section-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gw-red-500); font-weight: 600; margin: 12px 0 6px; }
.pm-section-label.upcoming { color: var(--gw-ink-400); }

/* ===========================================================
   Trust logos
   =========================================================== */
.logostrip {
  padding: 40px 0 32px;
  border-top: 1px solid var(--gw-line);
  border-bottom: 1px solid var(--gw-line);
}
.logostrip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.logostrip-inner .label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gw-ink-500);
  font-weight: 500;
  min-width: 180px;
}
.logostrip-inner .logos {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
  justify-content: space-evenly;
}
.logo-mark {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gw-ink-500);
  font-weight: 500;
  letter-spacing: -0.01em;
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-mark .sq {
  width: 18px; height: 18px;
  background: var(--gw-ink-500);
  opacity: 0.7;
  border-radius: 4px;
}
.logo-mark .circle { border-radius: 50%; }

/* ===========================================================
   Problem section
   =========================================================== */
.problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card {
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
}
.problem-card .num {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--gw-clay-500);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 22px;
  opacity: 0.85;
}
.problem-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--gw-ink-900);
  font-size: 24px;
  line-height: 1.15;
}
.problem-card p { color: var(--gw-ink-500); font-size: 15.5px; margin: 0; }

/* ===========================================================
   Pillars (Sales / Financial / Operations / Admin)
   =========================================================== */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar {
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-line);
  border-radius: var(--r-lg);
  padding: 32px 32px 0;
  overflow: hidden;
  position: relative;
}
.pillar-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.pillar-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: var(--gw-forest-800);
  color: var(--gw-green-100);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.pillar-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gw-ink-500); font-weight: 600; }
.pillar h3 { font-family: var(--font-serif); font-weight: 400; margin-bottom: 12px; }
.pillar p { color: var(--gw-ink-500); font-size: 15px; margin-bottom: 22px; }
.pillar-list { list-style: none; padding: 0; margin: 0 0 24px; font-size: 14px; }
.pillar-list li { display: flex; gap: 10px; padding: 6px 0; color: var(--gw-ink-700); align-items: center; }
.pillar-list li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--gw-forest-600);
  border-radius: 50%;
  flex: none;
}
.pillar-visual {
  margin: 0 -32px -1px;
  padding: 20px 24px;
  background: linear-gradient(180deg, transparent, rgba(20,40,30,0.02));
  border-top: 1px solid var(--gw-cream-300);
}

/* ===========================================================
   Roles section
   =========================================================== */
.roles-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-line);
  border-radius: 999px;
  margin-bottom: 40px;
  width: fit-content;
  flex-wrap: wrap;
}
.roles-tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--gw-ink-700);
  cursor: pointer;
  border: none;
  background: transparent;
  font-weight: 500;
  transition: all .18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.roles-tab:hover { color: var(--gw-ink-900); }
.roles-tab.active {
  background: var(--gw-forest-800);
  color: white;
}
.roles-tab .emoji { font-size: 15px; }

.role-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.role-panel .role-copy h3 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}
.role-panel .role-copy .lede { font-size: 18px; margin-bottom: 28px; }
.role-panel .role-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.role-panel .role-copy li {
  padding: 10px 0;
  border-top: 1px solid var(--gw-cream-300);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gw-ink-700);
  font-size: 15px;
}
.role-panel .role-copy li:first-child { border-top: none; }
.role-panel .role-copy li strong { color: var(--gw-ink-900); font-weight: 600; display: block; margin-bottom: 2px; }
.role-panel .role-copy li .check {
  width: 20px; height: 20px;
  flex: none;
  border-radius: 50%;
  background: var(--gw-green-050);
  color: var(--gw-green-600);
  display: grid;
  place-items: center;
  margin-top: 2px;
}

/* ===========================================================
   Feature grid (bento)
   =========================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-line);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bento-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gw-ink-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.bento-card p { color: var(--gw-ink-500); font-size: 14.5px; margin: 0; }
.bento-card .b-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--gw-forest-800);
  color: var(--gw-green-100);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}
.bento-card.wide { grid-column: span 3; }
.bento-card.narrow { grid-column: span 2; }
.bento-card.tiny { grid-column: span 2; min-height: 180px; }
.bento-card.dark {
  background: var(--gw-forest-800);
  color: var(--gw-cream-100);
  border-color: var(--gw-forest-700);
}
.bento-card.dark h4 { color: var(--gw-cream-100); }
.bento-card.dark p { color: #B7CFC1; }
.bento-card.dark .b-icon { background: var(--gw-forest-700); color: var(--gw-green-100); }

/* ===========================================================
   Testimonials
   =========================================================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tm-card {
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}
.tm-card .quote {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.3;
  color: var(--gw-ink-900);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  flex: 1;
}
.tm-card .quote::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--gw-clay-500);
  display: block;
  line-height: 0.6;
  margin-bottom: 12px;
}
.tm-author { display: flex; gap: 12px; align-items: center; padding-top: 20px; border-top: 1px solid var(--gw-cream-300); }
.tm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gw-forest-700);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}
.tm-author .who { line-height: 1.25; }
.tm-author .name { font-weight: 600; color: var(--gw-ink-900); font-size: 14.5px; }
.tm-author .role { color: var(--gw-ink-500); font-size: 13px; }
.tm-note {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gw-ink-400);
  margin-top: 32px;
  text-align: center;
  font-weight: 500;
}

/* ===========================================================
   Implementation timeline
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step {
  background: var(--gw-cream-100);
  border: 1px solid var(--gw-line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  position: relative;
}
.step .step-num {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gw-forest-600);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step .step-num::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gw-forest-600);
  display: inline-grid;
  place-items: center;
  font-family: var(--font-sans);
}
.step h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.step p { color: var(--gw-ink-500); font-size: 14.5px; margin: 0; }

/* ===========================================================
   Dark CTA band
   =========================================================== */
.cta-band {
  background: var(--gw-forest-900);
  color: var(--gw-cream-100);
  border-radius: var(--r-xl);
  padding: 72px 72px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom right, rgba(23, 138, 90, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  color: var(--gw-cream-100);
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
}
.cta-band h2 em { font-style: italic; color: #7CC9A3; font-weight: 400; }
.cta-band p { color: #B7CFC1; font-size: 17px; margin: 20px 0 0; max-width: 42ch; position: relative; }
.cta-band .cta-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cta-band .btn-primary { background: var(--gw-green-500); }
.cta-band .btn-primary:hover { background: var(--gw-green-600); }
.cta-band .btn-secondary {
  background: transparent;
  color: var(--gw-cream-100);
  border-color: rgba(255,255,255,0.2);
}
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--gw-line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--gw-line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gw-ink-900);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 22px;
  color: var(--gw-forest-600);
  font-weight: 300;
  flex: none;
  line-height: 1;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .answer {
  padding-top: 16px;
  color: var(--gw-ink-500);
  font-size: 16px;
  max-width: 70ch;
  line-height: 1.55;
}

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  background: var(--gw-forest-900);
  color: #B7CFC1;
  padding: 80px 0 32px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .brand { color: white; font-size: 26px; margin-bottom: 16px; }
.footer .brand .brand-mark {
  background-color: var(--gw-forest-700);
  background-image: url('/static/assets/groundwork-mark-256.png');
  background-size: cover;
  background-position: center;
}
.footer-lede { color: #93AFA1; font-size: 14.5px; margin-bottom: 24px; max-width: 30ch; }
.footer-col h5 {
  color: white;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; }
.footer-col a { font-size: 14.5px; color: #B7CFC1; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7A9788;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom .site-domain { color: #C5D6CD; font-family: var(--font-mono); font-size: 12.5px; }

/* ===========================================================
   Utility: split section
   =========================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-content h2 { margin-bottom: 20px; }
.split-content .lede { margin-bottom: 32px; }
.split-list { list-style: none; padding: 0; margin: 0; }
.split-list li {
  padding: 16px 0;
  border-top: 1px solid var(--gw-cream-300);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.split-list li:first-child { border-top: none; padding-top: 0; }
.split-list li strong { display: block; color: var(--gw-ink-900); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.split-list li span { color: var(--gw-ink-500); font-size: 14.5px; }
.split-list .num-pill {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gw-forest-800);
  color: var(--gw-cream-100);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 14px;
  flex: none;
}

/* ===========================================================
   Sub-nav page hero (features/industries)
   =========================================================== */
.subpage-hero {
  padding: 80px 0 40px;
  text-align: left;
}
.subpage-hero h1 { font-size: clamp(40px, 5vw, 72px); margin-bottom: 24px; max-width: 20ch; }
.subpage-hero .lede { font-size: 20px; max-width: 60ch; }

/* Icon styling */
.ico {
  width: 16px; height: 16px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Inline icon slot — filled by icons.js */
[data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex: none;
}
[data-icon] svg { display: block; }

/* Role-tab, pillar, bento icon squares that previously held emoji */
.icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gw-forest-800);
  color: var(--gw-green-100);
  width: 40px; height: 40px;
  flex: none;
}
.icon-square.sm { width: 30px; height: 30px; border-radius: 7px; }
.icon-square.lg { width: 60px; height: 60px; border-radius: 14px; }
.icon-square.on-cream { background: var(--gw-cream-200); color: var(--gw-forest-700); }
.icon-square.on-green { background: var(--gw-green-050); color: var(--gw-forest-700); }

/* Inline check bullet used in feature lists (previously '✓') */
.icon-check-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  color: var(--gw-green-600);
  flex: none;
}
.on-dark .icon-check-bullet { color: #7CC9A3; }

/* ===========================================================
   Global overflow guard
   =========================================================== */
html, body { max-width: 100vw; overflow-x: hidden; }
img, svg, video, canvas { max-width: 100%; height: auto; }

/* ===========================================================
   Responsive breakpoints
   Structure: tablet-down (≤960) → phone-down (≤720) → small phone (≤480)
   =========================================================== */

/* --- Tablet & below (≤960px) --- */
@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .section-lg { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }

  .problems, .testimonials, .steps { grid-template-columns: 1fr; }
  .pillars, .split, .role-panel, .cta-band { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 40px 32px; }
  .bento { grid-template-columns: 1fr; }
  .bento-card.wide, .bento-card.narrow, .bento-card.tiny { grid-column: span 1; min-height: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-mock { transform: none !important; }

  /* Reverse-direction split section fix (used on features/industries pages) */
  .wrap.split[style*="direction: rtl"] { direction: ltr; }

  /* Reversed industry cards */
  .ind-card { grid-template-columns: 1fr; }
  .ind-card.reverse { direction: ltr; }
}

/* --- Phone & below (≤720px) --- */
@media (max-width: 720px) {
  :root { --maxw: 100%; }
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-lg { padding: 64px 0; }
  .section-head { margin-bottom: 32px; }

  h1 { font-size: clamp(34px, 8vw, 44px); }
  h2 { font-size: clamp(28px, 6vw, 40px); }
  h3 { font-size: clamp(20px, 4.5vw, 26px); }
  .lede { font-size: 17px; }

  /* Nav */
  .nav-inner { padding: 12px 20px; gap: 12px; }
  .brand { font-size: 20px; }
  .nav-links { display: none; }  /* desktop dropdown nav replaced by hamburger + off-canvas menu */
  .nav-cta .signin { display: none; }  /* hidden on phones; found in mobile menu */
  .nav-cta .btn-primary { padding: 10px 16px; font-size: 14px; }

  /* Mobile menu toggle button — shown on mobile only */
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 8px;
    border: 1px solid var(--gw-line);
    background: var(--gw-cream-100);
    color: var(--gw-ink-900);
    cursor: pointer;
    padding: 0;
  }
  .mobile-menu-toggle svg { width: 20px; height: 20px; }

  /* Hero */
  .hero { padding: 40px 0 32px; }
  .hero-tag { font-size: 12px; margin-bottom: 24px; padding: 5px 12px 5px 6px; }
  .hero-tag .pill { font-size: 10px; padding: 2px 8px; }
  .hero h1 { margin-bottom: 20px; }
  .hero .lede { font-size: 17px; margin-bottom: 28px; }
  .hero-ctas { gap: 10px; margin-bottom: 32px; }
  .hero-ctas .btn { flex: 1; justify-content: center; min-width: 140px; }
  .hero-meta { gap: 12px; font-size: 12.5px; }
  .hero-meta .dot { display: none; }
  .hero-mock { margin-top: 40px; border-radius: var(--r-md); }

  /* Buttons */
  .btn { padding: 12px 18px; font-size: 14px; }

  /* Product mocks — key mobile fix.
     Sidebar hidden; main pane fits phone width.
     Scale down dense internals. */
  .pm { grid-template-columns: 1fr; min-height: auto; font-size: 12px; }
  .pm-sidebar { display: none; }
  .pm-main { padding: 16px 14px; }
  .pm-title { font-size: 20px; }
  .pm-title small { display: block; margin-left: 0; margin-top: 4px; font-size: 10px; }
  .pm-title-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pm-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .pm-stat { padding: 10px 12px; }
  .pm-stat .val { font-size: 22px; }
  .pm-topbar { flex-wrap: wrap; gap: 8px; }
  .pm-card { padding: 12px 14px; }
  .pm-task { flex-wrap: wrap; gap: 6px; }
  .pm-task .tk-tags { margin-left: 0; flex-wrap: wrap; }

  /* Pillars mini-stats row (Sales / Financial pillar visuals) */
  .pillar { padding: 24px 22px 0; }
  .pillar-visual { margin: 0 -22px -1px; padding: 16px 18px; }
  .pillar-visual > div { flex-wrap: wrap !important; }

  /* Problem cards */
  .problem-card { padding: 24px 22px; }
  .problem-card .num { font-size: 34px; margin-bottom: 16px; }
  .problem-card h3 { font-size: 20px; margin-bottom: 10px; }

  /* Testimonials */
  .tm-card { padding: 26px 22px; }
  .tm-card .quote { font-size: 19px; margin-bottom: 18px; }
  .tm-card .quote::before { font-size: 36px; }

  /* Steps (implementation) */
  .step { padding: 24px 22px; }
  .step .step-num { margin-bottom: 16px; }
  .step h4 { font-size: 20px; }

  /* CTA band */
  .cta-band { padding: 36px 26px; gap: 24px; text-align: left; }
  .cta-band h2 { font-size: clamp(26px, 6vw, 36px); }
  .cta-band p { font-size: 15px; }

  /* Roles section */
  .roles-tabs { flex-wrap: wrap; padding: 5px; gap: 4px; }
  .roles-tab { padding: 8px 14px; font-size: 13px; }
  .role-panel .role-copy h3 { font-size: 30px; }

  /* Feature bento cards */
  .bento-card { padding: 22px 22px; min-height: 160px; }
  .bento-card h4 { font-size: 19px; }

  /* Split feature list rows */
  .split-list li { padding: 12px 0; gap: 10px; }
  .split-list .num-pill { width: 24px; height: 24px; font-size: 12px; }

  /* FAQ */
  .faq-item { padding: 20px 0; }
  .faq-item summary { font-size: 18px; gap: 16px; }

  /* Feature block containers on features.html */
  .split { gap: 32px !important; }

  /* Footer */
  .footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer .brand { font-size: 22px; }
  .footer-col h5 { margin-bottom: 12px; }
  .footer-col li { padding: 4px 0; }

  /* Sub-page heroes (product/roles/solutions/etc) */
  .subpage-hero { padding: 48px 0 24px; }
  .subpage-hero h1 { font-size: clamp(34px, 8vw, 52px); }
  .subpage-hero .lede { font-size: 17px; }

  /* Pricing tier cards — stack */
  .pricing-tiers, .grid-4, .grid-3 { grid-template-columns: 1fr !important; }

  /* Content grids: collapse to 1-col on phones.
     Scoped to well-known section wrappers so we don't accidentally collapse
     product-mock tabular grids (which need horizontal scroll instead). */
  section .wrap > div[style*="grid-template-columns: repeat("],
  section .wrap > section [style*="grid-template-columns: repeat("],
  .split-content [style*="grid-template-columns: repeat("],
  .subpage-hero + section [style*="grid-template-columns: repeat("] {
    grid-template-columns: 1fr !important;
  }
  /* Two-col grids: collapse on phone. Only the well-defined 2-col
     patterns (not 4-col tabular grids that happen to start with 1.5fr). */
  [style*="grid-template-columns: 1fr 1fr"]:not([style*="1fr 1fr 1fr"]),
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns: 1.4fr 1fr"]:not([style*="1.4fr 1fr 1fr"]),
  [style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Product-mock inner tabular grids — allow horizontal scroll instead
     of collapsing. Applies to grids inside .pm-main that are wider than viewport. */
  .pm-main > div[style*="grid-template-columns"],
  .pm-main .pm-card > div[style*="grid-template-columns"] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Access matrix, dispatch grid, kanban — keep their columns via min-width and let
     the parent scroll. Wrap them in .pm-scroll on the source side. */
  .pm-main { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pm-main > * { min-width: 0; }
  /* Kanban / dispatch / matrix stay tabular */
  .pm-main [style*="grid-template-columns: repeat(4"],
  .pm-main [style*="grid-template-columns: repeat(5"],
  .pm-main [style*="grid-template-columns: repeat(6"],
  .pm-main [style*="grid-template-columns: 60px repeat"] {
    min-width: 520px;
  }
  .pm-stats { min-width: 0 !important; }  /* stats we already reflowed to 2-col */

  /* Related cards row */
  .related-cards, section .wrap > div.related-grid { grid-template-columns: 1fr !important; }

  /* Two-col forms inside demo/signup */
  form div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Owner/office/etc role-hub big cards */
  a[style*="grid-template-columns: 80px 1fr auto"] {
    grid-template-columns: 60px 1fr !important;
  }
  a[style*="grid-template-columns: 80px 1fr auto"] > div:last-child { display: none; }

  /* Two-column card grids on solutions hub, security, resources */
  section .wrap > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Feature block internal card grid inside pillar-visual */
  .pillar-visual > div[style*="display: flex; gap: 8px"] {
    flex-wrap: wrap;
  }
  .pillar-visual > div[style*="display: flex; gap: 8px"] > div {
    flex: 1 1 calc(50% - 4px);
  }
}

/* --- Small phone (≤480px) --- */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .section { padding: 44px 0; }
  h1 { font-size: 30px; letter-spacing: -0.02em; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  .lede { font-size: 16px; }

  .hero { padding: 32px 0 24px; }
  .hero h1 { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }

  .brand { font-size: 18px; }
  .brand-mark { width: 26px; height: 26px; }

  .pm-stats { grid-template-columns: repeat(2, 1fr); }
  .pm-task .tk-title { font-size: 12px; }
  .pm-task .tag { font-size: 9.5px; padding: 1px 6px; }

  .roles-tab .emoji, .roles-tab [data-icon] { display: none; }
  .roles-tab { padding: 7px 12px; font-size: 12.5px; }

  .cta-band { padding: 28px 22px; border-radius: var(--r-lg); }
  .cta-band .cta-side { gap: 10px; }

  .tm-card .quote { font-size: 17px; }
  .step h4 { font-size: 18px; }
  .bento-card { padding: 20px 20px; }
  .bento-card h4 { font-size: 18px; }
  .problem-card { padding: 22px 20px; }

  /* Hide site-domain text (mono) that can overflow */
  .footer-bottom .site-domain { font-size: 11px; }
  .nav-cta .signin .host { display: none; }
}

/* Mobile menu (off-canvas) — hidden by default, shown when body has .mobile-menu-open */
.mobile-menu-toggle { display: none; }
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gw-cream-200);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .25s ease;
  overflow-y: auto;
  padding: 20px 24px 40px;
  visibility: hidden;
}
body.mobile-menu-open .mobile-menu {
  transform: translateX(0);
  visibility: visible;
}
body.mobile-menu-open { overflow: hidden; }
.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu-section {
  padding: 6px 0;
  border-top: 1px solid var(--gw-line);
}
.mobile-menu-section:first-of-type { border-top: none; }
.mobile-menu-section > .mm-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gw-ink-500);
  font-weight: 600;
  padding: 14px 0 6px;
}
.mobile-menu-section a {
  display: flex;
  padding: 12px 0;
  color: var(--gw-ink-900);
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.mobile-menu-section a .mm-desc {
  font-size: 12.5px;
  color: var(--gw-ink-500);
  font-weight: 400;
  margin-top: 2px;
  display: block;
}
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gw-line);
}
.mobile-menu-footer .btn { justify-content: center; }
@media (max-width: 720px) {
  .mobile-menu-toggle { display: inline-flex; }
  .nav-cta > .btn-primary { display: none; }  /* replaced by mobile menu button */
}
