/* ========================================
   DIRECTION A: BOLD CANVAS
   Typography-dominant. Structured. Confident.
   Inspired by Pentagram + Focus Lab
   ======================================== */

:root {
  /* Color System */
  --navy: #1B2A4A;
  --navy-light: #2D4066;
  --cream: #FAF8F5;
  --cream-warm: #F5F0E8;
  --white: #FFFFFF;
  --coral: #E85D4A;
  --coral-light: #FF7A6A;
  --amber: #E8A84C;
  --teal: #1A9B8C;
  --teal-light: #3DB8A9;
  --blue-accent: #4A7FE5;
  --text-primary: #1B2A4A;
  --text-secondary: #5A6B7F;
  --text-light: #6B7785;
  --border-subtle: rgba(27, 42, 74, 0.08);

  /* POP Brand Colors (from logo) */
  --pop-purple: #8232AA;
  --pop-coral: #E85D4A;
  --pop-yellow: #F5C300;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Space Grotesk', 'Inter', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: var(--space-section-m); /* 40 → 72 — Token Pack rem-based */
  --hero-to-first-pad: var(--space-section-s); /* 32 → 56 — Token Pack rem-based */
  --section-pad-tight: clamp(1.5rem, calc(1.07rem + 2.14vw), 2.5rem); /* 24 → 40 — rem-based, was px-based */
  --container-max: 1320px;
  --container-pad: var(--space-container-pad); /* 24 → 60 — Token Pack rem-based */
}

/* ========================================
   KADENCE NEUTRALIZATION LAYER
   Resets Kadence's inline critical CSS that would otherwise win
   source-order battles against our page-home rules. Scoped to
   body.pop-home-template so Kadence behavior stays untouched elsewhere.
   Pattern: `inherit` so our own rules (which come after) can specialize
   per-element; the default propagation still flows from body down.

   Wrapped in :where() to KEEP SPECIFICITY AT 0. Per-element rules win
   naturally without body-class-scoping. Without :where(), the rule at
   (0,1,2) beats per-element rules (0,1,1) — that's the bug we hit on
   Gate 1's first pass. See feedback_wendy-kadence-neutralization-header.
   Retrofitted at Gate 3 for pattern hygiene alongside Gate 2 + Gate 3.
   ======================================== */
:where(body.pop-home-template) h1,
:where(body.pop-home-template) h2,
:where(body.pop-home-template) h3,
:where(body.pop-home-template) h4,
:where(body.pop-home-template) h5,
:where(body.pop-home-template) h6 {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
}

:where(body.pop-home-template) p {
  margin: 0;
}

:where(body.pop-home-template) ul,
:where(body.pop-home-template) ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Stagger children */
.stagger-children .reveal { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ========================================
   NAVIGATION
   ======================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: #FAF8F5;
}

