/* ==========================================================================
   STACK IT DESIGN SYSTEM - TIER 3: ORGANISMS
   --------------------------------------------------------------------------
   Tier 3 documents page-level organisms - assemblies that compose Tier 2's
   atoms and molecules into the building blocks an actual page is made of:
   the header, the footer, the hero, the job board, the article layout, the
   forms, the cookie banner.

   Dependencies (load in order):
     1. foundations.css   - tokens, type, motion, atmosphere, base layout
     2. components.css    - atoms, molecules, doc primitives (TOC, etc.)
     3. organisms.css     - this file

   Round 3a: Site header (utility bar, primary nav, dropdowns, mega panels,
   mobile drawer).

   Composes from Tier 2:
   - .stk-btn / .stk-btn--primary / .stk-btn--ghost-light  (atoms / buttons)
   - .stk-trust pattern                                    (molecule, Round 2b)
   - .stk-guarantee-feature                                (molecule, Round 2e)
   - .stk-card--article, .stk-card--content                (molecule, Round 2a)
   - Icon sprite, typography + token stack                 (Tier 1)

   Interactions:
     hover-intent 80ms open / 160ms close · click toggle · ESC close
     click-outside close · focus management · scroll-collapse threshold 60px
   ==========================================================================
*/

/* ==========================================================================
   SITE HEADER - Round 3a
   --------------------------------------------------------------------------
   Structure:
     .stk-header                   sticky wrap (utility + main + mega panels)
     .stk-header-utility           dark utility bar (collapses on scroll)
     .stk-header-main              white main bar (compresses on scroll)
     .stk-header-nav-item          each primary nav item
     .stk-mega                     full-width mega panel (Employers, Resources)
     .stk-dropdown                 anchored simple dropdown (Jobseekers, About)
     .stk-mobile-menu              off-canvas mobile drawer
   ========================================================================== */

/* ---- Sticky wrap ---- */
.stk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--stk-white);
  font-family: var(--stk-body);
}

/* ---- Utility bar (top tier, dark) ---- */
.stk-header-utility {
  background: var(--stk-navy-900);
  color: var(--stk-muted-3);
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: height var(--stk-t-fast) var(--stk-ease);
  will-change: height;
}

.stk-header.is-scrolled .stk-header-utility {
  height: 0;
}

.stk-header-utility-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  letter-spacing: .01em;
}

.stk-header-utility-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--stk-muted-2);
}

.stk-header-utility-left .stk-pin-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stk-blue-400);
  box-shadow: 0 0 8px rgba(96,165,250,.6);
  flex-shrink: 0;
}

.stk-header-utility-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.stk-header-utility-right a,
.stk-header-utility-right a:link,
.stk-header-utility-right a:visited {
  color: var(--stk-muted-3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--stk-t-fast) var(--stk-ease);
}

.stk-header-utility-right a:hover,
.stk-header-utility-right a:focus,
.stk-header-utility-right a:active {
  color: var(--stk-blue-300);
}

.stk-header-utility-right a:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 3px;
  border-radius: 2px;
}

.stk-header-utility-right svg {
  width: 12px;
  height: 12px;
  color: var(--stk-blue-400);
  flex-shrink: 0;
}

.stk-header-utility-candidate,
.stk-header-utility-candidate:link,
.stk-header-utility-candidate:visited {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.12);
  color: var(--stk-blue-300);
  font-weight: 500;
}

.stk-header-utility-candidate:hover,
.stk-header-utility-candidate:focus,
.stk-header-utility-candidate:active {
  color: var(--stk-white);
}

/* ---- Main bar (bottom tier, white) ---- */
.stk-header-main {
  background: var(--stk-white);
  border-bottom: 1px solid var(--stk-border);
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: height var(--stk-t-base) var(--stk-ease),
              box-shadow var(--stk-t-base) var(--stk-ease);
}

.stk-header.is-scrolled .stk-header-main {
  height: 64px;
  box-shadow: 0 2px 16px rgba(15,23,42,.06);
}

.stk-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.stk-header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.stk-header-logo img,
.stk-header-logo svg {
  height: 30px;
  width: auto;
  display: block;
  transition: height var(--stk-t-base) var(--stk-ease);
}

.stk-header.is-scrolled .stk-header-logo img,
.stk-header.is-scrolled .stk-header-logo svg {
  height: 26px;
}

/* ---- Primary nav ---- */
.stk-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.stk-header-nav-item {
  position: relative;
}

.stk-header-trigger {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--stk-ink-2);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--stk-r-md);
  transition: background var(--stk-t-fast) var(--stk-ease),
              color var(--stk-t-fast) var(--stk-ease);
  line-height: 1;
}

.stk-header-trigger:hover {
  background: var(--stk-surface-2);
  color: var(--stk-ink);
}

.stk-header-trigger:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 2px;
}

.stk-header-trigger[aria-expanded="true"] {
  background: var(--stk-surface-2);
  color: var(--stk-ink);
}

.stk-header-chevron {
  width: 12px;
  height: 12px;
  color: var(--stk-muted);
  transition: transform var(--stk-t-fast) var(--stk-ease),
              color var(--stk-t-fast) var(--stk-ease);
}

.stk-header-trigger[aria-expanded="true"] .stk-header-chevron {
  transform: rotate(180deg);
  color: var(--stk-blue);
}

/* ---- Primary CTA - composes .stk-btn .stk-btn--primary ----
   The visual styling (background, color, hover, focus ring) comes from the
   .stk-btn .stk-btn--primary canonical button. This class adds only the
   header-context overrides: shrink protection, slightly tighter padding,
   and the trailing-arrow translate already handled by .stk-btn__arrow. */
.stk-header-cta {
  flex-shrink: 0;
  padding: 12px 22px;       /* tighter than default 14/22 for header context */
  min-height: 0;            /* override .stk-btn min-height: 44px */
  font-size: 14.5px;
}
.stk-header-cta svg {
  width: 14px;
  height: 14px;
}

/* ---- Mobile toggle ---- */
.stk-header-mobile-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--stk-ink-2);
  border-radius: var(--stk-r-md);
  transition: background var(--stk-t-fast) var(--stk-ease);
}

.stk-header-mobile-toggle:hover {
  background: var(--stk-surface-2);
}

.stk-header-mobile-toggle:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 2px;
}

.stk-header-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   MEGA PANEL (full-width)
   ========================================================================== */
.stk-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--stk-white);
  border-bottom: 1px solid var(--stk-border);
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--stk-t-base) var(--stk-ease),
              transform var(--stk-t-base) var(--stk-ease),
              visibility 0s linear var(--stk-t-base);
  z-index: 1;
}

.stk-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--stk-t-base) var(--stk-ease),
              transform var(--stk-t-base) var(--stk-ease),
              visibility 0s linear 0s;
}

/* ==========================================================================
   SIMPLE DROPDOWN - Jobseekers, About
   ========================================================================== */
.stk-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: var(--stk-white);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-card);
  box-shadow: 0 12px 32px rgba(15,23,42,.10);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--stk-t-fast) var(--stk-ease),
              transform var(--stk-t-fast) var(--stk-ease),
              visibility 0s linear var(--stk-t-fast);
  z-index: 1;
}

.stk-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--stk-t-fast) var(--stk-ease),
              transform var(--stk-t-fast) var(--stk-ease),
              visibility 0s linear 0s;
}

.stk-dropdown__eyebrow {
  display: block;
  font-family: var(--stk-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--stk-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 8px 12px 6px;
}

.stk-dropdown a,
.stk-dropdown a:link,
.stk-dropdown a:visited {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--stk-ink-2);
  text-decoration: none;
  border-radius: var(--stk-r-sm);
  transition: background var(--stk-t-fast) var(--stk-ease),
              color var(--stk-t-fast) var(--stk-ease);
}

.stk-dropdown a:hover,
.stk-dropdown a:focus {
  background: var(--stk-surface-1);
  color: var(--stk-blue);
}

.stk-dropdown a:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: -2px;
}

/* ==========================================================================
   MOBILE MENU - off-canvas drawer
   ========================================================================== */
.stk-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7,18,36,.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--stk-t-base) var(--stk-ease),
              visibility 0s linear var(--stk-t-base);
}

.stk-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--stk-t-base) var(--stk-ease),
              visibility 0s linear 0s;
}

.stk-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 92vw);
  height: 100vh;
  background: var(--stk-white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--stk-t-base) var(--stk-ease);
  box-shadow: -12px 0 32px rgba(15,23,42,.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.stk-mobile-menu.is-open {
  transform: translateX(0);
}

.stk-mobile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--stk-border);
  flex-shrink: 0;
}

.stk-mobile-head img,
.stk-mobile-head svg {
  height: 32px;
  width: auto;
}

.stk-mobile-close {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  color: var(--stk-ink-2);
  border-radius: var(--stk-r-md);
  transition: background var(--stk-t-fast) var(--stk-ease);
}

.stk-mobile-close:hover {
  background: var(--stk-surface-2);
}

.stk-mobile-close:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 2px;
}

.stk-mobile-close svg {
  width: 22px;
  height: 22px;
}

.stk-mobile-cta {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid var(--stk-border);
  flex-shrink: 0;
}

/* ---- Mobile drawer CTAs - compose .stk-btn .stk-btn--primary / --secondary ----
   The drawer container uses display: grid for full-width stacking. These
   modifier classes only need to neutralize the inline-flex auto-width so
   the buttons span the column. Everything else comes from .stk-btn. */
.stk-mobile-cta-primary,
.stk-mobile-cta-secondary {
  width: 100%;
}

.stk-mobile-nav {
  padding: 8px 12px;
}

.stk-mobile-nav details {
  border-bottom: 1px solid var(--stk-border);
}

.stk-mobile-nav details:last-child {
  border-bottom: 0;
}

.stk-mobile-nav summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8px;
  font-family: var(--stk-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--stk-ink);
  cursor: pointer;
  list-style: none;
}

.stk-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.stk-mobile-nav summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--stk-muted);
  border-bottom: 2px solid var(--stk-muted);
  transform: rotate(45deg);
  transition: transform var(--stk-t-fast) var(--stk-ease),
              border-color var(--stk-t-fast) var(--stk-ease);
}

.stk-mobile-nav details[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--stk-blue);
}

.stk-mobile-nav summary:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: -2px;
  border-radius: var(--stk-r-sm);
}

/* Flat top-level mobile nav link (e.g. Our Process) - matches summary rows, no chevron. */
.stk-mobile-nav > .stk-mobile-nav__flat {
  display: flex;
  align-items: center;
  padding: 16px 8px;
  font-family: var(--stk-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--stk-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--stk-border);
}
.stk-mobile-nav > .stk-mobile-nav__flat:last-child {
  border-bottom: 0;
}
.stk-mobile-nav > .stk-mobile-nav__flat:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: -2px;
  border-radius: var(--stk-r-sm);
}
/* Desktop top-level nav link rendered as an anchor (e.g. Our Process) - no underline. */
a.stk-header-trigger { text-decoration: none; }

