/* AlignedCardio Design System — AIDesigner v2 */
/* Palette: Deep Navy, Slate, Electric Blue, Crisp White */

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

:root {
  --navy-900: #03070E;
  --navy-800: #050C17;
  --navy-700: #0A1526;
  --slate-900: #0F141E;
  --slate-800: #131924;
  --slate-700: #1A2333;
  --accent:    #005AE0;
  --accent-h:  #004BBA;
  --surface:   #F3F5F7;
  --white:     #FFFFFF;
  --border:    #E2E8F0;
  --text:      #050C17;
  --text-soft: #4a5c74;
  --success:   #0f8b53;
  --danger:    #a32d2d;
  --amber:     #BA7517;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Typography */
.font-display { font-family: 'Outfit', sans-serif; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }

/* Navigation */
.nav {
  position: fixed; top: 0; width: 100%; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 88rem; margin: 0 auto; padding: 0 1.5rem;
  height: 5rem; display: grid; grid-template-columns: minmax(13rem, 1fr) auto minmax(13rem, 1fr);
  align-items: center; column-gap: 1.5rem;
}
.nav-inner > a:first-child { justify-self: start; }
.nav-logo { height: 3.5rem; width: auto; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; justify-self: center; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: #0a0f1e;
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--accent); }

.nav-links a.active {
  color: var(--accent);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}
.nav-ctas { display: flex; gap: 0.75rem; align-items: center; justify-self: end; }