.site-nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links > li > a {
  font-family: var(--font-brand);
  font-size: var(--type-caption);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mega-menu a {
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--font-display);
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: 100px;
  font-family: var(--font-brand);
  font-size: var(--type-caption);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
  background: var(--coral-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 93, 74, 0.3);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 220px; background: #FFF; border-radius: 12px; box-shadow: 0 8px 32px rgba(27,42,74,0.12); padding: 8px 0; opacity: 0; visibility: hidden; transition: opacity 0.2s, transform 0.2s; transform: translateX(-50%) translateY(8px); pointer-events: none; z-index: 1001; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: var(--type-eyebrow); font-weight: 500; color: #5A6B7F; transition: all 0.15s; white-space: nowrap; }
.dropdown-menu a:hover { background: rgba(27,42,74,0.04); color: #1B2A4A; }
/* Mega Menu */
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 640px; background: #FFF; border-radius: 16px;
  box-shadow: 0 12px 48px rgba(27,42,74,0.14), 0 0 0 1px rgba(27,42,74,0.04);
  padding: 28px 32px 20px; opacity: 0; visibility: hidden;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none; z-index: 1001;
}
.mega-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 28px; }
.mega-menu-item { display: block; padding: 12px 14px; border-radius: 10px; transition: background 0.15s; }
.mega-menu-item:hover { background: rgba(27,42,74,0.035); }
.mega-menu-item .mega-title { font-family: var(--font-brand); font-size: var(--type-caption); font-weight: 700; color: #1B2A4A; display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.mega-menu-item .mega-desc { font-size: 12.5px; color: #5A6B7F; line-height: 1.5; }
.mega-menu-item.mega-featured .mega-title { color: #D33E26; }
.mega-menu-item.mega-featured .mega-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(232, 93, 74, 0.08); color: #C7402D; padding: 2px 7px; border-radius: 4px; line-height: 1.4; }
.mega-menu-footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(27,42,74,0.06); text-align: center; }
.mega-menu-footer a { font-size: var(--type-eyebrow); font-weight: 600; color: #D33E26; transition: color 0.2s; }
.mega-menu-footer a:hover { color: #FF7A6A; }
@media (max-width: 1024px) and (min-width: 769px) {
  .mega-menu { width: 520px; padding: 24px 24px 16px; }
}
@media (max-width: 768px) { .mega-menu { display: none; }   /* Section gap reduction at narrow mobile */
  .ai-section { padding-bottom: 18px; }
  .services-section { padding-top: 18px; }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero .container {
  position: relative;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 32px;
}

/* Static "WEB WORK" prefix with clean separator line */
.eyebrow-prefix {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  white-space: nowrap;
}
.eyebrow-prefix-label {
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--navy);
}
.eyebrow-prefix-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--navy);
  opacity: 0.4;
  flex-shrink: 0;
  align-self: center;
}

.eyebrow-word {
  opacity: 0;
  transform: translateY(-300px);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.eyebrow-word.visible {
  opacity: 1;
  transform: translateY(0);
}
.eyebrow-sep {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.eyebrow-sep.visible {
  opacity: 1;
}
/* Color each word to match the orb animation */
#eyeWord0 { color: var(--coral); }
#eyeWord1 { color: #1A9B8C; }
#eyeWord2 { color: #8232AA; }

/* DEVELOPMENT/DEV swap defaults — desktop/tablet show full word, narrow mobile shows DEV */
.eyebrow-word-full { display: inline; }
.eyebrow-word-short { display: none; }
.btn-label-full { display: inline; }
.btn-label-short { display: none; }


.hero-headline {
  font-size: var(--type-hero-xl);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 32px;
}

.hero-headline .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

.hero-headline .accent {
  color: var(--coral);
}

/* Tablet (820 breakpoint) — constrain headline width so it stacks 4 lines
   and stops crowding the orb. Tested at 580px max-width: gives lines
   1) "25+ years of" 2) "expertise," 3) "now supercharged" 4) "with AI."
   Scoped to 769-1024px (mobile <768 hides orb entirely; desktop 1024+ has
   space for the natural 2-line layout). */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Constrain headline to 4-line stack, stop crowding orb. Tested at 580px:
     1) "25+ years of" 2) "expertise," 3) "now supercharged" 4) "with AI." */
  .hero-headline {
    max-width: 580px;
  }
  /* Reduce hero vertical white-space at tablet — original 85vh leaves ~166px
     above eyebrow + ~81px below CTA. 65vh halves both while preserving
     center alignment + breathing room. */
  .hero {
    min-height: 65vh;
  }
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--font-brand);
  font-size: var(--type-body-s);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 42, 74, 0.2);
}

@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(27, 42, 74, 0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(27, 42, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 42, 74, 0); }
}
.btn-primary.pulse {
  animation: btnPulse 0.9s ease-out;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border-subtle);
  border-radius: 100px;
  font-family: var(--font-brand);
  font-size: var(--type-body-s);
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(27, 42, 74, 0.03);
}

/* ========================================
   HERO ANIMATED ORB
   Luminous morphing gradient orb + interactive dot grid
   Conveys "supercharged" energy through living color motion
   ======================================== */
.hero-orb-wrap {
  position: absolute;
  right: calc(var(--container-pad) - 40px);
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  z-index: 1;
  pointer-events: none;
}

.hero-orb-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Scroll indicator */

/* ========================================
   PROOF BAR
   ======================================== */
.proof-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--white);
}

.proof-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-gutter-xl);
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
  position: relative;
}