.stk-mobile-nav-sub {
  padding: 0 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stk-mobile-nav-sub .stk-mobile-nav-group-label {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--stk-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 10px 8px 4px;
}

.stk-mobile-nav-sub a,
.stk-mobile-nav-sub a:link,
.stk-mobile-nav-sub a:visited {
  display: block;
  padding: 10px 8px;
  font-size: 14px;
  color: var(--stk-ink-3);
  text-decoration: none;
  border-radius: var(--stk-r-sm);
  transition: background var(--stk-t-fast) var(--stk-ease),
              color var(--stk-t-fast) var(--stk-ease);
}

.stk-mobile-nav-sub a:hover,
.stk-mobile-nav-sub a:focus {
  background: var(--stk-surface-1);
  color: var(--stk-blue);
}

.stk-mobile-nav-sub a:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: -2px;
}

.stk-mobile-nav-sub-foot {
  margin-top: 6px;
  padding: 10px 8px;
  font-family: var(--stk-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--stk-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.stk-mobile-nav-sub-foot:hover {
  color: var(--stk-blue-hover);
}

/* Mobile menu contact footer */
.stk-mobile-foot {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--stk-border);
  font-size: 12.5px;
  color: var(--stk-muted);
  flex-shrink: 0;
}

.stk-mobile-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--stk-ink-3);
  text-decoration: none;
  padding: 4px 0;
}

.stk-mobile-foot a svg {
  width: 12px;
  height: 12px;
  color: var(--stk-blue);
}

.stk-mobile-foot a + a {
  margin-top: 4px;
}

.stk-mobile-foot__contact {
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   HEADER RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .stk-header-nav,
  .stk-header-cta,
  .stk-header-jobs {
    display: none;
  }

  .stk-header-mobile-toggle {
    display: inline-flex;
  }

  .stk-header-utility-right {
    gap: 16px;
  }

  .stk-header-utility-right .stk-header-utility-candidate {
    display: none;
  }
}

@media (max-width: 760px) {
  .stk-header-utility-left span:not(.stk-pin-dot) {
    display: none;
  }

  .stk-header-utility-left::after {
    content: "Boutique Canadian tech recruiting";
    color: var(--stk-muted-2);
  }

  .stk-header-inner {
    padding: 0 16px;
  }
}

@media (max-width: 540px) {
  .stk-header-utility {
    height: 32px;
  }

  .stk-header-utility-right a:not(.stk-header-utility-candidate) span {
    display: none;
  }
}



/* ==========================================================================
   HERO BLOCK - Round 3b
   --------------------------------------------------------------------------
   Page-level hero. Sits below the site header. Composes:
   - .stk-btn .stk-btn--primary / --secondary  (Tier 2 atoms)
   - Token stack + atmosphere primitives        (Tier 1)

   Variants:
     .stk-hero               base (split layout - text + visual accent card)
     .stk-hero--centered     single-column, no card (case-study, marketing)
     .stk-hero--compact      condensed (sub-pages, focused entry points)
   ========================================================================== */

.stk-hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(37,99,235,.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(96,165,250,.10) 0%, transparent 55%),
    linear-gradient(145deg, var(--stk-navy-900) 0%, var(--stk-navy-800) 50%, var(--stk-navy-700) 100%);
  color: var(--stk-muted-3);
  padding: 100px 24px 96px;
  overflow: hidden;
  font-family: var(--stk-body);
}

.stk-hero__atmos {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.stk-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: center;
}

.stk-hero__content {
  min-width: 0;
}

.stk-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--stk-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--stk-blue-300);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 24px;
}

.stk-hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--stk-blue);
  display: inline-block;
}

.stk-hero__title {
  font-family: var(--stk-display);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 800;
  color: var(--stk-white);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 28px;
}

.stk-hero__title-accent {
  background: linear-gradient(135deg, var(--stk-blue-300) 0%, var(--stk-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.stk-hero__lead {
  font-family: var(--stk-body);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--stk-white);
  margin: 0 0 36px;
  max-width: 560px;
}
/* Specificity boost - beats foundations rule `.section--surface p { color: var(--stk-ink-3); }`
   which would otherwise override on the dark hero embedded inside a light doc section.
   Works in production too (the .stk-hero parent always wraps the lead). */
.stk-hero .stk-hero__lead { color: var(--stk-white); }

.stk-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

/* Hero secondary CTA - dark-surface override (composes .stk-btn--secondary) */
.stk-hero .stk-btn--secondary {
  background: rgba(255,255,255,.04);
  color: var(--stk-white);
  border-color: rgba(255,255,255,.16);
}

.stk-hero .stk-btn--secondary:hover {
  background: rgba(255,255,255,.10);
  color: var(--stk-white);
  border-color: rgba(96,165,250,.45);
}

.stk-hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--stk-muted-3);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.stk-hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stk-hero__stat-icon {
  width: 14px;
  height: 14px;
  color: var(--stk-blue-400);
  flex-shrink: 0;
}

.stk-hero__stat-star {
  color: var(--stk-gold);
  font-size: 14px;
  line-height: 1;
}

/* === VISUAL ACCENT CARD === */
.stk-hero__visual {
  position: relative;
  min-width: 0;
}

.stk-hero__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--stk-r-card);
  padding: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stk-hero__card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(96,165,250,.10) 0%, transparent 50%);
  pointer-events: none;
}

.stk-hero__card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--stk-blue-300);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 20px;
  position: relative;
}

.stk-hero__card-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stk-success);
  box-shadow: 0 0 12px rgba(34,197,94,.6);
  animation: stk-hero-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes stk-hero-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

.stk-hero__card-stat {
  font-family: var(--stk-display);
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--stk-white) 0%, var(--stk-blue-200) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}

.stk-hero__card-label {
  font-family: var(--stk-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--stk-white);
  margin-bottom: 24px;
  letter-spacing: -.005em;
  position: relative;
}

.stk-hero__card-list {
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.stk-hero__card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--stk-muted-3);
}

.stk-hero__card-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--stk-blue-400);
  flex-shrink: 0;
}

.stk-hero__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--stk-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--stk-blue-300);
  text-decoration: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  width: 100%;
  position: relative;
  transition: gap var(--stk-t-fast) var(--stk-ease),
              color var(--stk-t-fast) var(--stk-ease);
}

.stk-hero__card-cta:hover,
.stk-hero__card-cta:focus {
  color: var(--stk-white);
  gap: 8px;
}

.stk-hero__card-cta:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 3px;
  border-radius: 2px;
}

.stk-hero__card-cta svg {
  width: 13px;
  height: 13px;
}

/* === CENTERED VARIANT === */
.stk-hero--centered .stk-hero__inner {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 820px;
  text-align: center;
}

.stk-hero--centered .stk-hero__eyebrow,
.stk-hero--centered .stk-hero__actions,
.stk-hero--centered .stk-hero__meta {
  justify-content: center;
}

.stk-hero--centered .stk-hero__lead {
  margin-left: auto;
  margin-right: auto;
}

.stk-hero--centered .stk-hero__visual {
  display: none;
}

/* === COMPACT VARIANT === */
.stk-hero--compact {
  padding: 72px 24px 64px;
}

.stk-hero--compact .stk-hero__inner {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 880px;
}

.stk-hero--compact .stk-hero__title {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 16px;
}

.stk-hero--compact .stk-hero__lead {
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 680px;
}

.stk-hero--compact .stk-hero__actions {
  margin-bottom: 28px;
}

.stk-hero--compact .stk-hero__visual {
  display: none;
}

.stk-hero--compact .stk-hero__meta {
  padding-top: 20px;
}

/* === HERO RESPONSIVE === */
@media (max-width: 1024px) {
  .stk-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .stk-hero__card {
    padding: 28px;
  }
  .stk-hero__card-stat {
    font-size: 48px;
  }
}

@media (max-width: 760px) {
  .stk-hero {
    padding: 64px 20px 56px;
  }
  .stk-hero__meta {
    gap: 14px;
    font-size: 12.5px;
  }
  .stk-hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .stk-hero__actions .stk-btn {
    width: 100%;
  }
  .stk-hero__card-stat {
    font-size: 40px;
  }
}


/* ==========================================================================
   FOOTER - Round 3b
   --------------------------------------------------------------------------
   Site-wide footer. Composes token stack + atmosphere primitives from Tier 1.

   Structure:
     .stk-footer                  dark wrap with atmosphere
     .stk-footer__top             top trust strip (canonical stats)
     .stk-footer__main            5-col grid (brand + 3 nav + locations)
     .stk-footer__contact         contact strip (phone/email)
     .stk-footer__bottom          legal + copyright bar
   ========================================================================== */

.stk-footer {
  background:
    radial-gradient(ellipse at top right, rgba(37,99,235,.10) 0%, transparent 50%),
    linear-gradient(180deg, var(--stk-navy-900) 0%, #050a18 100%);
  color: var(--stk-muted-3);
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
  font-family: var(--stk-body);
}

.stk-footer__atmos {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.stk-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* TRUST STRIP - top */
.stk-footer__top {
  padding-bottom: 32px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.stk-footer__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--stk-muted-3);
  text-align: center;
}

.stk-footer__trust-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stk-footer__trust-star {
  color: var(--stk-gold);
  font-size: 14px;
  line-height: 1;
}

.stk-footer__trust-divider {
  color: var(--stk-muted);
}

/* MAIN GRID - 5 cols */
.stk-footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Brand column */
.stk-footer__brand {
  min-width: 0;
}

.stk-footer__logo {
  display: block;
  margin: 0 0 22px;
}

.stk-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.stk-footer__tagline {
  font-family: var(--stk-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--stk-white);
  margin: 0 0 12px;
  letter-spacing: -.005em;
  line-height: 1.4;
}
/* Specificity boost - same reason as .stk-hero__lead, beats `.section--surface p` */
.stk-footer .stk-footer__tagline { color: var(--stk-white); }

.stk-footer__about {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--stk-muted-3);
  margin: 0 0 24px;
  max-width: 340px;
}
.stk-footer .stk-footer__about { color: var(--stk-muted-3); }

.stk-footer__social {
  display: flex;
  gap: 8px;
}

.stk-footer__social a,
.stk-footer__social a:link,
.stk-footer__social a:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--stk-r-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--stk-muted-3);
  text-decoration: none;
  transition: background var(--stk-t-fast) var(--stk-ease),
              border-color var(--stk-t-fast) var(--stk-ease),
              color var(--stk-t-fast) var(--stk-ease),
              transform var(--stk-t-fast) var(--stk-ease);
}

.stk-footer__social a:hover,
.stk-footer__social a:focus {
  background: rgba(96,165,250,.12);
  border-color: rgba(96,165,250,.4);
  color: var(--stk-blue-300);
  transform: translateY(-1px);
}

.stk-footer__social a:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 2px;
}

.stk-footer__social svg {
  width: 16px;
  height: 16px;
}

/* Nav columns */
.stk-footer__nav-col {
  min-width: 0;
}

.stk-footer__nav-head {
  font-family: var(--stk-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--stk-white);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 20px;
}

.stk-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stk-footer__nav-list li {
  margin-bottom: 11px;
}

.stk-footer__nav-list a,
.stk-footer__nav-list a:link,
.stk-footer__nav-list a:visited {
  display: inline-block;
  font-size: 13.5px;
  color: var(--stk-muted-3);
  text-decoration: none;
  transition: color var(--stk-t-fast) var(--stk-ease),
              transform var(--stk-t-fast) var(--stk-ease);
}

.stk-footer__nav-list a:hover,
.stk-footer__nav-list a:focus {
  color: var(--stk-blue-300);
  transform: translateX(2px);
}

.stk-footer__nav-list a:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Locations column */
.stk-footer__locations {
  min-width: 0;
}