@media (min-width: 901px) and (max-width: 1180px) {
  .nav-inner { padding-left: 1rem; padding-right: 1rem; }
  .nav-links { gap: 1.125rem; }
  .nav-links a { font-size: 0.8125rem; letter-spacing: 0.01em; }
}
.mobile-menu-btn {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(10,15,30,0.18);
  border-radius: 4px;
  background: rgba(10,15,30,0.04);
  color: #0a0f1e;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
}
.mobile-menu-panel {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(5,12,23,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.25rem 1.25rem;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.mobile-menu-open .mobile-menu-panel { display: block; }
.btn-ghost {
  font-size: 0.875rem; font-weight: 500; color: #fff; padding: 0.625rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
  text-decoration: none; transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-primary {
  font-size: 0.875rem; font-weight: 500; color: #fff; padding: 0.625rem 1.25rem;
  background: var(--accent); border-radius: 4px;
  text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-h); }
.btn-primary-lg {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 500; color: #fff; padding: 1rem 2rem;
  background: var(--accent); border-radius: 4px;
  text-decoration: none; transition: background 0.2s;
}
.btn-primary-lg:hover { background: var(--accent-h); }
.btn-outline-lg {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 500; color: #fff; padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 4px;
  text-decoration: none; transition: background 0.2s;
}
.btn-outline-lg:hover { background: rgba(255,255,255,0.08); }

/* Container */
.container { max-width: 88rem; margin: 0 auto; padding: 0 1.5rem; }

/* Hero */
.hero {
  position: relative; padding: 12rem 0 8rem; overflow: hidden;
  background: var(--navy-800);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.3; filter: grayscale(100%) contrast(1.2) brightness(0.7);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,12,23,0.8) 0%, rgba(5,12,23,0.97) 100%);
}
.hero-content { position: relative; z-index: 10; max-width: 56rem; }
.hero-eyebrow {
  font-size: 1.125rem; font-weight: 300; color: rgba(255,255,255,0.55);
  letter-spacing: -0.01em; margin-bottom: 1rem; font-family: 'Outfit', sans-serif;
}
.hero-h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600; color: #fff; letter-spacing: -0.04em;
  line-height: 1.05; margin-bottom: 2rem;
}
.hero-border-copy {
  border-left: 2px solid var(--accent); padding-left: 1.5rem;
  color: rgba(255,255,255,0.65); font-size: 1.125rem; font-weight: 300;
  max-width: 40rem; line-height: 1.65; margin-bottom: 3rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats Bar */
.stats-bar { background: var(--slate-800); border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell {
  padding: 2rem; border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: #fff; letter-spacing: -0.04em; line-height: 1;
}
.stat-label {
  font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem;
}

/* Section Commons */
.section { padding: 7rem 0; }
.section-white { background: #fff; }
.section-surface { background: var(--surface); }
.section-dark { background: var(--slate-900); }
.section-navy { background: var(--navy-800); }
.section-header { margin-bottom: 4rem; }
.section-header-flex {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 4rem;
}
.eyebrow {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 600;
  color: var(--navy-800); letter-spacing: -0.04em; line-height: 1.1;
}
.section-title-white { color: #fff; }
.section-subtitle {
  font-size: 1.0625rem; color: var(--text-soft); max-width: 40rem;
  line-height: 1.65; margin-top: 0.75rem;
}
.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent);
  transition: color 0.2s; white-space: nowrap;
}
.text-link:hover { color: var(--navy-800); }

/* Prose “see also” rows — stay in reading flow (AIDesigner: inline accent links in body, not floating chip nav) */
.partnership-see-also {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.partnership-see-also a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.partnership-see-also a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.partnership-see-also-sep {
  color: var(--border);
  margin: 0 0.5rem;
  font-weight: 300;
}

.context-see-also {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 42rem;
}
.context-see-also a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.context-see-also a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.context-see-also-sep {
  color: var(--border);
  margin: 0 0.35rem;
  font-weight: 300;
}
.context-see-also-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-right: 0.5rem;
}

/* Centered “see also” line directly under a section (e.g. partnership process grid) — prose-adjacent, not a detached UI strip */
.partnership-see-also {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.75rem;
}
.partnership-see-also a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.partnership-see-also a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Optional banded link row — tools hubs / explicit secondary nav only; not for narrative “see also” under process grids */
.explore-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.25rem;
  text-align: center;
  margin-top: 3rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
}
.explore-strip--band {
  margin-top: 0;
  max-width: none;
  padding: 1.35rem 1.25rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}
.explore-strip__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-right: 0.35rem;
  flex-shrink: 0;
}
.explore-strip__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.15rem;
}
.explore-strip__link {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.explore-strip__link:hover {
  background: rgba(0, 90, 224, 0.09);
  color: var(--accent);
}
.explore-strip__sep {
  color: var(--border);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1;
  user-select: none;
  padding: 0 0.2rem;
  pointer-events: none;
}
@media (max-width: 540px) {
  .explore-strip--band {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.15rem 1rem;
  }
  .explore-strip__label {
    margin-right: 0;
  }
}

/* Service Cards Bento Grid */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bento-card {
  background: #fff; border: 1px solid var(--border); border-radius: 4px;
  padding: 2.5rem; display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.bento-card:hover { border-color: #b8c7df; }
.bento-card-wide { grid-column: span 2; display: flex; flex-direction: row; padding: 0; overflow: hidden; }
.bento-card-wide-copy { flex: 1; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.bento-card-wide-img { flex: 1; min-height: 280px; background: #e8edf5; position: relative; }
.bento-card-wide-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-icon {
  width: 2.75rem; height: 2.75rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.25rem; color: var(--accent);
}
.card-title {
  font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 600;
  color: var(--navy-800); letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.card-body { font-size: 0.9375rem; color: var(--text-soft); line-height: 1.65; flex-grow: 1; margin-bottom: 1.5rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; font-weight: 700; color: var(--navy-800);
  text-decoration: none; transition: color 0.2s;
}
.card-link:hover { color: var(--accent); }

/* Process Steps */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-step { position: relative; padding-top: 0.5rem; }
.process-step::before {
  content: ''; position: absolute; top: 1.5rem; left: 3.5rem; right: -2rem;
  height: 1px; background: var(--border);
}
.process-step:last-child::before { display: none; }
.step-num {
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 2px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9375rem;
  color: var(--accent); margin-bottom: 2rem; position: relative; z-index: 1;
}
.step-num.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 0 0 4px #fff; }
.step-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 600; color: var(--navy-800); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.step-body { font-size: 0.875rem; color: var(--text-soft); line-height: 1.65; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--slate-800); padding: 3rem; border-radius: 4px;
}
.quote-mark { font-size: 3.5rem; color: var(--accent); opacity: 0.8; line-height: 1; margin-bottom: 1.5rem; font-family: Georgia, serif; }
.quote-text {
  font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 300;
  color: #fff; line-height: 1.65; letter-spacing: -0.02em; margin-bottom: 2.5rem;
}
.quote-author-wrap {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
}
.author-avatar {
  width: 3rem; height: 3rem; background: var(--slate-700); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-family: 'Outfit', sans-serif; font-weight: 600;
}
.author-name { color: #fff; font-weight: 600; font-size: 0.9375rem; }
.author-title { color: rgba(255,255,255,0.45); font-size: 0.8125rem; }

/* CTA Band */
.cta-band { background: var(--navy-800); padding: 7rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
.cta-title { font-size: clamp(2.5rem, 5vw, 3.75rem); color: #fff; letter-spacing: -0.04em; margin-bottom: 1.25rem; }
.cta-sub { font-size: 1.125rem; color: rgba(255,255,255,0.5); font-weight: 300; margin-bottom: 3rem; }
.cta-email-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 1rem; font-weight: 500; color: #fff; padding: 1rem 2rem;
  background: var(--accent); border-radius: 4px; text-decoration: none;
  transition: background 0.2s;
}
.cta-email-btn:hover { background: var(--accent-h); }

/* Mailto links — envelope icon (injected by assets/mailto-icons.js on CTA-style links) */
a.mailto-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
a.mailto-link .ph {
  flex-shrink: 0;
  font-size: 1.05em;
  opacity: 0.92;
}

/* Homepage hero — two primary paths + quiet secondary resources */
.home-hero-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.home-hero-sublinks {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}
.home-hero-sublinks-label {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.home-hero-sublinks a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.home-hero-sublinks a:hover {
  color: #fff;
}
.home-hero-sublinks-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.home-hero-cta-primary,
.home-hero-cta-secondary {
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s;
}
.home-hero-cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 90, 224, 0.3);
}
.home-hero-cta-primary:hover {
  background: var(--accent-h);
}
.home-hero-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.home-hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,0.08); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { height: 2.75rem; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.5rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.3); line-height: 1.65; }
.footer-col-title {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: #fff; margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* Page header (interior pages) */
.page-hero {
  padding: 10rem 0 4rem; background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero-eyebrow,
.careers-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.page-hero-eyebrow::before,
.careers-hero-kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent);
}
.page-hero-h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; color: #fff; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 1rem; }
.page-hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.55); font-weight: 300; max-width: 42rem; line-height: 1.65; }

/* Values Grid */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.values-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .values-grid--three { grid-template-columns: 1fr; }
}
.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem;
}
.value-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.value-title { font-family: 'Outfit', sans-serif; font-size: 1.125rem; font-weight: 600; color: var(--navy-800); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.value-body { font-size: 0.9375rem; color: var(--text-soft); line-height: 1.65; }

/* Two col split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-img { border-radius: 4px; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 400px; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 2rem; }
.team-name { font-family: 'Outfit', sans-serif; font-size: 1.125rem; font-weight: 600; color: var(--navy-800); margin-bottom: 0.25rem; }
.team-role { font-size: 0.8125rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.875rem; color: var(--text-soft); line-height: 1.65; }

/* Team member photo (optional, added for visual team cards) */
.team-card .team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  background: #f0f4f8;
  display: block;
}