.proof-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(-1 * clamp(1rem, calc(0.57rem + 2.14vw), 2.5rem));
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.proof-number {
  font-size: var(--type-h2-xl); /* was 36→52 */
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.proof-number .accent { color: var(--coral); }

.proof-label {
  font-size: var(--type-eyebrow);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ========================================
   PROCESS STEPS (inside AI section)
   ======================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--border-subtle);
}

.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-1 .step-number { background: #E85D4A; box-shadow: 0 0 0 6px rgba(232,93,74,0.25), 0 0 0 13px rgba(232,93,74,0.12); }
.step-2 .step-number { background: #1A9B8C; box-shadow: 0 0 0 6px rgba(26,155,140,0.25), 0 0 0 13px rgba(26,155,140,0.12); }
.step-3 .step-number { background: #8232AA; box-shadow: 0 0 0 6px rgba(130,50,170,0.25), 0 0 0 13px rgba(130,50,170,0.12); }
.step-4 .step-number { background: #F5C300; box-shadow: 0 0 0 6px rgba(245,195,0,0.25), 0 0 0 13px rgba(245,195,0,0.12); }

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: var(--type-body-s);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ========================================
   GEO STRIP
   ======================================== */
/* ========================================
   WHO WE WORK WITH — Magazine Split
   ======================================== */
.who-section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--white);
}
.who-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0 80px;
  align-items: stretch;
}
/* Left editorial column */
.who-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border-subtle);
  padding-right: 80px;
}
.who-left-top { margin-bottom: 24px; }
.who-intro {
  font-size: var(--type-body-s);
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 20px 0 14px;
}
.who-kicker {
  font-size: var(--type-body-s);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.65;
}
.who-kicker strong { color: var(--navy); }
.who-stat-block {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  margin-bottom: 28px;
}
.who-stat-number {
  font-family: var(--font-brand);
  font-size: clamp(3.75rem, calc(3.39rem + 1.79vw), 5rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.who-stat-number span { color: var(--coral); }
.who-stat-label {
  font-family: var(--font-brand);
  font-size: var(--type-eyebrow);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
/* Right list column */
.who-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.who-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: start;
}
.who-row:first-child { border-top: 1px solid var(--border-subtle); }
.who-row-num {
  font-family: var(--font-brand);
  font-size: var(--type-micro);
  font-weight: 700;
  color: var(--rn-color, var(--coral));
  letter-spacing: 0.05em;
  padding-top: 5px;
}
.who-row-label {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.who-row-desc {
  font-size: var(--type-body-s);
  color: var(--text-secondary);
  line-height: 1.7;
}
.who-sectors-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0 0;
  min-height: 44px;
}
.who-sectors-ew {
  font-family: var(--font-brand);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.who-sectors-ticker {
  position: relative;
  overflow: hidden;
  height: 22px;
  flex: 1;
}
.who-sectors-ticker-item {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-brand);
  font-size: var(--type-eyebrow);
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.who-sectors-ticker-item.active {
  opacity: 1;
}
.who-sectors-ticker-item.exit {
  opacity: 0;
}
@media (max-width: 960px) {
  .who-layout { grid-template-columns: 1fr; gap: 24px 0; }
  .who-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border-subtle); padding-bottom: 20px; }
}

/* ========================================
   CLIENT LOGOS (standalone)
   ======================================== */
.client-logos-section {
  padding: 28px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--white);
}

.geo-strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid var(--border-subtle);
}

.geo-strip-map {
  position: relative;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-strip-map svg {
  pointer-events: none;
}

.geo-strip-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 2;
  padding: 0 var(--container-pad);
}

.geo-sf-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.geo-sf-dot {
  position: relative;
  width: 14px;
  height: 14px;
}

.geo-sf-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral);
  border-radius: 50%;
}

.geo-sf-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
  opacity: 0;
  animation: sfPing 2.5s ease-out infinite;
}

@keyframes sfPing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

.geo-sf-label {
  font-size: var(--type-eyebrow);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #F5C300;
  text-transform: uppercase;
}

.geo-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.geo-text {
  font-size: var(--type-body-s);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}

.geo-text strong {
  color: rgba(255,255,255,0.95);
  font-weight: 600;
}