.stk-footer__location {
  margin-bottom: 20px;
  font-style: normal; /* override <address> default italic */
}

.stk-footer__location:last-child {
  margin-bottom: 0;
}

.stk-footer__location-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--stk-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--stk-white);
  margin: 0 0 4px;
}

.stk-footer__location-name svg {
  width: 12px;
  height: 12px;
  color: var(--stk-blue-400);
  flex-shrink: 0;
}

.stk-footer__location-addr {
  font-size: 12.5px;
  color: var(--stk-muted-3);
  line-height: 1.5;
  margin: 0 0 4px;
  display: block;
}

.stk-footer__location-phone {
  font-size: 12.5px;
  color: var(--stk-blue-300);
  text-decoration: none;
  display: inline-block;
  transition: color var(--stk-t-fast) var(--stk-ease);
}

.stk-footer__location-phone:hover,
.stk-footer__location-phone:focus {
  color: var(--stk-white);
}

.stk-footer__location-phone:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Map link - small affordance below the phone */
.stk-footer__location-map,
.stk-footer__location-map:link,
.stk-footer__location-map:visited {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  font-size: 12px;
  font-family: var(--stk-display);
  font-weight: 600;
  color: var(--stk-muted-3);
  text-decoration: none;
  margin-top: 6px;
  transition: color var(--stk-t-fast) var(--stk-ease),
              gap var(--stk-t-fast) var(--stk-ease);
}

.stk-footer__location-map:hover,
.stk-footer__location-map:focus {
  color: var(--stk-blue-300);
  gap: 8px;
}

.stk-footer__location-map:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 2px;
  border-radius: 2px;
}

.stk-footer__location-map svg {
  width: 11px;
  height: 11px;
}

/* Contact strip */
.stk-footer__contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.stk-footer__contact-label {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--stk-muted);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.stk-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--stk-muted-3);
  text-decoration: none;
  transition: color var(--stk-t-fast) var(--stk-ease);
}

.stk-footer__contact a:hover,
.stk-footer__contact a:focus {
  color: var(--stk-blue-300);
}

.stk-footer__contact a:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 2px;
  border-radius: 2px;
}

.stk-footer__contact svg {
  width: 14px;
  height: 14px;
  color: var(--stk-blue-400);
  flex-shrink: 0;
}

/* Bottom bar */
.stk-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  font-size: 12.5px;
  color: var(--stk-muted);
}

.stk-footer__copyright {
  color: var(--stk-muted-3);
}

.stk-footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stk-footer__legal a,
.stk-footer__legal a:link,
.stk-footer__legal a:visited {
  color: var(--stk-muted);
  text-decoration: none;
  transition: color var(--stk-t-fast) var(--stk-ease);
}

.stk-footer__legal a:hover,
.stk-footer__legal a:focus {
  color: var(--stk-blue-300);
}

.stk-footer__legal a:focus-visible {
  outline: 2px solid var(--stk-blue-400);
  outline-offset: 2px;
  border-radius: 2px;
}

/* === FOOTER RESPONSIVE === */
@media (max-width: 1100px) {
  .stk-footer__main {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
  }
  .stk-footer__locations {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
}

@media (max-width: 760px) {
  .stk-footer {
    padding: 56px 20px 0;
  }
  .stk-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .stk-footer__brand {
    grid-column: 1 / -1;
    text-align: left;
  }
  .stk-footer__locations {
    grid-template-columns: 1fr;
  }
  .stk-footer__trust {
    gap: 12px;
    flex-direction: column;
  }
  .stk-footer__trust-divider {
    display: none;
  }
  .stk-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stk-footer__main {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   JOB BOARD - Round 3c
   --------------------------------------------------------------------------
   Page-level grid that wraps Tier 2 .stk-card--role-live cards. Five state
   variants: populated, low-count, zero, loading (skeleton), error.

   Composes from Tier 2:
   - .stk-card .stk-card--role-live  (the role card itself)
   - .stk-pill / --saas / --financial / --healthcare  (work-type pills)
   - .stk-btn / .stk-btn--primary / --secondary  (CTAs)
   - Icon sprite (stk-i-*)
   ========================================================================== */

.stk-job-board {
  background: var(--stk-white);
  font-family: var(--stk-body);
}

.stk-job-board__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

/* === HEAD - count + meta === */
.stk-job-board__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--stk-border);
}

.stk-job-board__count {
  font-family: var(--stk-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  color: var(--stk-ink);
  letter-spacing: -.01em;
  margin: 0;
}

.stk-job-board__count strong {
  color: var(--stk-blue);
  font-weight: 800;
}

.stk-job-board__sub {
  font-size: 13.5px;
  color: var(--stk-muted);
  margin: 4px 0 0;
}

.stk-job-board__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--stk-success);
  text-transform: uppercase;
  letter-spacing: .14em;
}

.stk-job-board__live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stk-success);
  box-shadow: 0 0 8px rgba(34,197,94,.5);
  animation: stk-jb-pulse 2s ease-in-out infinite;
}

@keyframes stk-jb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.85); }
}

/* === GRID === */
.stk-job-board__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* === TALENT NETWORK RAIL - subtle variant (populated state) === */
.stk-job-board__rail {
  margin-top: 40px;
  background: var(--stk-blue-50);
  border: 1px solid var(--stk-blue-200);
  border-radius: var(--stk-r-card);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stk-job-board__rail-content {
  flex: 1 1 auto;
  min-width: 0;
}

.stk-job-board__rail-title {
  font-family: var(--stk-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--stk-ink);
  margin: 0 0 4px;
  letter-spacing: -.005em;
}

.stk-job-board__rail-lead {
  font-size: 14px;
  color: var(--stk-ink-3);
  margin: 0;
  line-height: 1.5;
}

/* === STATE: LOW-COUNT - same grid but with a prominent rail below === */
.stk-job-board__rail--prominent {
  margin-top: 32px;
  background:
    radial-gradient(ellipse at top right, rgba(37,99,235,.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--stk-navy-900) 0%, var(--stk-navy-800) 100%);
  border-color: rgba(255,255,255,.10);
  color: var(--stk-muted-3);
  padding: 36px 40px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.stk-job-board__rail--prominent .stk-job-board__rail-title {
  color: var(--stk-white);
  font-size: clamp(20px, 2vw, 24px);
}

.stk-job-board__rail--prominent .stk-job-board__rail-lead {
  color: var(--stk-muted-3);
  font-size: 15px;
  max-width: 520px;
  margin-top: 8px;
}

.stk-job-board__rail--prominent .stk-btn--secondary {
  background: rgba(255,255,255,.04);
  color: var(--stk-white);
  border-color: rgba(255,255,255,.16);
}

.stk-job-board__rail--prominent .stk-btn--secondary:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(96,165,250,.45);
}

/* === STATE: ZERO - full-width centered block, no grid === */
.stk-job-board__state {
  text-align: center;
  padding: 64px 24px;
  background: var(--stk-surface-1);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-card);
  max-width: 720px;
  margin: 0 auto;
}

.stk-job-board__state-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--stk-blue-50);
  color: var(--stk-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stk-job-board__state-icon svg {
  width: 28px;
  height: 28px;
}

.stk-job-board__state--zero .stk-job-board__state-icon {
  background: var(--stk-blue-50);
  color: var(--stk-blue);
}

.stk-job-board__state--error .stk-job-board__state-icon {
  background: var(--stk-error-bg);
  color: var(--stk-error);
}

.stk-job-board__state-title {
  font-family: var(--stk-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--stk-ink);
  margin: 0 0 10px;
  letter-spacing: -.015em;
}

.stk-job-board__state-lead {
  font-size: 15px;
  color: var(--stk-ink-3);
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 460px;
}

.stk-job-board__state-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === STATE: LOADING (skeleton) === */
.stk-job-board__skeleton {
  background: var(--stk-white);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-card);
  padding: 20px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stk-job-board__skeleton-bar {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg,
    var(--stk-surface-2) 0%,
    var(--stk-border) 50%,
    var(--stk-surface-2) 100%);
  background-size: 200% 100%;
  animation: stk-jb-shimmer 1.4s infinite linear;
}

.stk-job-board__skeleton-bar--title { width: 70%; height: 18px; margin-bottom: 12px; }
.stk-job-board__skeleton-bar--meta { width: 55%; height: 11px; margin-bottom: 16px; }
.stk-job-board__skeleton-bar--badge { width: 30%; height: 22px; border-radius: var(--stk-r-pill); }

@keyframes stk-jb-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .stk-job-board__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .stk-job-board__inner {
    padding: 48px 20px 64px;
  }
  .stk-job-board__grid {
    grid-template-columns: 1fr;
  }
  .stk-job-board__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .stk-job-board__rail {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .stk-job-board__rail--prominent {
    padding: 28px 24px;
  }
  .stk-job-board__state {
    padding: 48px 20px;
  }
}


/* ==========================================================================
   MULTI-STEP FORM + HUBSPOT OVERRIDE - Round 3d
   --------------------------------------------------------------------------
   The highest-stakes interaction on the site: the employer intake form that
   converts interest into a discovery call.

   Composes from Tier 2:
   - .stk-field / .stk-label / .stk-helper / .stk-error  (form atoms)
   - .stk-input / .stk-textarea / .stk-select            (input atoms)
   - .stk-radio / .stk-check                             (radio + check atoms)
   - .stk-btn / .stk-btn--primary / --secondary           (CTAs)

   Two surfaces:
   - .stk-form-flow         the native multi-step form (we control rendering)
   - .stk-form-flow--hubspot the HubSpot embed override (HS renders, we style)
   ========================================================================== */

.stk-form-flow {
  background: var(--stk-white);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-panel);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
  font-family: var(--stk-body);
}

/* === PROGRESS INDICATOR === */
.stk-form-flow__progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.stk-form-flow__progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.stk-form-flow__progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--stk-border);
  background: var(--stk-white);
  color: var(--stk-muted);
  font-family: var(--stk-display);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--stk-t-fast) var(--stk-ease),
              border-color var(--stk-t-fast) var(--stk-ease),
              color var(--stk-t-fast) var(--stk-ease),
              transform var(--stk-t-fast) var(--stk-ease);
}

.stk-form-flow__progress-step[data-state="active"] .stk-form-flow__progress-dot {
  background: var(--stk-blue);
  border-color: var(--stk-blue);
  color: var(--stk-white);
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(37,99,235,.14);
}

.stk-form-flow__progress-step[data-state="complete"] .stk-form-flow__progress-dot {
  background: var(--stk-blue);
  border-color: var(--stk-blue);
  color: var(--stk-white);
}

.stk-form-flow__progress-step[data-state="complete"] .stk-form-flow__progress-dot svg {
  width: 14px;
  height: 14px;
}

.stk-form-flow__progress-label {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--stk-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}

.stk-form-flow__progress-step[data-state="active"] .stk-form-flow__progress-label,
.stk-form-flow__progress-step[data-state="complete"] .stk-form-flow__progress-label {
  color: var(--stk-ink);
}

.stk-form-flow__progress-line {
  height: 2px;
  flex: 1 1 auto;
  background: var(--stk-border);
  margin: 0 12px;
  margin-bottom: 28px; /* aligns line with dot centers, not labels */
  transition: background var(--stk-t-base) var(--stk-ease);
}