/* Placeholder for team members without photos yet */
.team-card .team-photo-placeholder {
  width: 100%;
  height: 280px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5c74;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: 'Outfit', sans-serif;
}

/* Services hero trust strip — responsive */
.svc-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0 3rem;
  width: fit-content;
}
.svc-trust-item--border {
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 3rem;
}

/* Services list page */
.services-group { margin-bottom: 4rem; }
.services-group-title {
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 600;
  color: var(--navy-800); letter-spacing: -0.03em; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border); margin-bottom: 1.5rem;
}
.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-item {
  background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem;
  transition: border-color 0.2s;
}
.service-item:hover { border-color: #b8c7df; }
.service-item-title { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--navy-800); margin-bottom: 0.375rem; letter-spacing: -0.01em; }
.service-item-body { font-size: 0.875rem; color: var(--text-soft); line-height: 1.65; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.contact-info { }
.contact-info h3 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 600; color: var(--navy-800); margin-bottom: 1.5rem; }
.contact-block { margin-bottom: 2rem; }
.contact-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.375rem; }
.contact-val { color: var(--text); font-size: 0.9375rem; }
.contact-form { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--navy-800); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.06em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border);
  border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  color: var(--text); background: var(--surface);
  transition: border-color 0.2s; outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 1rem; background: var(--accent); color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  border: none; border-radius: 4px; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: var(--accent-h); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .nav-links, .nav-ctas { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .mobile-menu-panel { top: 5rem; }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: unset;
  }
}