@media (max-width: 768px) {
  .geo-strip-map { height: 100px; }
  .geo-strip-content { flex-direction: column; gap: 12px; padding: 20px; }
  .geo-divider { width: 40px; height: 1px; }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: var(--section-pad) 0 0;
  background: var(--cream);
}

.section-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-brand);
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pop-purple);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--pop-purple);
}

/* Section-title default styling — navy by default.
   The neutralization layer at the top of this file clears Kadence's palette3 override;
   this rule sets the intended value for page-scoped section titles.
   Sections with non-navy backgrounds (e.g., .lead-magnet-card) override color locally. */
.section-title {
  font-size: var(--type-h2-l);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-title .light,
.ai-headline .light,
.who-headline .light,
.services-headline .light {
  font-weight: 300;
  color: inherit;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--navy));
}

.service-card:hover {
  box-shadow: 0 8px 40px color-mix(in srgb, var(--card-accent, var(--navy)) 35%, transparent);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  background: var(--icon-bg, var(--cream));
  color: var(--icon-color, var(--navy));
}

.service-card-title {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card-desc {
  font-size: var(--type-body-s);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-card-link {
  font-size: var(--type-caption);
  font-weight: 600;
  color: #D33E26;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.service-card:hover .service-card-link {
  gap: 10px;
}

/* Card color variations */
.service-card[data-color="coral"] { --card-accent: var(--coral); --icon-bg: #FEF0EE; --icon-color: var(--coral); }
.service-card[data-color="teal"] { --card-accent: var(--teal); --icon-bg: #EDF7F6; --icon-color: var(--teal); }
.service-card[data-color="amber"] { --card-accent: var(--amber); --icon-bg: #FDF5E8; --icon-color: var(--amber); }
.service-card[data-color="blue"] { --card-accent: var(--blue-accent); --icon-bg: #EEF3FD; --icon-color: var(--blue-accent); }
.service-card[data-color="navy"] { --card-accent: var(--navy); --icon-bg: #EDF0F5; --icon-color: var(--navy); }
.service-card[data-color="purple"] { --card-accent: var(--pop-purple); --icon-bg: #F3EDF8; --icon-color: var(--pop-purple); }

/* ========================================
   FEATURED WORK
   ======================================== */
.work-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.work-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover {
  transform: translateY(-4px);
}

.work-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.work-card-image-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Layered device mockup composition */
.device-stack {
  position: relative;
  width: 85%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-desktop {
  width: 75%;
  height: 80%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.device-desktop::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

.device-desktop::after {
  content: '● ● ●';
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 8px;
  letter-spacing: 3px;
  color: #ccc;
}

.device-mobile {
  width: 18%;
  height: 65%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: absolute;
  right: 8%;
  bottom: 5%;
  z-index: 2;
  border: 2px solid #e8e8e8;
}

.device-mobile::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
}

/* Color-coded project backgrounds */
.work-bg-1 { background: linear-gradient(135deg, #EDF0F5 0%, #E0E8F5 100%); }
.work-bg-2 { background: linear-gradient(135deg, #FEF0EE 0%, #FDE5E0 100%); }
.work-bg-3 { background: linear-gradient(135deg, #EDF7F6 0%, #D8F0ED 100%); }
.work-bg-4 { background: linear-gradient(135deg, #FDF5E8 0%, #FAECD0 100%); }

.work-card-content {
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-top: none;
  border-radius: 0 0 20px 20px;
}

.work-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.work-tag {
  font-size: var(--type-micro);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--text-secondary);
}

.work-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.work-card-metric {
  font-size: var(--type-caption);
  color: var(--teal);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========================================
   AI POSITIONING
   ======================================== */
.ai-section {
  padding: var(--section-pad) 0;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-content {}

.ai-headline {
  font-size: clamp(1.625rem, calc(1.45rem + 0.89vw), 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.ai-headline em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--coral);
}

.ai-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.ai-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: var(--type-body-s);
  color: var(--text-secondary);
  line-height: 1.5;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ai-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: var(--type-body-s);
  color: var(--text-secondary);
  line-height: 1.5;
}

.ai-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--type-eyebrow);
  flex-shrink: 0;
  margin-top: 1px;
}

/* AI Visual — abstract generative art placeholder */
.ai-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, rgba(232, 93, 74, 0.06) 0%, rgba(26, 155, 140, 0.05) 40%, var(--cream) 70%);
  border: 1px solid var(--border-subtle);
}

.ai-visual-inner {
  position: absolute;
  inset: 0;
  animation: artworkBreathe 12s ease-in-out infinite;
}

@keyframes artworkBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.008); }
}

/* AI artwork animation — responsive, no positional overlays */
.ai-visual-inner img {
  animation: aiThinking 8s ease-in-out infinite;
  mix-blend-mode: multiply;
}

@keyframes aiThinking {
  0%, 100% {
    filter: brightness(1) saturate(1) drop-shadow(0 0 2px rgba(216,61,54,0.05));
  }
  20% {
    filter: brightness(1.12) saturate(1.3) drop-shadow(0 0 30px rgba(216,61,54,0.85)) drop-shadow(0 0 60px rgba(216,61,54,0.45));
  }
  40% {
    filter: brightness(1.12) saturate(1.3) drop-shadow(0 0 30px rgba(62,133,151,0.85)) drop-shadow(0 0 60px rgba(55,95,163,0.45));
  }
  60% {
    filter: brightness(1.12) saturate(1.3) drop-shadow(0 0 30px rgba(239,169,49,0.85)) drop-shadow(0 0 60px rgba(239,169,49,0.45));
  }
  80% {
    filter: brightness(1.12) saturate(1.3) drop-shadow(0 0 30px rgba(127,63,152,0.75)) drop-shadow(0 0 60px rgba(127,63,152,0.4));
  }
}

/* Animated node network */
.node-network {
  position: absolute;
  inset: 0;
}

.node-network svg {
  width: 100%;
  height: 100%;
}

.node-dot {
  fill: var(--navy);
  opacity: 0.15;
}

.node-line {
  stroke: var(--navy);
  stroke-width: 1;
  opacity: 0.08;
}

.node-dot-accent {
  opacity: 0.6;
}

.ai-visual-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: var(--type-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ========================================
   TESTIMONIALS / SOCIAL PROOF
   ======================================== */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 32px;
}

.testimonial-quote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 28px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 48px;
  font-family: var(--font-serif);
  color: var(--coral);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-name {
  font-size: var(--type-body-s);
  font-weight: 700;
}

.testimonial-role {
  font-size: var(--type-eyebrow);
  color: var(--text-secondary);
}

/* Client logo bar */
.client-logos {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.client-logos-label {
  font-size: var(--type-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 32px;
}

.logo-scroll-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.logo-row:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.logo-row img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.logo-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================================
   LEAD MAGNET / CTA SECTION
   ======================================== */
.lead-magnet-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.lead-magnet-card {
  background: var(--navy);
  border-radius: 28px;
  padding: clamp(1.5rem, calc(1.215rem + 1.43vw), 2.5rem) clamp(3rem, calc(2.43rem + 2.86vw), 5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lead-magnet-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.08;
  right: -100px;
  top: -100px;
}

.lead-magnet-content {
  position: relative;
  z-index: 2;
}

.lead-magnet-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--type-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(232, 93, 74, 0.1);
  border-radius: 100px;
}

.lead-magnet-card .lead-magnet-title {
  font-size: var(--type-h2-l); /* was 28→44 */
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.lead-magnet-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 440px;
}

.lead-magnet-form {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 18px 36px;
}

.form-group {
  margin-bottom: 16px;
}

/* ============================================================
   WPForms render — match concept-a-bold-canvas-home.html exactly
   (concept is authoritative source per feedback_concept-html-authoritative).
   Concept locked values: 12px labels at 50% white, 14px 18px input padding,
   8% white input bg, 12% white border, 12px radius, 15px input font.
   Same values applied to fallback form (.form-label/.form-input) and to
   WPForms output (.wpforms-field-label/.wpforms-field input) so both render
   identical to concept.
   div.wpforms-container-full prefix added for label override — matches
   WPForms Modern's specificity (0,0,2,2) with extra type selector to win.
   ============================================================ */

/* Labels — fallback + WPForms (specificity match) */
.form-label,
body .lead-magnet-card div.wpforms-container-full .wpforms-field-label,
body .lead-magnet-card div.wpforms-container-full .wpforms-field-sublabel {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

/* Required asterisk — coral */
body .lead-magnet-card div.wpforms-container-full .wpforms-required-label,
.lead-magnet-card .wpforms-required-label {
  color: var(--coral);
}

/* Inputs — fallback + WPForms */
.lead-magnet-form .form-input,
.form-input,
body .lead-magnet-card div.wpforms-container-full .wpforms-field input[type="text"],
body .lead-magnet-card div.wpforms-container-full .wpforms-field input[type="email"],
body .lead-magnet-card div.wpforms-container-full .wpforms-field input[type="url"],
body .lead-magnet-card div.wpforms-container-full .wpforms-field input[type="tel"],
body .lead-magnet-card div.wpforms-container-full .wpforms-field textarea,
body .lead-magnet-card div.wpforms-container-full .wpforms-field select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
  font-family: var(--font-display);
  line-height: 1.4;
  transition: border-color 0.3s, background 0.3s;
}

.lead-magnet-form .form-input::placeholder,
.form-input::placeholder,
body .lead-magnet-card div.wpforms-container-full .wpforms-field input::placeholder,
body .lead-magnet-card div.wpforms-container-full .wpforms-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
  opacity: 1;
}

.lead-magnet-form .form-input:focus,
.form-input:focus,
body .lead-magnet-card div.wpforms-container-full .wpforms-field input:focus,
body .lead-magnet-card div.wpforms-container-full .wpforms-field textarea:focus,
body .lead-magnet-card div.wpforms-container-full .wpforms-field select:focus {
  border-color: var(--coral);
}

/* Field spacing — WPForms wraps each field in .wpforms-field */
body .lead-magnet-card div.wpforms-container-full .wpforms-field {
  padding: 0 0 16px 0;
  margin: 0;
}

/* Submit button — coral, full width, concept-locked sizing */
body .lead-magnet-card div.wpforms-container-full .wpforms-submit-container {
  margin-top: 8px;
  padding: 0;
}
body .lead-magnet-card div.wpforms-container-full button.wpforms-submit,
body .lead-magnet-card div.wpforms-container-full .wpforms-submit {
  width: 100%;
  padding: 16px;
  background: var(--coral);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.3s;
}
body .lead-magnet-card div.wpforms-container-full button.wpforms-submit:hover,
body .lead-magnet-card div.wpforms-container-full .wpforms-submit:hover {
  background: var(--coral-light);
  transform: translateY(-1px);
}

/* (.form-input + ::placeholder + :focus rules merged into the WPForms-aware
   block above — concept-exact values for both fallback and WPForms render) */

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--coral-light);
  transform: translateY(-1px);
}

.form-trust {
  text-align: center;
  font-size: var(--type-micro);
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta-section {
  padding: var(--section-pad) 0;
  background: var(--white);
  text-align: center;
}

.final-cta-headline {
  font-size: var(--type-display); /* was 36→72, normalized to 32→56 */
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}



/* ========================================
   CONCEPT LABEL (design review only)
   ======================================== */
.concept-label {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--navy);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: var(--type-micro);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.3);
}

.concept-label span {
  color: var(--coral-light);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .hero-orb-wrap { width: 480px; height: 480px; }
}

@media (max-width: 1024px) {
  .hero-orb-wrap { width: 380px; height: 380px; right: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .ai-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps-grid { grid-template-columns: 1fr 1fr; }
  .ai-visual { display: none; }
  .lead-magnet-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  /* Section gap reduction at tablet — tightens rhythm where AI section visual is hidden */
  .ai-section { padding-bottom: 25px; }
  .services-section { padding-top: 25px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-orb-wrap { display: none; }
  /* Hero CTA — Andie P3 #9 (2026-04-26).
     "Learn About Our Website Services →" was wrapping to 84px height
     at 375 viewport because of the 36px horizontal padding eating into
     the narrow column. Reduce padding + tighten letter-spacing at mobile. */
  .hero-ctas .btn-primary { padding: 16px 24px; letter-spacing: 0; }
}

/* ======== ART PLACEHOLDERS (bold & visible) ======== */
.art-placeholder {
  background: linear-gradient(135deg, rgba(130,50,170,0.12) 0%, rgba(232,93,74,0.10) 50%, rgba(26,155,140,0.10) 100%);
  border: 3px dashed rgba(130,50,170,0.5);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.art-placeholder::before {
  content: 'AI ARTWORK PLACEHOLDER';
  font-family: 'Inter', sans-serif;
  font-size: var(--type-eyebrow);
  font-weight: 700;
  letter-spacing: 2px;
  color: rgb(130,50,170);
  background: rgba(130,50,170,0.1);
  padding: 4px 16px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}
.art-placeholder .placeholder-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--type-eyebrow);
  font-weight: 700;
  color: #8232AA;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.art-placeholder .placeholder-desc {
  font-family: 'Inter', sans-serif;
  font-size: var(--type-eyebrow);
  color: #5A6B7F;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}
.art-placeholder .placeholder-ref {
  font-family: 'Inter', sans-serif;
  font-size: var(--type-eyebrow);
  font-weight: 600;
  color: rgb(130,50,170);
  margin-top: 12px;
}





/* ======== FOOTER ======== */
.site-footer {
  padding: 64px 0 32px;
  background: #F5F0E8;
  border-top: 1px solid rgba(27, 42, 74, 0.08);
}
.site-footer .container { max-width: 1320px; margin: 0 auto; padding: 0 var(--space-container-pad); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-heading { font-family: var(--font-brand); font-size: var(--type-eyebrow); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #1B2A4A; margin-bottom: 20px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-family: var(--font-brand); font-size: var(--type-caption); color: #5A6B7F; transition: color 0.2s; text-decoration: none; }
.footer-links li.footer-address { font-size: var(--type-caption); color: #5A6B7F; line-height: 1.6; font-family: var(--font-brand); }
.footer-links a:hover { color: #1B2A4A; }
.footer-brand-desc { font-size: var(--type-caption); color: #5A6B7F; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(27, 42, 74, 0.08); display: flex; justify-content: space-between; align-items: center; font-size: var(--type-eyebrow); color: #6B7785; }
.footer-bottom a { color: #6B7785; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #1B2A4A; }
.ai-powered-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 16px 6px 8px;
  background: rgba(27, 42, 74, 0.04);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: 100px;
  font-size: var(--type-micro); font-weight: 600; color: #5A6B7F;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all 0.3s ease;
}
.ai-powered-badge:hover { background: rgba(27, 42, 74, 0.08); color: #1B2A4A; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========================================
   360 hero refinements — May 3, 2026
   Apply at narrow mobile widths where the hero needs polish
   beyond the system defaults. Eyebrow swap, headline leading.
   ======================================== */
@media (max-width: 480px) {
  /* Tighten eyebrow spacing to recover horizontal room */
  .hero-eyebrow { gap: 8px; }
  .eyebrow-prefix { gap: 6px; }
  .eyebrow-prefix-line { width: 12px; }
  /* Swap DEVELOPMENT to DEV */
  .eyebrow-word-full { display: none; }
  .eyebrow-word-short { display: inline; }
  /* Headline leading — loosen at narrow mobile where descenders
     and ascenders collide */
  .hero-headline { line-height: 1.04; }
  /* Drop trailing arrow from primary CTA at narrow mobile */
  .btn-label-full { display: none; }
  .btn-label-short { display: inline; }
  /* Geo-strip — tighten SF marker / body text spacing at narrow mobile */
  .geo-strip-content { gap: 12px; }
  .geo-divider { display: none; }
  /* Add vertical breathing room inside the navy box at narrow mobile */
  .geo-strip { padding: 14px 0; }
  /* Lead capture form: drop inner box at narrow mobile so fields can use full card width */
  .lead-magnet-form { background: transparent; border: none; border-radius: 0; padding: 0; }
  /* Lead capture card: tighter horizontal padding at narrow mobile so fields can breathe */
  .lead-magnet-card { padding-left: 24px; padding-right: 24px; }
  /* Lead capture card: tighten content-to-form gap when stacked at narrow mobile */
  .lead-magnet-card { gap: 24px; }
  /* Proof bar: stack stats vertically at narrow mobile so each takes its own row */
  .proof-bar-inner { flex-direction: column; gap: 24px; }
}