.stk-form-flow__progress-line[data-state="complete"] {
  background: var(--stk-blue);
}

/* === STEP CONTAINER === */
.stk-form-flow__step {
  display: none;
  animation: stk-form-step-in .3s var(--stk-ease);
}

.stk-form-flow__step[data-active="true"] {
  display: block;
}

@keyframes stk-form-step-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.stk-form-flow__step-head {
  margin-bottom: 28px;
}

.stk-form-flow__step-title {
  font-family: var(--stk-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--stk-ink);
  letter-spacing: -.015em;
  margin: 0 0 8px;
}

.stk-form-flow__step-lead {
  font-size: 14.5px;
  color: var(--stk-ink-3);
  line-height: 1.6;
  margin: 0;
}

/* === FIELD ROW (2 fields side-by-side) === */
.stk-form-flow__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stk-form-flow__row .stk-field {
  margin-bottom: 18px;
}

/* === RADIO CARDS - bigger tap target, more decisive selection === */
.stk-form-flow__radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.stk-form-flow__radio-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.stk-form-flow__radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.stk-form-flow__radio-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  background: var(--stk-white);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-md);
  transition: background var(--stk-t-fast) var(--stk-ease),
              border-color var(--stk-t-fast) var(--stk-ease),
              box-shadow var(--stk-t-fast) var(--stk-ease);
}

.stk-form-flow__radio-card:hover .stk-form-flow__radio-card-body {
  border-color: var(--stk-muted-2);
}

.stk-form-flow__radio-card input:checked + .stk-form-flow__radio-card-body {
  background: var(--stk-blue-50);
  border-color: var(--stk-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.stk-form-flow__radio-card input:focus-visible + .stk-form-flow__radio-card-body {
  outline: 2px solid var(--stk-blue);
  outline-offset: 2px;
}

.stk-form-flow__radio-card-title {
  font-family: var(--stk-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--stk-ink);
}

.stk-form-flow__radio-card-sub {
  font-size: 12.5px;
  color: var(--stk-muted);
  line-height: 1.4;
}

/* === STEP NAVIGATION (Back / Next / Submit) === */
.stk-form-flow__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--stk-border);
}

.stk-form-flow__nav-back-slot {
  flex: 0 0 auto;
}

.stk-form-flow__nav-back-slot:empty::before {
  content: "";
  display: block;
}

.stk-form-flow__nav-meta {
  font-family: var(--stk-display);
  font-size: 12px;
  color: var(--stk-muted);
  text-align: center;
  flex: 1 1 auto;
}

.stk-form-flow__nav-forward-slot {
  flex: 0 0 auto;
}

/* === SUCCESS STATE === */
.stk-form-flow__success {
  text-align: center;
  padding: 32px 0;
}

.stk-form-flow__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--stk-success-bg);
  color: var(--stk-success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid var(--stk-success-bd);
}

.stk-form-flow__success-icon svg {
  width: 32px;
  height: 32px;
}

.stk-form-flow__success-title {
  font-family: var(--stk-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--stk-ink);
  margin: 0 0 12px;
  letter-spacing: -.015em;
}

.stk-form-flow__success-lead {
  font-size: 15px;
  color: var(--stk-ink-3);
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 460px;
}

.stk-form-flow__success-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--stk-blue-50);
  border: 1px solid var(--stk-blue-200);
  border-radius: var(--stk-r-pill);
  font-size: 13px;
  color: var(--stk-blue-hover);
  font-weight: 600;
}

.stk-form-flow__success-meta svg {
  width: 14px;
  height: 14px;
}

/* === HUBSPOT OVERRIDE - applies to HS-rendered forms inside .stk-form-flow--hubspot ===
   HubSpot injects markup with .hs-form-field / .hs-input / .hs-button etc.
   This scope maps every HS class to the design-system equivalent without
   touching the HubSpot script or markup. Wrap an HS embed in
   <div class="stk-form-flow stk-form-flow--hubspot">...</div> and styling
   matches the native form. */

.stk-form-flow--hubspot .hs-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.stk-form-flow--hubspot .hs-form-field > label,
.stk-form-flow--hubspot .hs-form-field > label > span,
.stk-form-flow--hubspot label.hs-form-label {
  font-family: var(--stk-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--stk-ink);
}

.stk-form-flow--hubspot .hs-form-required {
  color: var(--stk-error);
  font-weight: 700;
  margin-left: 2px;
}

.stk-form-flow--hubspot .hs-form-field .hs-field-desc,
.stk-form-flow--hubspot .hs-form-field .hs-fieldtype-text + .hs-field-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--stk-muted);
}

.stk-form-flow--hubspot .hs-input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.stk-form-flow--hubspot input[type="text"].hs-input,
.stk-form-flow--hubspot input[type="email"].hs-input,
.stk-form-flow--hubspot input[type="tel"].hs-input,
.stk-form-flow--hubspot input[type="number"].hs-input,
.stk-form-flow--hubspot input[type="url"].hs-input,
.stk-form-flow--hubspot textarea.hs-input,
.stk-form-flow--hubspot select.hs-input {
  font-family: var(--stk-body);
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--stk-ink);
  background: var(--stk-white);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-md);
  padding: 12px 14px;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color .15s cubic-bezier(.4,0,.2,1),
    box-shadow .15s cubic-bezier(.4,0,.2,1);
}

.stk-form-flow--hubspot .hs-input:hover {
  border-color: var(--stk-muted-2);
}

.stk-form-flow--hubspot .hs-input:focus {
  outline: none;
  border-color: var(--stk-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.18);
}

.stk-form-flow--hubspot textarea.hs-input {
  resize: vertical;
  min-height: 96px;
}

.stk-form-flow--hubspot select.hs-input {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  cursor: pointer;
}

/* Error state - HubSpot adds .invalid or .hs-error to the field on validation fail */
.stk-form-flow--hubspot .hs-form-field.invalid .hs-input,
.stk-form-flow--hubspot .hs-input.invalid,
.stk-form-flow--hubspot .hs-input.error {
  border-color: var(--stk-error);
}

.stk-form-flow--hubspot .hs-form-field.invalid .hs-input:focus,
.stk-form-flow--hubspot .hs-input.invalid:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,.16);
}

.stk-form-flow--hubspot .hs-error-msgs,
.stk-form-flow--hubspot .hs-error-msg,
.stk-form-flow--hubspot ul.hs-error-msgs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--stk-error);
  font-weight: 500;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

/* Checkbox + radio - HubSpot wraps each option in <li> */
.stk-form-flow--hubspot .inputs-list,
.stk-form-flow--hubspot ul.inputs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stk-form-flow--hubspot .inputs-list li {
  display: flex;
  align-items: center;
}

.stk-form-flow--hubspot .inputs-list label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--stk-ink);
}

.stk-form-flow--hubspot .inputs-list input[type="checkbox"],
.stk-form-flow--hubspot .inputs-list input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--stk-blue);
  cursor: pointer;
}

/* Submit button - match .stk-btn .stk-btn--primary */
.stk-form-flow--hubspot input[type="submit"].hs-button,
.stk-form-flow--hubspot .hs-button.primary,
.stk-form-flow--hubspot button[type="submit"].hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--stk-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 14px 22px;
  min-height: 44px;
  background: var(--stk-blue);
  color: var(--stk-white);
  border: 1px solid transparent;
  border-radius: var(--stk-r-btn);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37,99,235,.25);
  transition: background var(--stk-t-fast) var(--stk-ease),
              box-shadow var(--stk-t-base) var(--stk-ease),
              transform var(--stk-t-fast) var(--stk-ease);
  -webkit-appearance: none;
  appearance: none;
}

.stk-form-flow--hubspot input[type="submit"].hs-button:hover,
.stk-form-flow--hubspot .hs-button.primary:hover,
.stk-form-flow--hubspot button[type="submit"].hs-button:hover {
  background: var(--stk-blue-hover);
  box-shadow: 0 8px 22px rgba(37,99,235,.35);
  transform: translateY(-1px);
}

.stk-form-flow--hubspot .hs-button:focus-visible {
  outline: 2px solid var(--stk-blue);
  outline-offset: 3px;
}

/* Submitted state - HubSpot replaces form with success message */
.stk-form-flow--hubspot .submitted-message {
  text-align: center;
  padding: 32px 0;
  font-size: 15px;
  color: var(--stk-ink-3);
  line-height: 1.6;
}

/* HubSpot's GDPR consent block */
.stk-form-flow--hubspot .legal-consent-container {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--stk-border);
  font-size: 12.5px;
  color: var(--stk-muted);
  line-height: 1.5;
}

.stk-form-flow--hubspot .legal-consent-container p {
  margin: 0 0 8px;
}

/* === RESPONSIVE === */
@media (max-width: 760px) {
  .stk-form-flow {
    padding: 28px 24px;
    border-radius: var(--stk-r-card);
  }
  .stk-form-flow__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stk-form-flow__progress-label {
    display: none; /* labels hide on mobile, dots only */
  }
  .stk-form-flow__progress-line {
    margin-bottom: 0;
  }
  .stk-form-flow__nav {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 12px;
  }
  .stk-form-flow__nav .stk-btn {
    width: 100%;
  }
  .stk-form-flow__nav-meta {
    order: -1;
  }
}


/* ==========================================================================
   BLOG ARTICLE - Round 3e
   --------------------------------------------------------------------------
   Long-form reading template. Single-column reading surface (~720px line
   length) with an optional sticky TOC rail at >=1280px viewport. Hybrid
   byline pattern (named author or "STACK IT Team" fallback). Three in-
   article CTA variants for pillar-matched conversion.

   Composes from Tier 2:
   - .stk-pill / category eyebrow pills
   - .stk-card--article (for related posts row)
   - .stk-btn / --primary / --secondary
   - Icon sprite
   ========================================================================== */

.stk-article {
  background: var(--stk-white);
  font-family: var(--stk-body);
  color: var(--stk-ink);
}

.stk-article__shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  position: relative;
}

/* === HEADER === */
.stk-article__header {
  max-width: 720px;
  margin: 0 auto 40px;
}

.stk-article__pillar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-blue);
  text-decoration: none;
  margin-bottom: 16px;
}

.stk-article__pillar:hover {
  color: var(--stk-blue-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stk-article__title {
  font-family: var(--stk-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--stk-ink);
  margin: 0 0 20px;
}

.stk-article__deck {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--stk-ink-3);
  margin: 0 0 28px;
}

/* === BYLINE - hybrid: named author OR team fallback === */
.stk-article__byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--stk-border);
  border-bottom: 1px solid var(--stk-border);
}

.stk-article__byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--stk-blue-50);
  border: 1px solid var(--stk-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stk-article__byline-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Team-byline fallback uses the monogram instead of photo */
.stk-article__byline-avatar--team {
  background: var(--stk-blue);
  padding: 8px;
}

.stk-article__byline-avatar--team img {
  object-fit: contain;
}

.stk-article__byline-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.stk-article__byline-name {
  font-family: var(--stk-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--stk-ink);
  line-height: 1.3;
}

.stk-article__byline-name a {
  color: inherit;
  text-decoration: none;
}

.stk-article__byline-name a:hover {
  color: var(--stk-blue);
}

.stk-article__byline-meta {
  font-size: 12.5px;
  color: var(--stk-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.stk-article__byline-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--stk-muted-2);
  flex-shrink: 0;
}

/* === FEATURED IMAGE - AI imagery framework === */
.stk-article__featured {
  max-width: 1080px;
  margin: 0 auto 56px;
  position: relative;
}

.stk-article__featured-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--stk-blue-50) 0%, var(--stk-blue-200) 100%);
  border-radius: var(--stk-r-card);
  overflow: hidden;
  position: relative;
}