@media (max-width: 768px) {
  .nav-inner { height: 5.5rem; }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: unset;
  }
  .nav-logo { height: 3rem; }
  .footer-logo { height: 2.25rem; }
  .home-hero-action-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .home-hero-sublinks {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0;
    border-left: none;
  }
  .home-hero-sublinks-label {
    display: none;
  }
  .mobile-menu-panel { top: 5.5rem; }
  .mobile-menu-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .bento { grid-template-columns: 1fr; }
  .bento-card-wide { grid-column: span 1; flex-direction: column; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::before { display: none; }
  .hero-ctas { flex-direction: column; }

  /* Homepage mobile hardening */
  .home-hero {
    min-height: 100svh !important;
    padding-top: 5.75rem !important;
    padding-bottom: 2.5rem !important;
  }
  .home-hero-image-wrap {
    width: 100% !important;
    opacity: 0.56;
  }
  .home-hero-content {
    padding-top: 1.5rem !important;
    padding-bottom: 2rem !important;
  }
  .home-hero-title {
    font-size: 2.85rem !important;
    line-height: 0.98 !important;
    margin-bottom: 1.25rem !important;
  }
  .home-hero-subcopy {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    padding-left: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
  .home-hero-ctas {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }
  .home-hero-ctas a {
    width: 100%;
    justify-content: center !important;
  }
  .hero-trust-grid {
    width: 100% !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.85rem 1rem !important;
    padding-top: 1.25rem !important;
  }
  .home-model-split {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .home-model-right-grid {
    grid-template-columns: 1fr !important;
  }
  .home-pillars-grid {
    grid-template-columns: 1fr !important;
  }
  .home-pillar-cell {
    border-right: none !important;
    border-bottom: 1px solid #1A2234;
    padding: 1.5rem 1.25rem !important;
  }
  .home-pillar-cell:last-child { border-bottom: none; }
  .home-calc-callout-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .home-do-dont-grid { grid-template-columns: 1fr !important; }

  /* Footer — single column on phones */
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Section vertical padding reduction */
  .section { padding: 4rem 0; }

  /* Page hero — tighter top padding on mobile */
  .page-hero { padding: 8rem 0 2.5rem; }
  .page-hero-h1 { font-size: clamp(2rem, 7vw, 3rem) !important; }

  /* Team grid — single column on phones */
  .team-grid { grid-template-columns: 1fr !important; }

  /* CTA band — stack buttons full-width */
  .cta-band { padding: 4rem 0; }
  .cta-band .container > a.btn-primary-lg,
  .cta-band .container > a.btn-outline-lg {
    display: block;
    width: 100%;
    text-align: center;
    margin-right: 0 !important;
  }
  .cta-band .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  /* Contact form padding reduction */
  .contact-form { padding: 1.75rem 1.25rem; }

  /* Contact info email overflow */
  .contact-val, .contact-val a { overflow-wrap: anywhere; word-break: break-word; }

  /* Services list — always single column on phones */
  .services-list { grid-template-columns: 1fr !important; }

  /* Services hero trust strip — stack on mobile */
  .svc-trust-strip {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 1.25rem !important;
  }
  .svc-trust-item--border {
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-left: 0 !important;
    padding-top: 1.25rem;
  }

  /* Values/bento/split images */
  .split-img img { min-height: 260px; }
}

/* —— Practice evaluation wizard —— */
.wiz-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .wiz-layout { grid-template-columns: 1fr; }
}
.wiz-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.wiz-lead {
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.wiz-panel .form-label {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  font-size: 0.8125rem;
}
.wiz-fieldset-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}
.wiz-mobile-bar {
  display: none;
  grid-column: 1 / -1;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0 0 0.75rem;
  padding: 0.65rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.wiz-side {
  position: sticky;
  top: 6rem;
  background: var(--navy-800);
  border-radius: 4px;
  padding: 2rem;
  color: #fff;
}
@media (max-width: 768px) {
  body.evaluate-page .section.section-surface > .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
  .wiz-mobile-bar {
    display: inline-block;
    width: auto;
    max-width: 100%;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent);
    background: rgba(0, 90, 224, 0.07);
    border: 1px solid rgba(0, 90, 224, 0.16);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    margin-bottom: 0.85rem;
    line-height: 1.3;
  }
  .wiz-side { display: none; }
  .wiz-layout { gap: 0; }
  .wiz-panel {
    padding: clamp(1.2rem, 4.5vw, 1.65rem) !important;
    max-width: 100%;
    overflow-x: hidden;
    border-radius: 16px !important;
    box-shadow: 0 12px 40px -12px rgba(5, 12, 23, 0.08);
  }
  .wiz-step-title { font-size: 1.375rem !important; margin-bottom: 0.25rem !important; }
  .wiz-lead { margin-bottom: 1.1rem !important; font-size: 0.875rem; }
  .wiz-panel .form-group { margin-bottom: 1.05rem; }
  .wiz-panel .form-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
  .wiz-panel .form-input,
  .wiz-panel .form-select,
  .wiz-panel .form-textarea {
    border-radius: 12px;
    min-height: 2.75rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    background: rgba(243, 245, 247, 0.9);
  }
  .wiz-panel .form-textarea { min-height: 6.5rem; }
  .wiz-panel .form-input:focus,
  .wiz-panel .form-select:focus,
  .wiz-panel .form-textarea:focus {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 90, 224, 0.12);
  }
  .wiz-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }
  .wiz-btn { width: 100%; justify-content: center; }
  .wiz-actions .wiz-btn-primary {
    order: -1;
    min-height: 3rem;
    border-radius: 14px;
    font-size: 0.9375rem;
  }
  .wiz-actions .wiz-btn-ghost {
    order: 1;
    border: none;
    background: transparent;
    color: var(--text-soft);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    min-height: auto;
    padding: 0.65rem 0.5rem;
  }
  .wiz-actions .wiz-btn-ghost:hover {
    background: transparent;
    color: var(--navy-800);
  }
}
@media (max-width: 360px) {
  .wiz-panel .form-row { grid-template-columns: 1fr !important; }
}
.wiz-side-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.wiz-steps { list-style: none; margin: 0; padding: 0; }
.wiz-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.wiz-steps li.active { color: #fff; }
.wiz-step-num {
  width: 1.75rem; height: 1.75rem; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}
.wiz-steps li.active .wiz-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.wiz-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}
.wiz-panel[hidden] { display: none !important; }
.wiz-nda {
  max-height: 14rem;
  overflow-y: auto;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.8125rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.wiz-nda strong { color: var(--navy-800); }
.wiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.wiz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.wiz-btn-primary {
  background: var(--accent);
  color: #fff;
}
.wiz-btn-primary:hover { background: var(--accent-h); }
.wiz-btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1px solid var(--border);
}
.wiz-btn-ghost:hover { background: var(--surface); }
.wiz-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 640px) {
  .wiz-check-grid { grid-template-columns: 1fr; }
}
.wiz-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
}
.wiz-check input { accent-color: var(--accent); width: 1rem; height: 1rem; }
.wiz-error {
  color: var(--danger);
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  display: none;
}
.wiz-error.show { display: block; }

.page-legal-footnote {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-soft);
  text-align: center;
}

/* Netlify honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Tools hub cards */
.tool-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .tool-hub-grid { grid-template-columns: 1fr; }
}
.tool-hub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s;
}
.tool-hub-card:hover { border-color: #b8c7df; }
.tool-hub-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.tool-hub-card p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.tool-hub-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.tool-hub-card .btn-primary {
  align-self: flex-start;
  margin-top: auto;
}
.tool-hub-card.is-beta {
  border-style: dashed;
  opacity: 0.95;
}

/* Tools hub — contextual guides (not in primary nav) */
.resource-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 700px) {
  .resource-hub-grid { grid-template-columns: 1fr; }
}
.resource-hub-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s;
}
.resource-hub-card:hover { border-color: #b8c7df; }
.resource-hub-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.resource-hub-card p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.resource-hub-card .text-link { align-self: flex-start; margin-top: auto; }

/* Careers */
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.job-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.job-card:hover {
  border-color: #b8c7df;
  transform: translateY(-2px);
}
.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.job-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: #f8fafc;
}
.job-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  color: var(--navy-800);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.job-card p {
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.job-card .text-link { margin-top: auto; }
.job-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22rem;
  gap: 3rem;
  align-items: start;
}
.job-sidebar {
  position: sticky;
  top: 7rem;
  background: var(--navy-800);
  color: #fff;
  border-radius: 4px;
  padding: 1.5rem;
}
.job-sidebar-row {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}
.job-sidebar-row:first-child { padding-top: 0; }
.job-sidebar-row:last-child { border-bottom: none; padding-bottom: 0; }
.job-sidebar-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.25rem;
}
.job-sidebar-value {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}
.job-content h2 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy-800);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin: 2.5rem 0 1rem;
}
.job-content h2:first-child { margin-top: 0; }
.job-content p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.job-content ul {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}
.job-apply-band {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  margin-top: 2.5rem;
}
.job-eeo-note,
.careers-eeo-note {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}
.job-eeo-note {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 2rem;
}
.careers-eeo-note {
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.72);
}
.application-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .job-grid,
  .job-layout,
  .application-layout {
    grid-template-columns: 1fr;
  }
  .job-sidebar {
    position: static;
  }
}