.stk-article__featured-img::after {
  content: 'AI image';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--stk-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(37,99,235,.55);
}

.stk-article__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stk-article__featured-caption {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--stk-muted);
  text-align: center;
}

/* === BODY - editorial reading typography === */
.stk-article__body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--stk-ink-2);
}

.stk-article__body p {
  margin: 0 0 22px;
}

.stk-article__body h2 {
  font-family: var(--stk-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--stk-ink);
  margin: 48px 0 16px;
  scroll-margin-top: 100px; /* for TOC anchor jumps under sticky header */
}

.stk-article__body h3 {
  font-family: var(--stk-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--stk-ink);
  margin: 36px 0 12px;
}

.stk-article__body ul,
.stk-article__body ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.stk-article__body li {
  margin-bottom: 8px;
}

.stk-article__body li::marker {
  color: var(--stk-blue);
}

.stk-article__body p a,
.stk-article__body li a {
  color: var(--stk-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.stk-article__body p a:hover,
.stk-article__body li a:hover {
  color: var(--stk-blue-hover);
  text-decoration-thickness: 2px;
}

.stk-article__body strong {
  font-weight: 700;
  color: var(--stk-ink);
}

.stk-article__body code {
  font-family: 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
  padding: 2px 6px;
  background: var(--stk-surface-1);
  border: 1px solid var(--stk-border);
  border-radius: 4px;
  color: var(--stk-ink);
}

/* In-body image with caption */
.stk-article__body figure {
  margin: 36px 0;
}

.stk-article__body figure img {
  width: 100%;
  border-radius: var(--stk-r-card);
  display: block;
}

.stk-article__body figcaption {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--stk-muted);
  text-align: center;
}

/* === CALLOUTS - info / tip / warning ===
   Neutral surface for all variants. Variant carried by the 3px left border
   and the small tinted icon disc only. Title stays ink - the content matters,
   not a color wash. */
.stk-article__callout {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: var(--stk-r-card);
  border: 1px solid var(--stk-border);
  border-left: 3px solid var(--stk-blue);
  background: var(--stk-surface-1);
}

.stk-article__callout-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(37,99,235,.10);
  color: var(--stk-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.stk-article__callout-icon svg {
  width: 14px;
  height: 14px;
}

.stk-article__callout-body {
  flex: 1;
  min-width: 0;
}

.stk-article__callout-body p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--stk-ink-2);
}

.stk-article__callout-body p + p {
  margin-top: 8px;
}

.stk-article__callout-title {
  font-family: var(--stk-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--stk-ink);
  margin: 0 0 6px;
}

/* Tip variant - border + icon only, no bg wash */
.stk-article__callout--tip {
  border-left-color: var(--stk-success);
}

.stk-article__callout--tip .stk-article__callout-icon {
  background: rgba(34,197,94,.10);
  color: var(--stk-success);
}

/* Warning variant - border + icon only, no bg wash */
.stk-article__callout--warning {
  border-left-color: var(--stk-error);
}

.stk-article__callout--warning .stk-article__callout-icon {
  background: rgba(220,38,38,.10);
  color: var(--stk-error);
}

/* === PULL QUOTE === */
.stk-article__pullquote {
  margin: 40px 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--stk-blue);
}

.stk-article__pullquote blockquote {
  margin: 0;
  font-family: var(--stk-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--stk-ink);
}

.stk-article__pullquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--stk-body);
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  color: var(--stk-muted);
}

/* === IN-ARTICLE CTA CARDS - three variants === */
.stk-article__cta-card {
  margin: 40px 0;
  padding: 28px;
  border-radius: var(--stk-r-card);
  border: 1px solid var(--stk-border);
  background: var(--stk-surface-1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.stk-article__cta-eyebrow {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-muted);
  margin-bottom: 8px;
}

.stk-article__cta-title {
  font-family: var(--stk-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--stk-ink);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}

.stk-article__cta-lead {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--stk-ink-3);
  margin: 0 0 16px;
}

.stk-article__cta-body {
  min-width: 0;
}

.stk-article__cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Variant 1 - Lead magnet promo (with PDF cover thumbnail) */
.stk-article__cta-card--lead-magnet {
  grid-template-columns: 120px 1fr;
  background: linear-gradient(180deg, var(--stk-blue-50) 0%, var(--stk-white) 100%);
  border-color: var(--stk-blue-200);
}

.stk-article__cta-thumb {
  width: 120px;
  height: 156px;
  border-radius: var(--stk-r-md);
  background: linear-gradient(135deg, var(--stk-navy-800) 0%, var(--stk-navy-900) 100%);
  box-shadow: 0 8px 22px rgba(15,23,42,.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.stk-article__cta-thumb::after {
  content: 'PDF';
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-family: var(--stk-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
}

.stk-article__cta-thumb-label {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--stk-white);
  text-align: center;
  padding: 0 12px;
  letter-spacing: -.005em;
}

.stk-article__cta-card--lead-magnet .stk-article__cta-eyebrow {
  color: var(--stk-blue);
}

/* Variant 2 - Talent network */
.stk-article__cta-card--talent {
  background: linear-gradient(135deg, var(--stk-navy-900) 0%, var(--stk-navy-800) 100%);
  border-color: rgba(255,255,255,.10);
  color: var(--stk-muted-3);
  position: relative;
  overflow: hidden;
}

.stk-article__cta-card--talent::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.18) 0%, transparent 60%);
  pointer-events: none;
}

.stk-article__cta-card--talent .stk-article__cta-eyebrow {
  color: var(--stk-blue-400);
  position: relative;
}

.stk-article__cta-card--talent .stk-article__cta-title {
  color: var(--stk-white);
  position: relative;
}

.stk-article__cta-card--talent .stk-article__cta-lead {
  color: var(--stk-muted-3);
  position: relative;
}

.stk-article__cta-card--talent .stk-article__cta-actions {
  position: relative;
}

/* Variant 3 - Discovery call (lighter, urgent) */
.stk-article__cta-card--discovery {
  background: var(--stk-white);
  border-color: var(--stk-blue);
  border-left: 4px solid var(--stk-blue);
  box-shadow: 0 8px 22px rgba(37,99,235,.10);
}

.stk-article__cta-card--discovery .stk-article__cta-eyebrow {
  color: var(--stk-blue);
}

/* === TOC - sticky rail on desktop, inline collapsible on mobile === */
.stk-article__toc-rail {
  display: none; /* Hidden by default; shown at >=1280px */
}

@media (min-width: 1280px) {
  .stk-article__toc-rail {
    display: block;
    position: sticky;
    top: 100px;
    width: 200px;
    margin-top: 8px;
    /* Positioned via absolute on shell - see below */
    position: absolute;
    left: 24px;
    top: 64px;
  }

  .stk-article__toc-rail-sticky {
    position: sticky;
    top: 100px;
  }
}

.stk-article__toc-rail-title {
  font-family: var(--stk-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-muted);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--stk-border);
}

.stk-article__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stk-article__toc-list a {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--stk-ink-3);
  text-decoration: none;
  padding: 6px 10px;
  border-left: 2px solid transparent;
  margin-left: -10px;
  transition: color var(--stk-t-fast) var(--stk-ease),
              border-color var(--stk-t-fast) var(--stk-ease);
}

.stk-article__toc-list a:hover,
.stk-article__toc-list a[aria-current="true"] {
  color: var(--stk-blue);
  border-left-color: var(--stk-blue);
}

/* Mobile TOC - collapsible card inline */
.stk-article__toc-mobile {
  max-width: 720px;
  margin: 0 auto 32px;
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-card);
  background: var(--stk-surface-1);
  overflow: hidden;
}

@media (min-width: 1280px) {
  .stk-article__toc-mobile {
    display: none;
  }
}

.stk-article__toc-mobile summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--stk-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--stk-ink);
  letter-spacing: .01em;
}

.stk-article__toc-mobile summary::-webkit-details-marker {
  display: none;
}

.stk-article__toc-mobile summary svg {
  width: 16px;
  height: 16px;
  color: var(--stk-muted);
  transition: transform var(--stk-t-fast) var(--stk-ease);
}

.stk-article__toc-mobile[open] summary svg {
  transform: rotate(180deg);
}

.stk-article__toc-mobile .stk-article__toc-list {
  padding: 0 20px 16px;
  gap: 4px;
}

.stk-article__toc-mobile .stk-article__toc-list a {
  padding: 4px 0;
  margin-left: 0;
  border-left: none;
}

/* === FOOTER - tags + share === */
.stk-article__footer {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--stk-border);
}

.stk-article__tag-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.stk-article__tag-list-label {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-muted);
  margin-right: 4px;
}

.stk-article__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--stk-ink-3);
  background: var(--stk-surface-1);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-pill);
  text-decoration: none;
  transition: background var(--stk-t-fast) var(--stk-ease),
              color var(--stk-t-fast) var(--stk-ease),
              border-color var(--stk-t-fast) var(--stk-ease);
}

.stk-article__tag:hover {
  background: var(--stk-blue-50);
  color: var(--stk-blue);
  border-color: var(--stk-blue-200);
}

.stk-article__share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--stk-border);
  border-bottom: 1px solid var(--stk-border);
}

.stk-article__share-label {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-muted);
  margin-right: 6px;
}

.stk-article__share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--stk-surface-1);
  border: 1px solid var(--stk-border);
  color: var(--stk-ink-3);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--stk-t-fast) var(--stk-ease),
              color var(--stk-t-fast) var(--stk-ease),
              border-color var(--stk-t-fast) var(--stk-ease),
              transform var(--stk-t-fast) var(--stk-ease);
}

.stk-article__share-btn:hover {
  background: var(--stk-blue);
  color: var(--stk-white);
  border-color: var(--stk-blue);
  transform: translateY(-1px);
}

.stk-article__share-btn svg {
  width: 16px;
  height: 16px;
}

/* === AUTHOR BIO BLOCK (only when named author, not team fallback) === */
.stk-article__author-bio {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 28px;
  background: var(--stk-surface-1);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-card);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
}

.stk-article__author-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--stk-blue-50);
  border: 2px solid var(--stk-white);
  box-shadow: 0 2px 8px rgba(15,23,42,.10);
}

.stk-article__author-bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder variant - used when no real author photo is available.
   The monogram logo gets contained + padded inside the avatar circle. */
.stk-article__author-bio-avatar--placeholder {
  padding: 14px;
  background: var(--stk-blue-50);
}

.stk-article__author-bio-avatar--placeholder img {
  object-fit: contain;
}

.stk-article__author-bio-name {
  font-family: var(--stk-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--stk-ink);
  margin: 0 0 2px;
  letter-spacing: -.01em;
}

.stk-article__author-bio-role {
  font-size: 12.5px;
  color: var(--stk-blue);
  font-weight: 600;
  margin: 0 0 10px;
}

.stk-article__author-bio-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--stk-ink-3);
  margin: 0;
}

.stk-article__author-bio-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--stk-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--stk-blue);
  text-decoration: none;
}

.stk-article__author-bio-link:hover {
  color: var(--stk-blue-hover);
  text-decoration: underline;
}

/* === RELATED POSTS === */
.stk-article__related {
  max-width: 1080px;
  margin: 80px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--stk-border);
}

.stk-article__related-eyebrow {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-muted);
  margin-bottom: 6px;
}

.stk-article__related-title {
  font-family: var(--stk-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--stk-ink);
  margin: 0 0 32px;
}

.stk-article__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .stk-article__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .stk-article__shell {
    padding: 48px 20px 64px;
  }
  .stk-article__featured {
    margin-bottom: 40px;
  }
  .stk-article__body {
    font-size: 16.5px;
  }
  .stk-article__cta-card--lead-magnet {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .stk-article__cta-thumb {
    width: 96px;
    height: 124px;
  }
  .stk-article__author-bio {
    grid-template-columns: 64px 1fr;
    padding: 20px;
  }
  .stk-article__related-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   LEAD MAGNET PAGE - Round 3f
   --------------------------------------------------------------------------
   Gated-download landing page. The conversion endpoint for in-article CTAs
   from 3e. Two-column hero with PDF cover + bullets on the left and a
   HubSpot embed form on the right (using .stk-form-flow--hubspot from 3d).
   HubSpot handles capture + auto-forward to the PDF.

   Composes from Tier 2:
   - .stk-btn family
   - Icon sprite

   Composes from Round 3d:
   - .stk-form-flow .stk-form-flow--hubspot  (the form panel itself)
   ========================================================================== */

.stk-magnet {
  background: var(--stk-white);
  font-family: var(--stk-body);
  color: var(--stk-ink);
  position: relative;
  overflow: hidden;
}

/* Soft background atmosphere - blue tint at top fading to white */
.stk-magnet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 480px;
  background: linear-gradient(180deg, var(--stk-blue-50) 0%, transparent 100%);
  pointer-events: none;
}

.stk-magnet__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 96px;
  position: relative;
}

/* === HEAD - centered eyebrow + title + deck === */
.stk-magnet__head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.stk-magnet__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-blue);
  margin-bottom: 18px;
}

.stk-magnet__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--stk-blue);
}

.stk-magnet__eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--stk-blue);
}

.stk-magnet__title {
  font-family: var(--stk-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--stk-ink);
  margin: 0 0 18px;
}

.stk-magnet__deck {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--stk-ink-3);
  margin: 0;
}

/* === MAIN - two-column hero === */
.stk-magnet__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* === LEFT - cover + bullets === */
.stk-magnet__cover-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.stk-magnet__cover {
  position: relative;
  width: 280px;
  aspect-ratio: 8.5 / 11;
  background: linear-gradient(155deg, var(--stk-navy-800) 0%, var(--stk-navy-900) 100%);
  border-radius: var(--stk-r-md);
  box-shadow:
    0 24px 48px -12px rgba(15, 23, 42, .28),
    0 8px 16px -4px rgba(15, 23, 42, .18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  transform: rotate(-2deg);
  transition: transform var(--stk-t-base) var(--stk-ease);
}

.stk-magnet__cover:hover {
  transform: rotate(-1deg) translateY(-2px);
}

/* Cover atmosphere - diagonal accent stripe */
.stk-magnet__cover::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.22) 0%, transparent 60%);
  pointer-events: none;
}

.stk-magnet__cover-brand {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: auto;
  position: relative;
}

.stk-magnet__cover-eyebrow {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-blue-400);
  margin-bottom: 8px;
  position: relative;
}

.stk-magnet__cover-title {
  font-family: var(--stk-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--stk-white);
  margin: 0 0 12px;
  position: relative;
}

.stk-magnet__cover-sub {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.7);
  margin: 0 0 16px;
  position: relative;
}

.stk-magnet__cover-year {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--stk-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--stk-white);
  background: rgba(37,99,235,.4);
  border: 1px solid rgba(96,165,250,.4);
  border-radius: var(--stk-r-pill);
  align-self: flex-start;
  position: relative;
}

.stk-magnet__cover-corner {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: var(--stk-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
}

/* "What's inside" bullets */
.stk-magnet__bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.stk-magnet__bullets-head {
  font-family: var(--stk-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--stk-muted);
  margin: 0 0 4px;
}

.stk-magnet__bullet {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.stk-magnet__bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37,99,235,.10);
  color: var(--stk-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.stk-magnet__bullet-icon svg {
  width: 12px;
  height: 12px;
}

.stk-magnet__bullet-title {
  font-family: var(--stk-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--stk-ink);
  display: block;
  margin-bottom: 2px;
}

.stk-magnet__bullet-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--stk-ink-3);
}

/* === RIGHT - form panel === */
.stk-magnet__form-col {
  position: relative;
}

@media (min-width: 960px) {
  .stk-magnet__form-col {
    position: sticky;
    top: 100px;
  }
}

.stk-magnet__form-panel {
  /* This wraps .stk-form-flow.stk-form-flow--hubspot - the form itself
     keeps its native card styling from Round 3d. No new container chrome. */
}

.stk-magnet__form-head {
  text-align: left;
  margin-bottom: 24px;
}

.stk-magnet__form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-blue);
  margin-bottom: 8px;
}

.stk-magnet__form-title {
  font-family: var(--stk-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--stk-ink);
  margin: 0 0 8px;
}

.stk-magnet__form-sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--stk-ink-3);
  margin: 0;
}

/* Micro-trust under the form */
.stk-magnet__form-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--stk-muted);
  flex-wrap: wrap;
}

.stk-magnet__form-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stk-magnet__form-meta-item svg {
  width: 12px;
  height: 12px;
  color: var(--stk-success);
}

/* Tighter form styling inside the magnet context - drop the 720px max-width
   from .stk-form-flow so it fills the right column properly */
.stk-magnet .stk-form-flow {
  max-width: 100%;
  padding: 32px;
}

/* === TRUST STRIP - below hero === */
.stk-magnet__trust {
  margin-top: 64px;
  padding: 24px 32px;
  background: var(--stk-surface-1);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.stk-magnet__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stk-magnet__trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--stk-white);
  border: 1px solid var(--stk-border);
  color: var(--stk-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stk-magnet__trust-item-icon svg {
  width: 16px;
  height: 16px;
}

.stk-magnet__trust-item-text {
  font-size: 13.5px;
  color: var(--stk-ink-2);
  line-height: 1.4;
}

.stk-magnet__trust-item-text strong {
  font-family: var(--stk-display);
  font-weight: 700;
  color: var(--stk-ink);
  display: block;
  font-size: 14px;
  margin-bottom: 1px;
}

/* === AUTHORITY - about this guide + about STACK IT === */
.stk-magnet__authority {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--stk-border);
}

.stk-magnet__authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.stk-magnet__authority-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stk-magnet__authority-eyebrow {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--stk-muted);
  margin: 0;
}

.stk-magnet__authority-title {
  font-family: var(--stk-display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--stk-ink);
  letter-spacing: -.015em;
  margin: 0;
}

.stk-magnet__authority-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--stk-ink-3);
  margin: 0;
}

/* Contributor card inside authority block */
.stk-magnet__contributor {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
  padding: 16px 18px;
  background: var(--stk-surface-1);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-card);
}

.stk-magnet__contributor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--stk-blue-50);
  padding: 12px;
  border: 2px solid var(--stk-white);
  box-shadow: 0 2px 8px rgba(15,23,42,.10);
}

.stk-magnet__contributor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stk-magnet__contributor-name {
  font-family: var(--stk-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--stk-ink);
  margin: 0;
}

.stk-magnet__contributor-role {
  font-size: 12.5px;
  color: var(--stk-blue);
  font-weight: 600;
  margin: 2px 0 0;
}

/* === FAQ === */
.stk-magnet__faq {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--stk-border);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.stk-magnet__faq-head {
  text-align: center;
  margin-bottom: 32px;
}

.stk-magnet__faq-eyebrow {
  font-family: var(--stk-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--stk-muted);
  margin: 0 0 8px;
}

.stk-magnet__faq-title {
  font-family: var(--stk-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--stk-ink);
  margin: 0;
}

.stk-magnet__faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stk-magnet__faq-item {
  border-bottom: 1px solid var(--stk-border);
  padding: 0;
}

.stk-magnet__faq-item:first-child {
  border-top: 1px solid var(--stk-border);
}

.stk-magnet__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--stk-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--stk-ink);
  letter-spacing: -.005em;
}

.stk-magnet__faq-item summary::-webkit-details-marker {
  display: none;
}

.stk-magnet__faq-item summary svg {
  width: 18px;
  height: 18px;
  color: var(--stk-muted);
  flex-shrink: 0;
  transition: transform var(--stk-t-fast) var(--stk-ease);
}

.stk-magnet__faq-item[open] summary svg {
  transform: rotate(180deg);
}

.stk-magnet__faq-item[open] summary {
  color: var(--stk-blue);
}

.stk-magnet__faq-body {
  padding: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--stk-ink-3);
}

.stk-magnet__faq-body p {
  margin: 0 0 12px;
}

.stk-magnet__faq-body p:last-child {
  margin-bottom: 0;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .stk-magnet__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stk-magnet__cover-col {
    align-items: center;
    text-align: center;
  }
  .stk-magnet__cover {
    transform: rotate(0);
  }
  .stk-magnet__cover:hover {
    transform: translateY(-2px);
  }
  .stk-magnet__bullets {
    text-align: left;
  }
  .stk-magnet__authority-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .stk-magnet__inner {
    padding: 40px 20px 64px;
  }
  .stk-magnet__cover {
    width: 220px;
  }
  .stk-magnet__trust {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .stk-magnet .stk-form-flow {
    padding: 24px 20px;
  }
}


/* ==========================================================================
   COOKIE CONSENT - Round 3g (Tier 3 closer)
   --------------------------------------------------------------------------
   Two surfaces:
   - .stk-consent          fixed-position bottom banner (first visit + reopens)
   - .stk-consent-modal    preferences modal (category toggles)

   PIPEDA-compliant (explicit consent, easy reject, withdrawable). AODA-aware
   (WCAG 2.0 AA contrast, full keyboard nav, ESC closes modal, focus trap,
   focus restoration to opener element).

   Composes from Tier 2:
   - .stk-btn / --primary / --secondary / --ghost-light
   - Icon sprite (close, shield-check, info, chevron-down)
   ========================================================================== */

/* === BANNER === */
.stk-consent {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 920px;
  margin: 0 auto;
  z-index: 1000;
  background: var(--stk-white);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-card);
  box-shadow:
    0 24px 48px -12px rgba(15, 23, 42, .18),
    0 8px 16px -4px rgba(15, 23, 42, .10);
  padding: 22px 26px;
  font-family: var(--stk-body);
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform .35s cubic-bezier(.4, 0, .2, 1),
    opacity .25s cubic-bezier(.4, 0, .2, 1),
    visibility 0s linear .35s;
}

.stk-consent[data-state="visible"] {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
}

.stk-consent__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.stk-consent__body {
  min-width: 0;
}

.stk-consent__title {
  font-family: var(--stk-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--stk-ink);
  margin: 0 0 4px;
  letter-spacing: -.005em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stk-consent__title svg {
  width: 16px;
  height: 16px;
  color: var(--stk-blue);
}

.stk-consent__text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--stk-ink-3);
  margin: 0;
}