.concept-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.concept-block h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.concept-block p, .concept-block li {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
}
.concept-block ul { padding-left: 1.25rem; margin: 0.5rem 0 0; }

.insight-box {
  background: rgba(0, 90, 224, 0.06);
  border: 1px solid rgba(0, 90, 224, 0.15);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--navy-800);
  line-height: 1.7;
}
.insight-box strong { font-weight: 600; }

/* Internal design-kit page (noindex) */
.design-kit-spec {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.design-kit-callout {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 0;
  background: #fff;
}
.design-kit-callout--good {
  border-color: rgba(15, 139, 83, 0.4);
  background: rgba(15, 139, 83, 0.06);
}
.design-kit-callout--bad {
  border-color: rgba(163, 45, 45, 0.35);
  background: rgba(163, 45, 45, 0.05);
}
.design-kit-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}
.design-kit-badge--good { background: rgba(15, 139, 83, 0.2); color: var(--success); }
.design-kit-badge--bad { background: rgba(163, 45, 45, 0.15); color: var(--danger); }
.design-kit-swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  gap: 1.25rem;
}
.design-kit-swatch {
  height: 3.25rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  margin-bottom: 0.35rem;
}
.design-kit-swatch-meta { font-size: 0.75rem; color: var(--text-soft); line-height: 1.4; }
.design-kit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 800px) {
  .design-kit-split { grid-template-columns: 1fr; }
}

/* Economics CTA band — AIDesigner run aef6f00a-a61f-4c9c-8954-ac94f22cfecf (adapted to tokens, no Tailwind) */
.economics-cta-band {
  position: relative;
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.economics-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to right, black 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 45%, transparent 100%);
  pointer-events: none;
}
.economics-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 88rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.economics-cta-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.55;
  pointer-events: none;
}
.economics-cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.economics-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 90, 224, 0.6);
}
.economics-cta-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.economics-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.economics-cta-copy {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  max-width: 36rem;
  line-height: 1.65;
}
.economics-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  flex-shrink: 0;
}
.economics-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 90, 224, 0.25);
  transition: background 0.2s, box-shadow 0.2s;
}
.economics-cta-primary:hover {
  background: var(--accent-h);
  box-shadow: 0 4px 28px rgba(0, 90, 224, 0.35);
}
.economics-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.economics-cta-secondary:hover { color: #fff; }
@media (max-width: 768px) {
  .economics-cta-inner { padding: 2.25rem 1.25rem; }
  .economics-cta-actions { width: 100%; }
  .economics-cta-primary { justify-content: center; width: 100%; }
}