.stk-consent__text a {
  color: var(--stk-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stk-consent__text a:hover {
  color: var(--stk-blue-hover);
}

.stk-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Demo-only modifier - pins the banner in document flow for the design system doc */
.stk-consent--demo {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  transform: none;
  opacity: 1;
  visibility: visible;
  margin: 0 auto;
  transition: none;
}

/* === MODAL - preferences === */
.stk-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: var(--stk-body);
}

.stk-consent-modal[data-state="visible"] {
  display: flex;
}

.stk-consent-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  animation: stk-consent-fade-in .25s cubic-bezier(.4, 0, .2, 1) forwards;
}

.stk-consent-modal__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 32px);
  background: var(--stk-white);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-panel);
  box-shadow:
    0 32px 64px -16px rgba(15, 23, 42, .35),
    0 12px 24px -8px rgba(15, 23, 42, .20);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.98);
  animation: stk-consent-panel-in .3s cubic-bezier(.4, 0, .2, 1) .05s forwards;
}

@keyframes stk-consent-fade-in {
  to { opacity: 1; }
}

@keyframes stk-consent-panel-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal head */
.stk-consent-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--stk-border);
  flex-shrink: 0;
}

.stk-consent-modal__head-content {
  min-width: 0;
}

.stk-consent-modal__title {
  font-family: var(--stk-display);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--stk-ink);
  margin: 0 0 6px;
}

.stk-consent-modal__lead {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--stk-ink-3);
  margin: 0;
}

.stk-consent-modal__lead a {
  color: var(--stk-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stk-consent-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--stk-surface-1);
  border: 1px solid var(--stk-border);
  color: var(--stk-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--stk-t-fast) var(--stk-ease),
    color var(--stk-t-fast) var(--stk-ease),
    border-color var(--stk-t-fast) var(--stk-ease);
  flex-shrink: 0;
}

.stk-consent-modal__close:hover {
  background: var(--stk-blue-50);
  color: var(--stk-blue);
  border-color: var(--stk-blue-200);
}

.stk-consent-modal__close:focus-visible {
  outline: 2px solid var(--stk-blue);
  outline-offset: 2px;
}

.stk-consent-modal__close svg {
  width: 14px;
  height: 14px;
}

/* Modal body - category list */
.stk-consent-modal__body {
  padding: 8px 28px;
  overflow-y: auto;
  flex: 1 1 auto;
}

.stk-consent-modal__category {
  padding: 18px 0;
  border-bottom: 1px solid var(--stk-border);
}

.stk-consent-modal__category:last-child {
  border-bottom: none;
}

.stk-consent-modal__category-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.stk-consent-modal__category-info {
  flex: 1;
  min-width: 0;
}

.stk-consent-modal__category-name {
  font-family: var(--stk-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--stk-ink);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stk-consent-modal__category-name-badge {
  font-family: var(--stk-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stk-success);
  background: rgba(34, 197, 94, .10);
  padding: 2px 8px;
  border-radius: var(--stk-r-pill);
}

.stk-consent-modal__category-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--stk-ink-3);
  margin: 6px 0 0;
}

.stk-consent-modal__category-detail {
  margin-top: 10px;
}

.stk-consent-modal__category-detail summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--stk-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stk-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.stk-consent-modal__category-detail summary::-webkit-details-marker {
  display: none;
}

.stk-consent-modal__category-detail summary:hover {
  color: var(--stk-blue);
}

.stk-consent-modal__category-detail summary svg {
  width: 12px;
  height: 12px;
  transition: transform var(--stk-t-fast) var(--stk-ease);
}

.stk-consent-modal__category-detail[open] summary svg {
  transform: rotate(180deg);
}

.stk-consent-modal__category-detail-body {
  margin-top: 8px;
  padding: 12px 14px;
  background: var(--stk-surface-1);
  border: 1px solid var(--stk-border);
  border-radius: var(--stk-r-md);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--stk-ink-3);
}

.stk-consent-modal__category-detail-body strong {
  font-weight: 700;
  color: var(--stk-ink);
}

/* === TOGGLE SWITCH === */
.stk-consent-toggle {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 2px;
}

.stk-consent-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.stk-consent-toggle__track {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: var(--stk-muted-2);
  position: relative;
  transition: background var(--stk-t-fast) var(--stk-ease);
}

.stk-consent-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--stk-white);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .20);
  transition: transform var(--stk-t-fast) var(--stk-ease);
}

.stk-consent-toggle input:checked + .stk-consent-toggle__track {
  background: var(--stk-blue);
}

.stk-consent-toggle input:checked + .stk-consent-toggle__track .stk-consent-toggle__thumb {
  transform: translateX(18px);
}

.stk-consent-toggle input:focus-visible + .stk-consent-toggle__track {
  outline: 2px solid var(--stk-blue);
  outline-offset: 3px;
}

.stk-consent-toggle input:disabled + .stk-consent-toggle__track {
  background: var(--stk-success);
  cursor: not-allowed;
  opacity: .8;
}

.stk-consent-toggle--locked {
  cursor: not-allowed;
}

/* Modal foot */
.stk-consent-modal__foot {
  padding: 18px 28px;
  border-top: 1px solid var(--stk-border);
  background: var(--stk-surface-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.stk-consent-modal__foot-meta {
  font-size: 12px;
  color: var(--stk-muted);
  flex: 1 1 auto;
  min-width: 0;
}

.stk-consent-modal__foot-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* === RESPONSIVE === */
@media (max-width: 760px) {
  .stk-consent {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 18px;
  }
  .stk-consent__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .stk-consent__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .stk-consent__actions .stk-btn {
    width: 100%;
  }
  .stk-consent-modal__head {
    padding: 22px 20px 18px;
  }
  .stk-consent-modal__body {
    padding: 8px 20px;
  }
  .stk-consent-modal__foot {
    padding: 16px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .stk-consent-modal__foot-actions {
    flex-direction: column-reverse;
  }
  .stk-consent-modal__foot-actions .stk-btn {
    width: 100%;
  }
  .stk-consent-modal__foot-meta {
    text-align: center;
  }
}

/* ==========================================================================
   DROPDOWN MENU (Tier 3) - left-rail navigator shell (.stk-dm)
   Reuses the .stk-mega open/close controller for show/hide; .stk-dm restyles
   the full-width bar into a contained, rounded panel. Hire by Role uses it now;
   Industries / Resources adopt it as they migrate off the legacy mega.
   ========================================================================== */
.stk-mega.stk-dm { background: transparent; border-bottom: 0; box-shadow: none; }
.stk-dm-inner { max-width: 1280px; margin: 0 auto; padding: 12px 24px 40px; }
.stk-dm-grid {
  background: var(--stk-white);
  border: 1px solid var(--stk-border);
  border-radius: 14px;
  box-shadow: 0 24px 60px -18px rgba(15,23,42,.22);
  display: grid;
  grid-template-columns: 300px 1fr 296px;
  overflow: hidden;
}
.stk-dm-eyebrow {
  font-family: var(--stk-mono);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--stk-muted-2); margin: 0 0 12px; padding: 0 10px;
}
/* left rail */
.stk-dm-rail { padding: 22px 16px; border-right: 1px solid var(--stk-border); background: var(--stk-surface-1); }
.stk-dm-rail__item {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 12px; padding: 11px 10px;
  border-radius: var(--stk-r-md); text-align: left;
  transition: background var(--stk-t-fast) var(--stk-ease), box-shadow var(--stk-t-fast) var(--stk-ease);
}
.stk-dm-rail__item:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 2px; }
.stk-dm-rail__ico {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--stk-white); border: 1px solid var(--stk-border); color: var(--stk-muted);
  transition: background var(--stk-t-fast) var(--stk-ease), border-color var(--stk-t-fast) var(--stk-ease), color var(--stk-t-fast) var(--stk-ease);
}
.stk-dm-rail__ico svg { width: 19px; height: 19px; }
.stk-dm-rail__txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.stk-dm-rail__name { font-family: var(--stk-display); font-weight: 600; font-size: 14px; color: var(--stk-ink); letter-spacing: -.01em; }
.stk-dm-rail__desc { font-size: 12px; color: var(--stk-muted); line-height: 1.3; }
.stk-dm-rail__arrow {
  width: 15px; height: 15px; margin-left: auto; color: var(--stk-blue);
  opacity: 0; transform: translateX(-4px); flex-shrink: 0;
  transition: opacity var(--stk-t-fast) var(--stk-ease), transform var(--stk-t-fast) var(--stk-ease);
}
.stk-dm-rail__item:hover { background: var(--stk-white); }
.stk-dm-rail__item.is-active { background: var(--stk-white); box-shadow: 0 4px 16px rgba(15,23,42,.07); }
.stk-dm-rail__item.is-active .stk-dm-rail__ico { background: var(--stk-blue); border-color: var(--stk-blue); color: #fff; }
.stk-dm-rail__item.is-active .stk-dm-rail__arrow { opacity: 1; transform: translateX(0); }
/* middle */
.stk-dm-mid { padding: 24px 28px; display: flex; flex-direction: column; min-height: 360px; }
.stk-dm-panel { flex: 1; flex-direction: column; }
.stk-dm-panel:not([hidden]) { display: flex; }
.stk-dm-panel__head {
  font-family: var(--stk-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--stk-muted-2); margin: 0 0 16px; display: flex; align-items: center; gap: 8px;
}
.stk-dm-panel__n { font-family: var(--stk-mono); color: var(--stk-blue); }
.stk-dm-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 24px; }
.stk-dm-role {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--stk-r-md);
  font-size: 14px; color: var(--stk-ink-2); text-decoration: none;
  transition: background var(--stk-t-fast) var(--stk-ease), color var(--stk-t-fast) var(--stk-ease);
}
.stk-dm-role__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--stk-muted-3); flex-shrink: 0; transition: background var(--stk-t-fast) var(--stk-ease); }
.stk-dm-role:hover { background: var(--stk-surface-1); color: var(--stk-blue); }
.stk-dm-role:hover .stk-dm-role__dot { background: var(--stk-blue); }
.stk-dm-role:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 1px; }
/* pillar spot card (fills leftover space, links to the category pillar) */
.stk-dm-spot {
  flex: 1; min-height: 66px; margin-top: 16px;
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  background: var(--stk-surface-1); border: 1px solid var(--stk-border); border-radius: var(--stk-r-md);
  text-decoration: none; position: relative; overflow: hidden;
  transition: background var(--stk-t-fast) var(--stk-ease), border-color var(--stk-t-fast) var(--stk-ease);
}
.stk-dm-spot:hover { background: var(--stk-blue-50); border-color: var(--stk-blue-300); }
.stk-dm-spot:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 2px; }
.stk-dm-spot__ico {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--stk-white); border: 1px solid var(--stk-border); color: var(--stk-blue);
  transition: background var(--stk-t-fast) var(--stk-ease), border-color var(--stk-t-fast) var(--stk-ease), color var(--stk-t-fast) var(--stk-ease);
}
.stk-dm-spot__ico svg { width: 20px; height: 20px; }
.stk-dm-spot:hover .stk-dm-spot__ico { background: var(--stk-blue); border-color: var(--stk-blue); color: #fff; }
.stk-dm-spot__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; position: relative; z-index: 1; }
.stk-dm-spot__head { font-family: var(--stk-display); font-weight: 600; font-size: 14px; color: var(--stk-ink); letter-spacing: -.01em; }
.stk-dm-spot__sub { font-size: 12.5px; color: var(--stk-muted); line-height: 1.35; }
.stk-dm-spot__arrow { margin-left: auto; width: 17px; height: 17px; color: var(--stk-blue); flex-shrink: 0; position: relative; z-index: 1; transition: transform var(--stk-t-fast) var(--stk-ease); }
.stk-dm-spot:hover .stk-dm-spot__arrow { transform: translateX(3px); }
.stk-dm-spot__glyph { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 104px; height: 104px; color: var(--stk-blue); opacity: .06; pointer-events: none; }
.stk-dm-spot__glyph svg { width: 100%; height: 100%; }
.stk-dm-spot:hover .stk-dm-spot__glyph { opacity: .09; }
/* featured column (content swaps per menu; structure is shared) */
.stk-dm-feat { padding: 22px; border-left: 1px solid var(--stk-border); background: var(--stk-surface-1); }
.stk-dm-feat__card { background: linear-gradient(150deg, var(--stk-navy-900), var(--stk-navy-700)); border-radius: var(--stk-r-md); padding: 20px; color: #fff; }
.stk-dm-feat__badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--stk-mono); font-size: 10.5px; letter-spacing: .05em; color: var(--stk-blue-300); }
.stk-dm-feat__badge svg { width: 13px; height: 13px; }
.stk-dm-feat__stat { font-family: var(--stk-display); font-weight: 800; font-size: 30px; line-height: 1; margin: 12px 0 4px; }
.stk-dm-feat__sub { font-size: 12.5px; color: var(--stk-muted-3); line-height: 1.45; margin: 0 0 16px; }
.stk-dm-feat__cta { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--stk-navy-900); font-family: var(--stk-display); font-weight: 600; font-size: 13px; padding: 9px 14px; border-radius: var(--stk-r-md); text-decoration: none; }
.stk-dm-feat__cta:hover { color: var(--stk-navy-900); }
.stk-dm-feat__cta svg { width: 14px; height: 14px; }
.stk-dm-feat__links { margin-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.stk-dm-feat__link { display: flex; align-items: center; gap: 9px; padding: 7px 6px; font-size: 13px; color: var(--stk-ink-3); text-decoration: none; border-radius: var(--stk-r-sm); transition: color var(--stk-t-fast) var(--stk-ease); }
.stk-dm-feat__link svg { width: 15px; height: 15px; color: var(--stk-blue); flex-shrink: 0; }
.stk-dm-feat__link:hover { color: var(--stk-blue); }
@media (max-width: 1180px) { .stk-dm-grid { grid-template-columns: 264px 1fr 256px; } }
.stk-header-jobs { color: var(--stk-ink-3); font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap; transition: color var(--stk-t-fast) var(--stk-ease); }
.stk-header-jobs:hover { color: var(--stk-blue); }
.stk-header-jobs:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 2px; border-radius: 2px; }
.stk-header-actions { display: flex; align-items: center; gap: 22px; }

/* --- Industries dropdown additions (.stk-dm-ind) ------------------------- */
.stk-dm-ind__top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.stk-dm-ind__more { font-family: var(--stk-display); font-weight: 600; font-size: 12.5px; color: var(--stk-blue); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.stk-dm-ind__more svg { width: 13px; height: 13px; transition: transform var(--stk-t-fast) var(--stk-ease); }
.stk-dm-ind__more:hover svg { transform: translateX(3px); }
.stk-dm-ind__more:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 2px; border-radius: 2px; }
.stk-dm-ind__lead { font-size: 14px; color: var(--stk-ink-2); line-height: 1.5; margin: 10px 0 26px; max-width: 52ch; }
.stk-dm-sub { font-family: var(--stk-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--stk-muted-2); margin: 0 0 14px; }
.stk-dm-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.stk-dm-chip { font-size: 13px; font-weight: 500; color: var(--stk-ink-3); background: var(--stk-surface-1); border: 1px solid var(--stk-border); border-radius: 999px; padding: 7px 13px; }
.stk-dm-ind .stk-dm-roles { gap: 8px 24px; margin-bottom: 8px; }
.stk-dm-logos { margin-top: auto; background: linear-gradient(150deg, var(--stk-navy-900), var(--stk-navy-700)); border-radius: var(--stk-r-md); padding: 16px 18px; }
.stk-dm-logos__head { font-family: var(--stk-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--stk-blue-300); margin: 0 0 12px; }
.stk-dm-logos__row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.stk-dm-logos__row img { height: 24px; width: auto; opacity: .9; filter: brightness(0) invert(1); }
.stk-dm-feat__gtitle { font-family: var(--stk-display); font-weight: 700; font-size: 20px; line-height: 1.15; margin: 12px 0 6px; }

/* --- Locations dropdown (.stk-dm--loc : no rail, office cards + cities) --- */
.stk-dm-grid--loc { grid-template-columns: 1fr 300px; }
.stk-dm--loc .stk-dm-main { padding: 24px 28px; }
.stk-dm-offices { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 22px; }
.stk-dm-office { border: 1px solid var(--stk-border); border-radius: 10px; overflow: hidden; background: #fff; transition: border-color var(--stk-t-fast) var(--stk-ease), box-shadow var(--stk-t-fast) var(--stk-ease); }
.stk-dm-office:hover { border-color: var(--stk-blue-300); box-shadow: 0 8px 24px -10px rgba(37,99,235,.25); }
.stk-dm-office__map { display: block; height: 76px; background-color: var(--stk-surface-1); background-position: center; background-size: cover; background-repeat: no-repeat; border-bottom: 1px solid var(--stk-border); }
.stk-dm-office__body { padding: 13px 15px 15px; }
.stk-dm-office__name { font-family: var(--stk-display); font-weight: 700; font-size: 15.5px; color: var(--stk-ink); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; letter-spacing: -.01em; }
.stk-dm-office__name:hover { color: var(--stk-blue); }
.stk-dm-office__hq { font-family: var(--stk-mono); font-size: 9.5px; font-weight: 500; letter-spacing: .06em; color: var(--stk-blue); background: var(--stk-blue-50); border: 1px solid var(--stk-blue-300); border-radius: 3px; padding: 1px 5px; }
.stk-dm-office__addr { font-size: 12.5px; color: var(--stk-muted); line-height: 1.45; margin: 7px 0 9px; }
.stk-dm-office__reviews { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; margin-bottom: 11px; }
.stk-dm-office__stars { display: inline-flex; gap: 1px; color: var(--stk-gold); }
.stk-dm-office__stars svg { width: 13px; height: 13px; }
.stk-dm-office__rating { font-size: 12px; font-weight: 600; color: var(--stk-ink-2); }
.stk-dm-office__rlabel { font-size: 12px; color: var(--stk-muted); transition: color var(--stk-t-fast) var(--stk-ease); }
.stk-dm-office__reviews:hover .stk-dm-office__rlabel { color: var(--stk-blue); }
.stk-dm-office__reviews:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 2px; border-radius: 2px; }
.stk-dm-office__links { display: flex; flex-direction: column; gap: 7px; }
.stk-dm-office__link { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 500; color: var(--stk-ink-3); text-decoration: none; }
.stk-dm-office__link svg { width: 14px; height: 14px; color: var(--stk-blue); flex-shrink: 0; }
.stk-dm-office__link:hover { color: var(--stk-blue); }
.stk-dm-office__link:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 2px; border-radius: 2px; }
.stk-dm-citychips { display: flex; flex-wrap: wrap; gap: 8px; }
.stk-dm-citychip { font-size: 13px; font-weight: 500; color: var(--stk-ink-3); background: var(--stk-surface-1); border: 1px solid var(--stk-border); border-radius: 999px; padding: 7px 14px; text-decoration: none; transition: color var(--stk-t-fast) var(--stk-ease), border-color var(--stk-t-fast) var(--stk-ease), background var(--stk-t-fast) var(--stk-ease); }
.stk-dm-citychip:hover { color: var(--stk-blue); border-color: var(--stk-blue-300); background: var(--stk-blue-50); }
.stk-dm-citychip:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 2px; }

/* --- Resources dropdown (.stk-dm--res : magnet panels + blog) ------------- */
.res-magnet { display: flex; gap: 18px; align-items: flex-start; max-width: 80%; }
.res-magnet__ico { width: 58px; height: 58px; flex-shrink: 0; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--stk-blue-50); border: 1px solid var(--stk-blue-300); color: var(--stk-blue); }
.res-magnet__ico svg { width: 30px; height: 30px; }
.res-magnet__body { display: flex; flex-direction: column; }
.res-meta { font-family: var(--stk-mono); font-size: 10px; letter-spacing: .04em; color: var(--stk-blue); background: var(--stk-blue-50); border: 1px solid var(--stk-blue-300); border-radius: 3px; padding: 1px 6px; margin-left: 8px; vertical-align: middle; }
.res-magnet__title { font-family: var(--stk-display); font-weight: 700; font-size: 21px; line-height: 1.15; color: var(--stk-ink); letter-spacing: -.02em; margin: 4px 0 0; }
.res-magnet__desc { font-size: 14px; color: var(--stk-ink-2); line-height: 1.55; margin: 10px 0 0; max-width: 42ch; }
.res-inside-h { font-family: var(--stk-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--stk-muted-2); margin: 18px 0 10px; }
.res-inside { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0; padding: 0; }
.res-inside li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--stk-ink-2); }
.res-inside li svg { width: 14px; height: 14px; color: var(--stk-blue); flex-shrink: 0; }
.res-magnet__cta { margin-top: 18px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; background: var(--stk-blue); color: #fff; font-family: var(--stk-display); font-weight: 600; font-size: 13.5px; padding: 10px 16px; border-radius: var(--stk-r-md); text-decoration: none; transition: background var(--stk-t-fast) var(--stk-ease); }
.res-magnet__cta svg { width: 15px; height: 15px; }
.res-magnet__cta:hover { background: var(--stk-blue-hover); color: #fff; }
.res-magnet__cta:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 2px; }
.res-magnet__cta--ghost { background: none; color: var(--stk-blue); border: 1px solid var(--stk-blue-300); padding: 9px 14px; }
.res-magnet__cta--ghost:hover { background: var(--stk-blue-50); }
.res-blog { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; width: 100%; }
.res-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.res-pill { font-size: 13px; font-weight: 500; color: var(--stk-ink-3); background: var(--stk-surface-1); border: 1px solid var(--stk-border); border-radius: 999px; padding: 7px 13px; text-decoration: none; transition: color var(--stk-t-fast) var(--stk-ease), border-color var(--stk-t-fast) var(--stk-ease), background var(--stk-t-fast) var(--stk-ease); }
.res-pill:hover { color: var(--stk-blue); border-color: var(--stk-blue-300); background: var(--stk-blue-50); }
.res-pill:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 2px; }
.res-posts { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.res-post { display: flex; flex-direction: column; gap: 2px; padding: 9px 10px; border-radius: var(--stk-r-md); text-decoration: none; transition: background var(--stk-t-fast) var(--stk-ease); }
.res-post:hover { background: var(--stk-surface-1); }
.res-post:focus-visible { outline: 2px solid var(--stk-blue-400); outline-offset: 1px; }
.res-post__pillar { font-family: var(--stk-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--stk-blue); }
.res-post__title { font-size: 13.5px; font-weight: 500; color: var(--stk-ink-2); line-height: 1.35; }
