@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #F7F5F2;
  --bg-alt: #F3F0EB;
  --surface: #FFFFFF;
  --surface-muted: #F8F7F5;
  --text: #151515;
  --text-secondary: #5E5E5E;
  --text-muted: #8A8A8A;
  /* keep your creams + text vars as-is */

  --accent-blue: #78E3FD;
  /* primary electric sky */
  --accent-blue-soft: rgba(120, 227, 253, .16);
  /* soft pill / glow */
  --accent-blue-deep: #39A6E8;
  /* darker edge for text/hover */

  /* Inline pill CTAs (.service-cta, .btn--link) — use for small links/icons aligned with cards */
  --link-accent: #0284c7;

  /* Back-compat aliases for existing selectors */
  --accent: var(--accent-blue);
  --accent-soft: var(--accent-blue-soft);
  --teal: #34A3A0;
  /* Contact form chip — selected state (clear vs cyan unselected pills) */
  --chip-selected-bg: #cff6e8;
  --chip-selected-bg-hover: #b8efd9;
  --chip-selected-border: #3cb88a;
  --chip-selected-text: #0f4a36;
  --chip-selected-shadow: 0 6px 22px rgba(45, 143, 111, 0.2);
  --border-soft: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.08);

  --radius: 16px;
  --container: 1200px;
  --pad-x: 50px;
  --gutter: 32px;

  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
  --space-64: 64px;
  --space-72: 72px;
  --space-80: 80px;
  --space-96: 96px;
  --space-128: 128px;

  /** Unified vertical rhythm for marketing bands (homepage + static pages using .section) */
  --marketing-section-py: var(--space-80);
  --marketing-section-py-sm: var(--space-48);
  --marketing-section-head-gap: var(--space-24);

  --header-height: 68px;

  --easing: cubic-bezier(0.19, 1, 0.22, 1);
}

/*
  Scope all document-level rules to static marketing pages only.
  The same stylesheet is linked from the Next.js /blog layout for header chrome;
  without this scope, body/heading/link rules override the portal (admin, dashboard, blog content).
*/
body.halo-marketing *,
body.halo-marketing *::before,
body.halo-marketing *::after {
  box-sizing: border-box
}

html:has(body.halo-marketing) {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body.halo-marketing {
  overflow-x: hidden;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  opacity: 1;
}

/* Display headings: Space Grotesk */
body.halo-marketing h1,
body.halo-marketing h2,
body.halo-marketing h3,
body.halo-marketing h4,
body.halo-marketing .h1,
body.halo-marketing .h2,
body.halo-marketing .h3,
body.halo-marketing .h4 {
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/*
  Progressive enhancement:
  Keep the site visible even if JS fails to load.
  When JS runs, it can opt-in to a subtle fade-in.
*/
body.halo-marketing.has-js {
  opacity: 0;
  transition: opacity 200ms var(--easing);
}

body.halo-marketing.has-js.is-ready {
  opacity: 1;
}

body.halo-marketing a {
  color: inherit;
  text-decoration: none
}

body.halo-marketing .skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.halo-marketing .skip:focus {
  left: var(--space-16);
  top: var(--space-16);
  width: auto;
  height: auto;
  padding: var(--space-12) var(--space-16);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  z-index: 9999;
}

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

/* Alias for alternate markup naming */
.halo-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-16);
}

.h1 {
  font-size: 60px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 0 var(--space-24);
}

.h2 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 var(--space-16);
}

.h3 {
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 var(--space-12);
}

.h4 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 var(--space-12);
}

.body-lg {
  font-size: 18px;
  line-height: 1.6;
  margin: 0
}

.body {
  font-size: 16px;
  line-height: 1.6;
  margin: 0
}

.label {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}

.section__head,
.services-header {
  max-width: 640px;
  margin: 0 0 var(--marketing-section-head-gap);
  text-align: left;
}

/* kicker */
.section__head .eyebrow {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-16);
  position: relative;
  display: inline-block;
}

/* underline for both What we do + Recent work */
.section__head .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(120, 227, 253, 0.9);
}

/* Eyebrow underline for ribbon sections */
.ribbon .eyebrow {
  position: relative;
  display: inline-block;
}

.ribbon .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(120, 227, 253, 0.9);
}

/* title spacing: THIS is the &#8220;between lines of the title&#8221; knob */
.section__head .h2 {
  font-size: 32px;
  /* bump to 40 if you want it larger */
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 var(--space-16);
}

/* subtitle */
.section__head .body-lg {
  margin: 0;
  color: var(--text-secondary);
}

.text-secondary {
  color: var(--text-secondary)
}

.text-muted {
  color: var(--text-muted)
}

/* Navbar (thin frosted glass strip) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;

  /* slightly more transparent, a bit less &#8220;white bar&#8221; */
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  /* softer edge so it feels like glass, not a divider */
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);

  padding-block: 10px;
}

.site-header::before {
  content: none;
}


.site-header-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-inline: 24px;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

/* Scroll-aware header: hide on scroll-down (give the page real estate),
   show on scroll-up (so users can navigate without scrolling all the way
   to the top). Mega-menu panels are nested inside .site-header so they ride
   along with it. */
.site-header {
  transition: transform 0.32s cubic-bezier(0.19, 1, 0.22, 1),
              box-shadow 0.24s ease,
              background-color 0.24s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-12)
}

.logo__img {
  width: 72px;
  height: 72px;
  border-radius: 0;
  display: block;
  object-fit: cover;
  border: 0;
  box-shadow: none;
}

/* Keep nav aligned independent of container padding */
.site-header .container {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.logo__mark {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-soft));
  border: 1px solid rgba(120, 227, 253, 0.38);
}

.logo__type {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
  position: relative;
}

/* Alias to match requested selector naming */
.site-header__nav a,
.nav-links a {
  position: relative;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 450;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f7680;
  padding-block: 4px;
  transition: color 140ms ease;
}

.site-header__nav a:hover,
.nav-links a:hover {
  color: #111827;
}

.site-header__nav a.is-active,
.nav-links a.is-active {
  color: #111827;
}

.site-header__nav a.is-active::after,
.nav-links a.is-active::after {
  display: none;
}

.nav-ink {
  position: absolute;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-blue);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.19, 1, 0.22, 1),
    width 240ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 180ms ease;
  pointer-events: none;
  opacity: 0;
}

.nav-ink.is-visible {
  opacity: 1;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-12)
}

/* Header CTA reuses hero button styling; slightly tighter in header */
.site-header .btn--primary {
  padding-inline: 18px;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-20);
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  transition:
    transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 350ms cubic-bezier(0.16, 1, 0.3, 1),
    background 350ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.btn:focus-visible {
  outline: 2px solid rgba(120, 227, 253, 0.55);
  outline-offset: 3px
}

.btn--small {
  padding: var(--space-12) var(--space-16)
}

.btn--primary {
  background: var(--accent-blue);
  color: #FFFFFF;
  border-color: rgba(120, 227, 253, 0.44);
  box-shadow: 0 14px 34px rgba(120, 227, 253, 0.42);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--text);
  padding: 13px 22px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(120, 227, 253, 0.5);
  box-shadow: 0 8px 24px rgba(120, 227, 253, 0.15);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(120, 227, 253, 0.48);
}

.btn--ghost:hover {
  transform: translateY(-2px);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-12);
  border-radius: 999px;
  background: var(--accent-blue-soft);
  border: 1px solid var(--border-soft);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-secondary);
}

.chip--tiny {
  padding: var(--space-4) var(--space-8);
  font-size: 14px
}

.link {
  color: inherit
}

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

/* Premium hamburger menu button */
.menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.menu:hover {
  background: var(--surface);
  border-color: rgba(120, 227, 253, 0.4);
  box-shadow: 0 4px 16px rgba(120, 227, 253, 0.15);
}

.menu:active {
  transform: scale(0.96);
}

.menu.is-open {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  position: fixed;
  top: 20px;
  right: var(--pad-x);
}

.menu__bar {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  display: block;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transition:
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 300ms ease,
    width 400ms cubic-bezier(0.16, 1, 0.3, 1),
    background 300ms ease,
    top 400ms cubic-bezier(0.16, 1, 0.3, 1),
    bottom 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.menu__bar:first-child {
  width: 18px;
  top: 17px;
  transform: translateX(-50%);
}

.menu__bar:last-child {
  width: 12px;
  bottom: 17px;
  transform: translateX(-30%);
}

/* Animated X when open */
.menu.is-open .menu__bar {
  background: var(--text);
  width: 18px;
}

.menu.is-open .menu__bar:first-child {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.menu.is-open .menu__bar:last-child {
  bottom: auto;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/* Full-screen mobile nav overlay */
.mobile {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: #ffffff;

  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transition:
    opacity 400ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.mobile[hidden] {
  display: flex;
}

.mobile__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) var(--pad-x) 60px;
  gap: 0;
  max-width: 100%;
  width: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(120, 235, 253, 0.12) 0, transparent 100%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(250, 216, 180, 0.15) 0, transparent 100%),
    #ffffff;
}

.mobile__link {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(36px, 10vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  padding: var(--space-12) 0;
  color: var(--text);
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  position: relative;

  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
    color 200ms ease;
}

.mobile__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-deep));
  border-radius: 2px;
  transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile__link:hover::after,
.mobile__link:focus::after {
  width: 100%;
}

.mobile:not([hidden]) .mobile__link {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.mobile__link:nth-child(1) {
  transition-delay: 80ms;
}

.mobile__link:nth-child(2) {
  transition-delay: 140ms;
}

.mobile__link:nth-child(3) {
  transition-delay: 200ms;
}

.mobile__link:nth-child(4) {
  transition-delay: 260ms;
}

.mobile__link:nth-child(5) {
  transition-delay: 320ms;
}

.mobile__link:hover,
.mobile__link:focus {
  color: var(--accent-blue-deep);
}

.mobile__link.is-active {
  color: var(--accent-blue-deep);
}

.mobile__link.is-active::after {
  width: 40px;
}

/* Mobile CTA button */
.mobile .btn {
  margin-top: var(--space-32);
  align-self: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 380ms;
}

.mobile:not([hidden]) .btn {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  isolation: isolate;
  /* pull hero up so its background sits behind the sticky header */
  margin-top: calc(-1 * var(--header-height));
  /* restore spacing under the header */
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 72px;

  /* hero band gradient */
  background:
    radial-gradient(circle at 15% 0%, rgba(120, 235, 253, 0.35) 0, transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(250, 216, 180, 0.4) 0, transparent 55%),
    linear-gradient(135deg, #d1f5ff 0%, #fbe9d6 55%, #eef8ff 100%);
  background-repeat: no-repeat;
  background-size: 140% 140%;
  background-position: 50% 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -240px -240px auto auto;
  width: min(760px, 70vw);
  height: min(760px, 70vw);
  background: radial-gradient(circle, rgba(120, 227, 253, 0.9), transparent 65%);
  filter: blur(24px);
  opacity: 0.9;
  pointer-events: none;
}

.hero {
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: var(--gutter);
  align-items: start
}

/* Split intro / visual / body so the featured mock sits under the H1 on narrow viewports */
.hero__intro {
  grid-column: 1 / span 6;
  grid-row: 1;
  max-width: 520px;
}

.hero__visual {
  grid-column: 7 / span 6;
  grid-row: 1 / span 2;
  align-self: start;
  position: relative
}

.hero__body {
  grid-column: 1 / span 6;
  grid-row: 2;
  max-width: 520px;
}

.hero__lead {
  max-width: 480px
}

.hero__actions {
  margin-top: var(--space-32);
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap
}

/* Hero H1: slightly tighter than global .h1; scales down on narrow viewports */
body.halo-marketing .hero .hero__title {
  font-size: clamp(2.125rem, 2.4vw + 1.35rem, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.038em;
  margin-bottom: var(--space-20);
}

#studio .grid--3 {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-32);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--space-24);
  row-gap: var(--space-24);
  position: relative;
}

#studio .grid--3>div {
  position: relative;
  border-left: 1px solid rgba(15, 23, 42, 0.06);
  padding-left: var(--space-20);
}

.feature-meta {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: 6px;
}

.feature-meta .reason-dot {
  margin-bottom: 0;
}

.feature-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.55);
}

#studio .grid--3 h3 {
  margin-top: 0;
  margin-bottom: var(--space-8);
}

#studio .grid--3 p.body {
  margin-top: 0;
}

.heroMedia {
  margin: 0
}

.heroMedia__frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: relative;
}

.heroMedia__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.heroMedia__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.heroMedia__cap {
  position: absolute;
  bottom: var(--space-16);
  left: var(--space-16);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.heroMedia__cap .chip--tiny {
  margin: 0;
}

.heroMedia__capText {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.proof {
  padding: var(--space-24) 0 var(--space-96);
  border-top: 1px solid var(--border-soft)
}

.proof__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter)
}

.proof__item {
  grid-column: span 3
}

/* reasons band */
.section-reasons {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  padding-block: 18px;
  margin-block: 0 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(120, 227, 253, 0.14), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(57, 166, 232, 0.09), transparent 55%);
}

.reasons-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.reasons-intro {
  max-width: 340px;
  padding-top: var(--space-32);
}

/* Eyebrow + intro */
.reasons-intro .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
}

.reasons-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.reasons-intro p {
  color: rgba(15, 23, 42, 0.78);
}

.reasons-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.reason {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 140ms ease-out, color 140ms ease-out;
}

.reason-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-blue);
  margin-bottom: 4px;
  opacity: 0.75;
}

.reason-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}


.reason-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 26ch;
}

/* Alias selectors matching requested naming (no HTML changes needed) */
.section-reasons__intro {
  max-width: 340px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.section-reasons__item-title {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.section-reasons__item-copy {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* tiny hover polish */
.reason:hover {
  transform: translateY(-1px);
}

.reason:hover .reason-body {
  color: var(--text);
}

/* mobile and tablet */
@media (max-width: 960px) {
  .section-reasons {
    padding-block: 16px;
  }

  .reasons-layout {
    flex-direction: column;
    gap: 20px;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 16px;
  }
}

@media (max-width: 640px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

/* services */
.section-services {
  padding-block: 96px 112px;
}

/* Support the new markup wrapper */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.services-band {
  margin-inline: 0;
  margin-top: 6px;
  padding: 28px 32px 32px;
  max-width: 1120px;

  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.service-card {
  padding: 20px 20px 22px;
  border-radius: 24px;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  transition:
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 450ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 450ms cubic-bezier(0.16, 1, 0.3, 1),
    background 450ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
  border-color: rgba(120, 227, 253, 0.35);
}

/* Side cards: one step softer so flagship leads */
.services-grid .service-card:not(.is-flagship) {
  box-shadow: 0 9px 22px rgba(15, 23, 42, 0.035);
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

/* Shared category chip: Websites, Hosting, IT, Residential cleaning, etc. */
.service-tag,
.work__top .chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(52, 219, 244, 0.12);
  color: var(--link-accent);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.service-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.service-card p {
  margin: 0;
  color: var(--text-secondary);
}

.service-points {
  list-style: disc;
  padding-left: 18px;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.service-points li::marker {
  color: rgba(120, 227, 253, 0.8);
}

.service-card.is-flagship {
  background:
    radial-gradient(circle at top left, rgba(52, 219, 244, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.12), transparent 55%),
    #fdfefe;
  border-color: rgba(52, 219, 244, 0.55);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(52, 219, 244, 0.25);
  transform: translateY(-2px);
}

.service-card.is-flagship .service-tag {
  background: rgba(52, 219, 244, 0.16);
}

.service-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #64748b;
}

/* Shared inline CTA pill: service CTAs + 'View site' */
.service-cta,
.work__link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px 9px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;

  background: rgba(52, 219, 244, 0.06);
  border: 1px solid rgba(52, 219, 244, 0.2);
  color: var(--link-accent);

  cursor: pointer;
  text-decoration: none;
  transition: transform 170ms ease, background 170ms ease,
    border-color 170ms ease, color 170ms ease;
}

/* Arrow treatment shared */
.service-cta-arrow,
.work__link::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transition: transform 170ms ease;
}

/* Hover: both service CTA and View site nudge the arrow */
.service-card .service-cta {
  margin-top: 12px;
}

.service-card:hover .service-cta,
.service-card:focus-within .service-cta,
.work__link:hover {
  background: rgba(52, 219, 244, 0.12);
  transform: translateY(-1px);
}

.service-card:hover .service-cta-arrow,
.service-card:focus-within .service-cta-arrow,
.work__link:hover::after {
  transform: translateX(2px);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.10);
}

/* Service card collapsible details */
.service-summary {
  margin: 0;
}

.service-details {
  display: block;
}

.service-toggle {
  display: none;
}

/* Services carousel wrapper */
.services-carousel {
  overflow: visible;
}

.services-dots {
  display: none;
}

/* Mobile horizontal carousel */
@media (max-width: 960px) {
  .services-band {
    padding: 16px 0 20px;
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .services-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 var(--pad-x);
  }

  .services-carousel::-webkit-scrollbar {
    display: none;
  }

  .services-grid {
    display: flex;
    gap: 16px;
    grid-template-columns: none;
  }

  .service-card {
    flex: 0 0 85%;
    min-width: 280px;
    max-width: 320px;
    scroll-snap-align: center;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    box-shadow: none;
  }

  .service-card:hover {
    transform: none;
    box-shadow: none;
  }

  .service-card.is-flagship {
    background:
      radial-gradient(circle at top left, rgba(52, 219, 244, 0.18), transparent 55%),
      radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.12), transparent 55%),
      #fdfefe;
    border-color: rgba(52, 219, 244, 0.55);
    box-shadow: none;
  }

  /* Collapsible details on mobile */
  .service-details {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 400ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-details>* {
    overflow: hidden;
  }

  .service-card.is-expanded .service-details {
    grid-template-rows: 1fr;
  }

  .service-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    margin-top: 8px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: rgba(120, 227, 253, 0.06);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-toggle:hover,
  .service-toggle:focus-visible {
    background: rgba(120, 227, 253, 0.12);
    border-color: rgba(120, 227, 253, 0.3);
    color: var(--text);
  }

  .service-toggle__icon {
    font-size: 16px;
    font-weight: 400;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-card.is-expanded .service-toggle__icon {
    transform: rotate(45deg);
  }

  .service-card.is-expanded .service-toggle__text::after {
    content: " less";
  }

  .service-card.is-expanded .service-toggle__text {
    visibility: hidden;
    position: relative;
  }

  .service-card.is-expanded .service-toggle__text::before {
    content: "Hide";
    visibility: visible;
    position: absolute;
    left: 0;
  }

  /* Dots indicator */
  .services-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0 var(--pad-x);
  }

  .services-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-soft);
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .services-dot.is-active {
    background: var(--accent-blue);
    width: 24px;
    border-radius: 4px;
  }
}

@media (max-width: 720px) {
  .section-inner {
    padding: 0 24px;
  }

  .services-carousel {
    padding: 0 24px;
  }

  .services-dots {
    padding: 0 24px;
  }

  .service-card {
    flex: 0 0 88%;
    min-width: 260px;
  }
}

.proof__item .label {
  margin-bottom: var(--space-8)
}

.cluster {
  position: relative;
  width: 100%;
  height: 100%
}

.lf {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.lf--main {
  position: absolute;
  left: 0;
  top: 0;
  right: 40px;
  padding: var(--space-24);
}

.lf__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  margin-bottom: var(--space-16)
}

.lf__brand {
  display: flex;
  align-items: center;
  gap: var(--space-12)
}

.lf__badge {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-blue-soft);
  color: var(--accent-blue-deep);
  border: 1px solid rgba(120, 227, 253, 0.32);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.lf__tagline {
  color: var(--teal);
  margin-bottom: var(--space-8)
}

.lf__headline {
  margin-bottom: var(--space-12)
}

.lf__support {
  color: var(--text-secondary);
  margin-bottom: var(--space-20)
}

.lf__actions {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  margin-bottom: var(--space-20)
}

.lf__image {
  height: 168px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(120, 227, 253, 0.14), rgba(120, 227, 253, 0.00) 52%),
    linear-gradient(180deg, rgba(247, 245, 242, 1), rgba(243, 240, 235, 1));
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.lf--grid {
  position: absolute;
  right: 0;
  bottom: -18px;
  width: 360px;
  padding: var(--space-16);
}

.lf__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-12)
}

.tile {
  background: var(--surface-muted);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: var(--space-12);
  transition: transform 220ms var(--easing), box-shadow 220ms var(--easing)
}

.tile__img {
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(247, 245, 242, 1), rgba(120, 227, 253, 0.16));
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: var(--space-12)
}

.tile__price {
  color: var(--accent-blue-deep)
}

.ribbon {
  padding: var(--marketing-section-py) 0;
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
}

.ribbon--tight {
  padding: var(--marketing-section-py) 0 var(--space-96);
}

.ribbon__inner {
  display: flex;
  gap: var(--space-24);
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap
}

/* Marketing bands share one vertical rhythm (static + Next marketing shell using .section) */
section.section:not(.hero) {
  padding-block: var(--marketing-section-py);
}

@media (max-width: 820px) {
  section.section:not(.hero) {
    padding-block: var(--marketing-section-py-sm);
  }

  .section__head,
  .services-header {
    margin-bottom: var(--marketing-section-head-gap);
  }

  .section__head .h2 {
    font-size: clamp(1.375rem, 4.2vw + 0.75rem, 1.625rem);
    line-height: 1.22;
    margin-bottom: var(--space-12);
  }
}



.section--alt {
  background: var(--bg-alt)
}


.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 0;
  border: 0;
  display: block;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter)
}

.grid--3>* {
  grid-column: span 4
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-24);
  transition:
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(120, 227, 253, 0.3);
}

.card--flat {
  box-shadow: none
}

.list {
  margin: var(--space-16) 0 0;
  padding-left: 18px;
  color: var(--text-secondary)
}

.list li {
  margin: 0 0 var(--space-8)
}

/* Recent work band (same outer padding as other .section bands; tint only here) */
#work {
  background: var(--bg-alt);
  overflow: visible;
}

/*
  Rounded slab wraps the scroll strip so the native horizontal scrollbar
  is clipped to the same radius (otherwise WebKit paints the thumb past the corner).
*/
.work-slab {
  margin-top: var(--marketing-section-head-gap);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

/* Horizontal scroll carousel (inner — no radius; .work-slab provides clip) */
.work {
  padding: 28px 32px 24px 48px;
  display: flex;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 48px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(120, 227, 253, 0.4) transparent;
}

.work::-webkit-scrollbar {
  height: 6px;
}

.work::-webkit-scrollbar-track {
  background: transparent;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  background-clip: padding-box;
}

.work::-webkit-scrollbar-thumb {
  background: rgba(120, 227, 253, 0.4);
  border-radius: 3px;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  background-clip: padding-box;
}

.work::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 227, 253, 0.6);
}

/* Primary case-study card — Halo accent radial + cream from bg-alt */
.work__item.card--primary {
  background:
    radial-gradient(circle at 0 0, rgba(120, 227, 253, 0.26) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(243, 240, 235, 0.55) 0, transparent 58%),
    var(--surface);
  border-color: rgba(120, 227, 253, 0.42);
}

/* Secondary cards — soft electric sky wash into surface */
.work__item.card--flat:nth-child(2),
.work__item.card--flat:nth-child(3) {
  background: linear-gradient(
    145deg,
    rgba(120, 227, 253, 0.12),
    var(--surface) 62%);
}

/* Case-study header row (chip + CTA) */

.work__top {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  margin-bottom: 12px;
}

.work__cta {
  margin-top: auto;
  align-self: flex-start;
}

.work__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 320px;
  min-width: 280px;
  max-width: 340px;
  scroll-snap-align: start;
}

/* CMS-driven cards: image on top, padded body below */
.work__item.work__item--media {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.work__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, rgba(120, 227, 253, 0.14), var(--surface-muted));
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--space-20);
  flex: 1;
  min-height: 0;
}

.work-slab[data-collapsed="true"] .work__item .work__body > p.body {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.work-expand-row {
  display: flex;
  justify-content: center;
  margin-top: var(--space-20);
}

.work-expand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  color: #111827;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.work-expand:hover,
.work-expand:focus-visible {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.28);
  color: #0b1220;
  outline: none;
}

.work-expand__caret {
  width: 12px;
  height: 12px;
  transition: transform 200ms ease;
}

.work-expand[aria-expanded="true"] .work-expand__caret {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .work-expand,
  .work-expand__caret {
    transition: none;
  }
}

.work__loading {
  flex: 0 0 auto;
  min-width: 200px;
  padding: var(--space-24) var(--space-16);
  margin: 0;
}

.work__item.work__item--media {
  flex-basis: 360px;
  max-width: 400px;
}

/* Delivery details: internal gap only; outer band padding matches other sections */
.recent-work-meta {
  position: relative;
  z-index: 1;
  isolation: isolate;

  /* Same layout as reasons-layout */
  display: grid;
  grid-template-columns: minmax(260px, 340px) repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: var(--marketing-section-head-gap);

  /* More air above copy only; does not alter the decorative gradient recipe */
  padding-top: var(--space-56);
  padding-bottom: var(--marketing-section-head-gap);
  margin-top: var(--marketing-section-head-gap);
  margin-bottom: 0;
}

/* Full-width background band - only source of borders and background */
.recent-work-meta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -48px;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);

  /* Same borders as section-reasons */
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);

  /* Halo accent washes + page cream (paired with .section-reasons) */
  background:
    radial-gradient(circle at 0% 0%, rgba(120, 227, 253, 0.14), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(57, 166, 232, 0.09), transparent 55%),
    var(--bg);

  z-index: -1;
  pointer-events: none;
}

/* match "reason" item spacing: dot, label, body */
.meta-item {
  max-width: 26ch;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: flex-start;
}

.recent-meta-intro {
  max-width: 340px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recent-meta-intro .eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
  margin: 0;
}

@media (max-width: 960px) {
  .recent-work-meta {
    grid-template-columns: 1fr;
    gap: var(--space-16);
    padding-top: var(--space-56);
    padding-bottom: var(--marketing-section-head-gap);
    margin-top: var(--marketing-section-head-gap);
  }

  .recent-meta-intro {
    max-width: none;
    padding-top: 0;
  }

  .meta-item {
    max-width: none;
  }
}

.meta-label-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

/* match dot sizing/color from reasons */
.meta-item .reason-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-blue);
  margin-bottom: 12px;
  opacity: 0.75;
  flex-shrink: 0;
}

.meta-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(15, 23, 42, 0.55);
}

.meta-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Removed - now using flexbox for .work carousel */

.stats {
  margin: var(--marketing-section-head-gap) auto 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
  background:
    radial-gradient(circle at 0 0, rgba(120, 230, 252, 0.28) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(252, 227, 191, 0.45) 0, transparent 55%),
    #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  padding: var(--space-32);
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.stat {
  padding: var(--space-20) var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.stat+.stat {
  border-left: 1px solid rgba(15, 23, 42, 0.06);
}

/* Shared metric styling for stats and future counts */
.stats .label,
.metric-label {
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
  margin: 0;
}

.stats .h3,
.metric-value {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}

/* Slight hover-up when stat number changes */
.count-up {
  display: inline-block;
}

.count-up.count-up-bump {
  animation: countUpBump 0.35s ease-out;
}

@keyframes countUpBump {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.process {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  align-items: start;
  /* Extra bottom padding so the last sticky card has scroll room before section ends */
  padding-bottom: 32px;
}

.process__copy {
  grid-column: 1 / span 5;
  position: sticky;
  top: 104px;
  align-self: start
}

.process__copy .eyebrow {
  position: relative;
  display: inline-block;
}

.process__copy .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(120, 227, 253, 0.9);
}

.process__tagline {
  margin: var(--space-8) 0 0;
}

.steps {
  grid-column: 6 / span 7;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0; /* gap handled per-step via margin-bottom for sticky stacking */
  position: relative;
  padding-left: calc(var(--space-32) + 8px);
}

.steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 2px;
  background: linear-gradient(180deg,
      rgba(120, 227, 253, 0) 0%,
      rgba(120, 227, 253, 0.3) 8%,
      rgba(120, 227, 253, 0.3) 92%,
      rgba(120, 227, 253, 0) 100%);
  pointer-events: none;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-16);
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-16) var(--space-16);
  transition: transform 180ms var(--easing), box-shadow 180ms var(--easing), border-color 180ms var(--easing), background 200ms var(--easing);
  position: sticky;
  margin-bottom: var(--space-12);
}

/* Each card stacks 10px lower so they visually pile up as you scroll */
.steps .step:nth-child(1) { top: calc(var(--header-height) + 16px); z-index: 1; }
.steps .step:nth-child(2) { top: calc(var(--header-height) + 26px); z-index: 2; }
.steps .step:nth-child(3) { top: calc(var(--header-height) + 36px); z-index: 3; }
.steps .step:nth-child(4) { top: calc(var(--header-height) + 46px); z-index: 4; }

.step__idx {
  color: var(--link-accent);
  min-width: 34px;
  height: 34px;
  width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(52, 219, 244, 0.12);
  border: 1px solid rgba(52, 219, 244, 0.24);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.step__body h3 {
  margin: 0 0 var(--space-8);
}

.step__body p {
  margin: 0;
}

.step:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  background: linear-gradient(120deg,
      rgba(120, 227, 253, 0.08) 0%,
      rgba(255, 255, 255, 0.9) 45%,
      rgba(252, 227, 191, 0.08) 100%);
}

/* Active/selected step treatment */
.steps .step.is-active {
  border-left: 2px solid var(--accent-blue);
}

/* Default active = Design (step 2) */
.steps .step:nth-child(2) {
  border-left: 2px solid var(--accent-blue);
}

/* Keep Design (step 2) with a persistent flagship wash */
.steps .step:nth-child(2) {
  background:
    radial-gradient(circle at 0 0, rgba(120, 230, 252, 0.22) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(252, 227, 191, 0.36) 0, transparent 55%),
    #ffffff;
}

/* Hover subtle tint without full gradient blast */
.step:not(:nth-child(2)):hover {
  background: linear-gradient(120deg,
      rgba(120, 227, 253, 0.06) 0%,
      rgba(255, 255, 255, 0.94) 45%,
      rgba(252, 227, 191, 0.06) 100%);
}

@media (max-width: 720px) {
  .process {
    gap: var(--space-24);
    padding-bottom: var(--space-16);
  }

  .steps {
    grid-column: 1 / -1;
    padding-left: 0;
    gap: var(--space-16);
  }

  .steps::before {
    content: none;
  }

  .step {
    padding: var(--space-12) var(--space-12);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    /* Disable sticky stacking on mobile — normal flow */
    position: relative;
    top: auto;
    z-index: auto;
    margin-bottom: var(--space-16);
  }

  /* Reset per-card sticky overrides on mobile */
  .steps .step:nth-child(1),
  .steps .step:nth-child(2),
  .steps .step:nth-child(3),
  .steps .step:nth-child(4) {
    top: auto;
    z-index: auto;
  }

  .steps .step:nth-child(2) {
    background:
      radial-gradient(circle at top left, rgba(52, 219, 244, 0.18), transparent 55%),
      radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.12), transparent 55%),
      #fdfefe;
    border-color: rgba(52, 219, 244, 0.55);
  }
}

.metrics {
  margin-top: var(--space-32);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
}

/* Tech stack marquee */
.tech-marquee {
  margin-top: var(--space-24);
  position: relative;
  overflow: hidden;
}

.tech-marquee::before,
.tech-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  pointer-events: none;
  z-index: 2;
}

.tech-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(247, 245, 242, 0) 100%);
}

.tech-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(247, 245, 242, 0) 100%);
}

.marquee-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-40);
  margin-bottom: var(--space-16);
  justify-content: flex-start;
}

.marquee-rule {
  order: 2;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02));
  border-radius: 999px;
  display: block;
}

.marquee-subhead {
  order: 1;
  margin: 0;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Remove eyebrow underline for marquee subhead */
.marquee-subhead::after {
  display: none;
}

.marquee-row {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.marquee-track {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  animation: marquee-left 36s linear infinite;
  will-change: transform;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(52, 219, 244, 0.12);
  border: 1px solid rgba(52, 219, 244, 0.28);
  color: var(--link-accent);
  font-size: 13px;
  line-height: 1.4;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  white-space: nowrap;
  box-shadow: none;
  transition: background 180ms ease, border-color 180ms ease, transform 220ms var(--easing);
}

.pill img {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.pill:hover {
  background: rgba(52, 219, 244, 0.18);
  border-color: rgba(52, 219, 244, 0.45);
  transform: translateY(-1px);
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
  }

  .tech-marquee::before,
  .tech-marquee::after {
    display: none;
  }
}

.metric {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--space-16);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 220ms var(--easing), box-shadow 220ms var(--easing), border-color 180ms ease;
}

.metric:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.metric__header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.metric__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(120, 227, 253, 0.16);
  color: #0f172a;
  flex-shrink: 0;
}

.metric--hosting {
  background:
    radial-gradient(circle at top left, rgba(52, 219, 244, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.12), transparent 55%),
    #fdfefe;
  border-color: rgba(52, 219, 244, 0.55);
}

.metric--vuln {
  background:
    radial-gradient(circle at top left, rgba(52, 219, 244, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.12), transparent 55%),
    #fdfefe;
  border-color: rgba(52, 219, 244, 0.55);
}

.metric--backups {
  background:
    radial-gradient(circle at top left, rgba(52, 219, 244, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.12), transparent 55%),
    #fdfefe;
  border-color: rgba(52, 219, 244, 0.55);
}

.metric--backups .metric__icon {
  background: rgba(52, 163, 160, 0.16);
}

.metric--vuln .metric__icon {
  background: rgba(57, 166, 232, 0.16);
}

.metric--hosting .metric__icon {
  background: rgba(120, 227, 253, 0.22);
}

.cta__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  align-items: start
}

.cta__copy {
  grid-column: 1 / span 6
}

.cta__actions {
  margin-top: var(--space-24);
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap
}

.btn--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px 9px;
  min-height: 0;
  border-radius: 999px;
  border: 1px solid rgba(52, 219, 244, 0.2);
  background: rgba(52, 219, 244, 0.06);
  color: var(--link-accent);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: none;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, color 170ms ease;
}

.btn--link:hover,
.btn--link:focus-visible {
  color: var(--link-accent);
  border-color: rgba(52, 219, 244, 0.32);
  background: rgba(52, 219, 244, 0.12);
  box-shadow: none;
  transform: translateY(-1px);
  outline: none;
}

.cta__proof {
  margin-top: var(--space-20);
  display: grid;
  gap: 10px;
  align-items: start;
  max-width: 420px;
}

.cta__proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.cta__proof-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(52, 219, 244, 0.16);
  color: #0b6fa4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.cta__reassure {
  margin-top: var(--space-12);
}

.form {
  grid-column: 7 / span 6
}

/* Info cards placed in the right column of .cta__inner and .process grids
   (not the .form — that already has grid-column via .form above) */
.cta__inner > .card:not(.form) {
  grid-column: 7 / span 6;
  align-self: start;
}

.process > .card {
  grid-column: 6 / span 7;
  align-self: start;
}

.form.card {
  background:
    radial-gradient(circle at top left, rgba(52, 219, 244, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.12), transparent 55%),
    #fdfefe;
  border-color: rgba(52, 219, 244, 0.55);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(52, 219, 244, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.form.card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(52, 219, 244, 0.35);
  border-color: rgba(52, 219, 244, 0.65);
}

.form__module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  padding: 0 0 var(--space-16);
  margin-bottom: var(--space-20);
  border-bottom: 1px solid var(--border-soft);
}

.form__title {
  margin: 0;
  font-weight: 700;
  font-size: 17px;
}

.form__meta {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.form__meta-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(52, 219, 244, 0.12);
  border: 1px solid rgba(52, 219, 244, 0.28);
  color: #0b6fa4;
  font-size: 12px;
  font-weight: 600;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-20)
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip--select {
  border: 1px solid rgba(52, 219, 244, 0.35);
  background: rgba(52, 219, 244, 0.12);
  color: #0b6fa4;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.chip--select:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 219, 244, 0.5);
  background: rgba(52, 219, 244, 0.16);
}

.chip--select:active {
  transform: translateY(0);
}

.chip--select.is-selected {
  background: var(--chip-selected-bg);
  border-color: var(--chip-selected-border);
  color: var(--chip-selected-text);
  box-shadow: var(--chip-selected-shadow);
}

.chip--select.is-selected:hover {
  background: var(--chip-selected-bg-hover);
  border-color: #2fa67c;
}

.chip--select:focus-visible {
  outline: 2px solid rgba(52, 219, 244, 0.9);
  outline-offset: 2px;
}

.chip--select.is-selected:focus-visible {
  outline-color: rgba(45, 143, 111, 0.85);
}

.input {
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.input::placeholder {
  color: var(--text-muted);
}

.form .label {
  font-weight: 600;
  color: var(--text-secondary);
}

.form .btn--primary {
  width: 100%;
  justify-content: center;
}

.input:focus {
  outline: none;
  border-color: rgba(52, 219, 244, 0.7);
  box-shadow: 0 0 0 3px rgba(120, 227, 253, 0.35);
}

.textarea {
  resize: vertical;
  min-height: 120px
}

.form__fine {
  margin-top: var(--space-16)
}

.form__privacy {
  margin-top: var(--space-8);
}

.form__error {
  margin-top: var(--space-12);
  margin-bottom: 0;
}

.form__error[hidden] {
  display: none !important;
}

.form__success {
  display: none;
  margin-top: var(--space-20);
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(52, 219, 244, 0.12);
  border: 1px solid rgba(52, 219, 244, 0.28);
  color: #0b6fa4;
}

.form__success-title {
  margin: 0 0 4px;
  font-weight: 700;
}

.form__success-body {
  margin: 0;
  color: #0b6fa4;
}

.form.is-sent .form__success {
  display: block;
}

.form__received {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
  margin-top: var(--space-20);
  padding: var(--space-20) var(--space-16);
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.28);
  animation: form-received-fade 220ms ease-out both;
}

.form__received[hidden] {
  display: none;
}

.form__received-icon {
  width: 56px;
  height: 56px;
  display: block;
}

.form__received-circle {
  stroke: #10b981;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
}

.form__received-check {
  stroke: #10b981;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
}

.form.is-sent .form__received-circle {
  animation: form-received-circle 520ms cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.form.is-sent .form__received-check {
  animation: form-received-check 360ms 380ms cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.form__received-title {
  margin: var(--space-4) 0 0;
  font-weight: 700;
  color: #047857;
}

.form__received-body {
  margin: 0;
  color: #065f46;
}

@keyframes form-received-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes form-received-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes form-received-check {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .form__received,
  .form__received-circle,
  .form__received-check {
    animation: none;
  }
  .form__received-circle,
  .form__received-check {
    stroke-dashoffset: 0;
  }
}

.cta__actions {
  margin-top: var(--space-24);
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap
}

.cta__note {
  margin-top: var(--space-24);
  display: flex;
  gap: var(--space-16);
  align-items: center;
  flex-wrap: wrap
}

.footer {
  padding: var(--space-96) 0;
  background: var(--bg)
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter)
}

.footer__col:nth-child(1) {
  grid-column: span 6
}

.footer__col:nth-child(2) {
  grid-column: span 3
}

.footer__col:nth-child(3) {
  grid-column: span 3
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  padding: var(--space-8) 0
}

.footer__icon {
  flex-shrink: 0;
}

.footer__link:hover {
  color: var(--text);
}


/* Footer upgrades */
.footer {
  padding: var(--space-80) 0 var(--space-40);
  background:
    radial-gradient(circle at 0% 0%, rgba(52, 246, 242, 0.10), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(120, 227, 253, 0.08), transparent 55%),
    var(--bg-alt);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 227, 253, 0.7), transparent);
}

.footer__brand {
  display: flex;
  gap: var(--space-24);
  align-items: flex-start;
}

.footer__mark {
  width: 72px;
  height: 72px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.footer__logoImg {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer__actions {
  margin-top: var(--space-16);
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.footer__meta {
  margin-top: var(--space-16);
}

.footer__link:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(39, 100, 255, 0.35);
}

.footer__bottom {
  margin-top: var(--space-48);
  padding-top: var(--space-24);
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.footer__fine,
.footer__fineLink {
  font-size: 13px;
}

.footer__fine {
  margin: 0;
}

.footer__fineLink {
  color: var(--text-secondary);
}

.footer__fineLink:hover,
.footer__fineLink:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(39, 100, 255, 0.35);
}

@media (max-width: 900px) {
  .footer__brand {
    flex-direction: column;
    gap: var(--space-16);
  }

  .footer__mark {
    width: 72px;
    height: 72px;
    border-radius: 0;
    margin-top: -20px;
  }

  .footer__logoImg {
    width: 72px;
    height: 72px;
  }

  .footer__bottom {
    justify-content: flex-start;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Staggered reveal for child elements */
.reveal.is-visible>*:nth-child(1) {
  transition-delay: 0ms;
}

.reveal.is-visible>*:nth-child(2) {
  transition-delay: 60ms;
}

.reveal.is-visible>*:nth-child(3) {
  transition-delay: 120ms;
}

.reveal.is-visible>*:nth-child(4) {
  transition-delay: 180ms;
}

.reveal.is-visible>*:nth-child(5) {
  transition-delay: 240ms;
}

/* Stagger reveal items in grids/lists */
[data-stagger] .reveal:nth-child(1) {
  transition-delay: 0ms;
}

[data-stagger] .reveal:nth-child(2) {
  transition-delay: 80ms;
}

[data-stagger] .reveal:nth-child(3) {
  transition-delay: 160ms;
}

[data-stagger] .reveal:nth-child(4) {
  transition-delay: 240ms;
}

[data-stagger] .reveal:nth-child(5) {
  transition-delay: 320ms;
}

[data-stagger] .reveal:nth-child(6) {
  transition-delay: 400ms;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Next.js marketing subpages (everything except the static homepage which sets
   body.halo-marketing) — don't gate content on JS. script.js loads after
   hydration, and any early init failure or SPA route change would otherwise
   leave .reveal content stuck at opacity:0. The homepage keeps its fade-ins. */
body:not(.halo-marketing) .reveal,
body:not(.halo-marketing) [data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

.hero__intro > *:not(.hero__eyebrow),
.hero__body > * {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(3px);
}

.hero.is-animated .hero__intro > *:not(.hero__eyebrow),
.hero.is-animated .hero__body > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-animated .hero__intro > :nth-child(2) {
  transition-delay: 100ms
}

.hero.is-animated .hero__body > :nth-child(1) {
  transition-delay: 200ms
}

.hero.is-animated .hero__body > :nth-child(2) {
  transition-delay: 300ms
}

@media (max-width: 1024px) {
  :root {
    --pad-x: 28px
  }

  .hero__grid {
    grid-template-rows: auto auto auto;
  }

  .hero__intro {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: none;
  }

  .hero__visual {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: var(--space-24);
    width: 100%;
  }

  .hero__body {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: none;
  }

  .proof__item {
    grid-column: span 6
  }

  .process__copy {
    position: relative;
    top: auto
  }
}

@media (max-width: 820px) {
  :root {
    --pad-x: 24px;
    --gutter: 24px
  }

  .nav-links {
    display: none
  }

  .header__cta .btn {
    display: none
  }

  .menu {
    display: inline-flex
  }

  .h1 {
    font-size: 48px
  }

  body.halo-marketing .hero .hero__title {
    font-size: clamp(1.5rem, 5vw + 0.55rem, 2.125rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-12);
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.58;
    max-width: 36rem;
  }

  .h2 {
    font-size: 32px
  }

  .h3 {
    font-size: 28px
  }

  .hero {
    padding: var(--space-96) 0 var(--space-48)
  }

  .proof {
    padding: var(--space-24) 0 var(--space-80)
  }

  .proof__item {
    grid-column: span 12
  }

  .grid--3>* {
    grid-column: span 12
  }

  /* Work section horizontal carousel on mobile */
  .work-slab {
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .work {
    display: flex;
    align-items: stretch;
    gap: 16px;
    padding: 16px 0 20px;
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .work::-webkit-scrollbar {
    display: none;
  }

  .work__item {
    flex: 0 0 85%;
    min-width: 280px;
    max-width: 320px;
    scroll-snap-align: center;
    grid-column: auto;
    background: var(--surface);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: var(--space-20);
  }

  .work__item.work__item--media {
    padding: 0;
  }

  .work__item.work__item--media .work__body {
    padding: var(--space-20);
  }

  .work__item.card--primary {
    background:
      radial-gradient(circle at top left, rgba(120, 227, 253, 0.22), transparent 55%),
      radial-gradient(circle at bottom right, rgba(243, 240, 235, 0.72), transparent 58%),
      var(--surface);
    border-color: rgba(120, 227, 253, 0.48);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: var(--space-12) var(--space-8);
  }

  .stat {
    padding: var(--space-8) var(--space-4);
    gap: 2px;
  }

  .stats .label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .stats .h3 {
    font-size: 20px;
  }

  /* Switch stat divider from left border to top border on mobile */
  .stat+.stat {
    border-left: 1px solid rgba(15, 23, 42, 0.06);
    border-top: none;
    padding-top: var(--space-8);
    margin-top: 0;
  }

  .metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }

  .metric {
    padding: var(--space-8) var(--space-4);
    text-align: center;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .metric:hover {
    transform: none;
    box-shadow: none;
  }

  .metric__header {
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    flex: 1;
  }

  .metric__icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }

  .metric .label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .metric .h4 {
    font-size: 14px;
    margin-top: auto;
  }

  .process__copy {
    grid-column: 1 / span 12
  }

  .steps {
    grid-column: 1 / span 12;
    margin-top: var(--space-32)
  }

  .cta__copy {
    grid-column: 1 / span 12
  }

  .form {
    grid-column: 1 / span 12
  }

  .cta__inner > .card:not(.form),
  .process > .card {
    grid-column: 1 / span 12
  }

  .form__module-head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-8);
  }

  .form__meta-chip {
    white-space: nowrap;
    font-size: 11px;
    padding: 5px 10px;
  }

  .footer__col:nth-child(1),
  .footer__col:nth-child(2),
  .footer__col:nth-child(3) {
    grid-column: span 12
  }
}

/* ========================================
   PREMIUM MICRO-INTERACTIONS
   ======================================== */

/* Subtle link underline animation */
.footer__link,
.nav-links a,
.mobile__link {
  position: relative;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-blue);
  transition: width 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__link:hover::after {
  width: 100%;
}

/* Service tag subtle pulse on card hover */
.service-card:hover .service-tag {
  background: rgba(52, 219, 244, 0.18);
  transition: background 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reason dot subtle glow on hover */
.reason:hover .reason-dot,
.meta-item:hover .reason-dot,
.feature-meta:hover .reason-dot {
  box-shadow: 0 0 12px rgba(120, 227, 253, 0.5);
  transition: box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10000;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--accent-blue);
  box-shadow: 0 0 10px rgba(120, 227, 253, 0.5);
  transition: width 50ms linear;
}

/* Back to top button */
/* Floating dock — Call, Contact, Back-to-top stacked at bottom-right.
   Buttons animate independently with a staggered pop-in / collapse-out:
   - Entry (scroll up): Top button pops first, then Contact, then Call — feels
     like the dock is unfolding upward from the bottom.
   - Exit (scroll down): Call collapses first, then Contact, then Top — feels
     like the dock is folding back into the bottom corner.
   The dock itself only toggles pointer-events + visibility; each button owns
   its own transform + opacity transition. */
.floating-dock {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
  /* Visibility is delayed on exit so each button can finish collapsing before
     the dock becomes inert. */
  visibility: hidden;
  transition: visibility 0s linear 520ms;
}

.floating-dock.is-visible {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s linear 0s;
}

/* Each dock button stacks; hovering reveals a label sliding out from the right.
   The transition list covers both the entry/exit animation (transform, opacity)
   AND the hover reactions (width, padding, background, etc). */
.floating-dock__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  text-decoration: none;
  flex-shrink: 0;
  /* Initial state — collapsed into a dot at the corner. */
  opacity: 0;
  transform: scale(0.3) translateY(18px);
  transform-origin: center;
  transition:
    transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 280ms ease,
    width 280ms cubic-bezier(0.19, 1, 0.22, 1),
    padding 280ms cubic-bezier(0.19, 1, 0.22, 1),
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
}

/* Exit stagger (no .is-visible): Call (n=1) collapses first, Top (n=3) last. */
.floating-dock__btn:nth-child(1) { transition-delay: 0ms; }
.floating-dock__btn:nth-child(2) { transition-delay: 70ms; }
.floating-dock__btn:nth-child(3) { transition-delay: 140ms; }

/* Visible state — each button pops to full size with overshoot bezier. */
.floating-dock.is-visible .floating-dock__btn {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Entry stagger: Top (n=3) pops first, Call (n=1) last. Building UP. */
.floating-dock.is-visible .floating-dock__btn:nth-child(3) { transition-delay: 0ms; }
.floating-dock.is-visible .floating-dock__btn:nth-child(2) { transition-delay: 90ms; }
.floating-dock.is-visible .floating-dock__btn:nth-child(1) { transition-delay: 180ms; }

.floating-dock__btn svg {
  flex-shrink: 0;
}

.floating-dock__label {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  margin-left: 0;
  opacity: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    max-width 280ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 200ms ease 80ms,
    margin-left 280ms cubic-bezier(0.19, 1, 0.22, 1);
}

.floating-dock__btn:hover {
  width: auto;
  padding: 0 18px 0 14px;
  /* Maintain scale(1) so we don't fight the pop-in baseline; just lift. */
  transform: scale(1) translateY(-2px);
}

.floating-dock__btn:hover .floating-dock__label {
  max-width: 140px;
  margin-left: 8px;
  opacity: 1;
}

/* Call button — solid cyan (primary action) */
.floating-dock__btn--call {
  background: var(--accent-blue);
  border: 1px solid var(--accent-blue);
  box-shadow: 0 8px 24px rgba(120, 227, 253, 0.32);
  color: #0f172a;
}
.floating-dock__btn--call:hover {
  background: var(--accent-blue-deep);
  border-color: var(--accent-blue-deep);
  box-shadow: 0 12px 32px rgba(57, 166, 232, 0.36);
  color: #ffffff;
}

/* Contact button — white surface with cyan ring */
.floating-dock__btn--contact {
  background: var(--surface);
  border: 1px solid rgba(120, 227, 253, 0.55);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  color: var(--accent-blue-deep);
}
.floating-dock__btn--contact:hover {
  background: var(--accent-blue-soft);
  border-color: var(--accent-blue);
  color: #0f172a;
}

/* Back-to-top — neutral cream (least urgent action) */
.floating-dock__btn--top {
  background: var(--surface-muted);
  border: 1px solid var(--border-soft);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  color: var(--text-secondary);
}
.floating-dock__btn--top:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: var(--accent-blue);
}

/* Legacy compatibility — the back-to-top class still works for any code that
   targets it directly (e.g. body.halo-mobnav-open .back-to-top hide rule). */
.back-to-top {
  /* Inherits .floating-dock__btn styles when nested inside .floating-dock */
}

@media (prefers-reduced-motion: reduce) {
  .floating-dock__btn {
    transition: opacity 0.18s ease, background 0.18s ease, color 0.18s ease !important;
    transform: scale(1) translateY(0) !important;
  }
  .floating-dock__btn,
  .floating-dock.is-visible .floating-dock__btn {
    transition-delay: 0s !important;
  }
}

/* Per-button is-visible is no longer used — the parent dock controls it.
   But keep this rule alive for any legacy single-button installs. */
.back-to-top.is-visible:not(.floating-dock__btn) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .floating-dock {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .floating-dock__btn {
    width: 44px;
    height: 44px;
  }
  /* On mobile, hover labels rarely fire (no pointer), so keep them hidden. */
  .floating-dock__btn:hover {
    width: 44px;
    padding: 0;
  }
  .floating-dock__btn:hover .floating-dock__label {
    max-width: 0;
    margin-left: 0;
    opacity: 0;
  }
}

/* Stats number subtle scale on reveal */
.stat .h3 {
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stat.reveal.is-visible .h3 {
  animation: statPop 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes statPop {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  60% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Step cards sequential glow */
.step.reveal.is-visible {
  animation: stepGlow 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes stepGlow {
  0% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  }

  40% {
    box-shadow: 0 12px 36px rgba(120, 227, 253, 0.12);
  }

  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  }
}

/* Input focus glow */
.input:focus {
  border-color: rgba(120, 227, 253, 0.6);
  box-shadow: 0 0 0 4px rgba(120, 227, 253, 0.1);
  transition:
    border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Chip select micro-interaction */
.chip--select {
  transition:
    background 300ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 300ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.chip--select:hover:not(.is-selected) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.chip--select.is-selected {
  transform: scale(1.02);
}

/* Logo subtle hover */
.logo:hover .logo__img,
.footer__brand:hover .footer__logo {
  transform: scale(1.03);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.logo__img,
.footer__logo {
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Eyebrow fade-in effect */
.eyebrow {
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Section divider subtle animation */
.section-divider {
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Work card CTA arrow micro-animation */
.service-cta .service-cta-arrow,
.work__cta .service-cta-arrow {
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-cta:hover .service-cta-arrow,
.work__cta:hover .service-cta-arrow {
  transform: translateX(4px);
}

/* Marquee pills subtle hover */
.pill {
  transition:
    transform 350ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Metric cards hover lift */
.metric {
  transition:
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  html:has(body.halo-marketing) {
    scroll-behavior: auto
  }

  body.halo-marketing *,
  body.halo-marketing *::before,
  body.halo-marketing *::after {
    transition: none !important;
    animation: none !important;
  }

  body.halo-marketing .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
/* ─────────────────────────────────────────────
   Blog teaser (homepage — filled by script.js)
   Matches services-band + work-card energy (not generic white tiles)
───────────────────────────────────────────── */
.blog-teaser-band {
  margin-top: var(--marketing-section-head-gap);
  padding: 28px 32px 32px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  min-height: 5rem;
}

.blog-teaser-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding: 20px 20px 22px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(145deg, rgba(240, 245, 255, 0.88), #ffffff 62%);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition:
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 450ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 450ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.blog-teaser-card--lead {
  background:
    radial-gradient(circle at 0 0, rgba(120, 230, 252, 0.26) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(252, 227, 191, 0.4) 0, transparent 55%),
    #ffffff;
  border-color: rgba(52, 148, 255, 0.32);
}

.blog-teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
  border-color: rgba(120, 227, 253, 0.45);
}

.blog-teaser-card__tag {
  margin-bottom: 2px;
}

.blog-teaser-card__title {
  margin: 0;
  color: var(--text);
}

.blog-teaser-card__excerpt {
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-teaser-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-12);
  margin-top: auto;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-soft);
}

.blog-teaser-card__date:empty {
  display: none;
}

.blog-teaser-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-blue-deep);
  transition: color 200ms ease, gap 200ms ease;
}

.blog-teaser-card:hover .blog-teaser-card__read {
  color: var(--text);
  gap: 10px;
}

.blog-teaser-card .service-cta-arrow {
  display: inline-block;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-teaser-card:hover .service-cta-arrow {
  transform: translateX(3px);
}

.blog-teaser-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem 1rem;
}

.blog-teaser-cta {
  margin-top: var(--space-24);
  text-align: center;
  padding-top: var(--space-8);
}

@media (max-width: 900px) {
  .blog-teaser-band {
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    padding: 20px var(--pad-x) 28px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.65);
  }

  .blog-teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────
   Reviews — same slab + card language as blog-teaser-band / blog-teaser-card
   and gradient rhythm as work__item portfolio cards
───────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.reviews-band {
  margin-top: var(--marketing-section-head-gap);
  padding: 28px 32px 32px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.reviews-carousel {
  margin-top: 0;
  --review-card-w: min(340px, 88vw);
}

.reviews-carousel__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reviews-carousel__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-marquee 60s linear infinite;
  will-change: transform;
}

.reviews-carousel:hover .reviews-carousel__track {
  animation-play-state: paused;
}

@keyframes reviews-marquee {
  to {
    transform: translateX(-50%);
  }
}

.review-card--marquee {
  flex: 0 0 var(--review-card-w);
  min-height: 15rem;
}

/* Testimonial cards — light surface, aligned with blog-teaser / work cards */
.review-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding: 20px 20px 22px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(145deg, rgba(240, 245, 255, 0.88), #ffffff 62%);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
  transition:
    transform 450ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 450ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 450ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.review-card--google {
  gap: 0;
  padding: 18px 18px 20px;
  background: linear-gradient(145deg, rgba(240, 245, 255, 0.92), #ffffff 62%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  color: var(--text);
}

.review-card--google.review-card--marquee {
  min-height: 17.5rem;
}

.review-card--google:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
  border-color: rgba(120, 227, 253, 0.4);
}

.review-card--marquee.review-card--google:nth-child(4n + 1) {
  background:
    radial-gradient(circle at 0 0, rgba(120, 230, 252, 0.22) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(252, 227, 191, 0.35) 0, transparent 55%),
    #ffffff;
  border-color: rgba(52, 148, 255, 0.28);
}

.review-card__header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.review-card__avatar-wrap {
  flex-shrink: 0;
}

.review-card__avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border-soft);
}

.review-card__avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(120, 227, 253, 0.35), rgba(57, 166, 232, 0.2));
  color: var(--accent-blue-deep);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  border: 1px solid rgba(52, 148, 255, 0.25);
}

.review-card__meta {
  min-width: 0;
  flex: 1;
}

.review-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-blue-deep);
  line-height: 1.25;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.review-card__subtitle {
  margin-top: 3px;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.review-card__rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.review-stars--google {
  margin-bottom: 0;
  color: #d97706;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-card__when {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.review-body--google {
  margin-top: 14px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.62;
}

.review-card__owner {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}

.review-card__owner-top {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.review-card__owner-brand {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.review-card__owner-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-card__owner-text {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.review-card__owner-when {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-card:hover:not(.review-card--google) {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
  border-color: rgba(120, 227, 253, 0.45);
}

.review-card--marquee:not(.review-card--google):nth-child(odd) {
  background:
    radial-gradient(circle at 0 0, rgba(120, 230, 252, 0.26) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(252, 227, 191, 0.4) 0, transparent 55%),
    #ffffff;
  border-color: rgba(52, 148, 255, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__viewport {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 0.5rem;
  }

  .reviews-carousel__track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100% !important;
    max-width: 100%;
    animation: none !important;
    transform: none !important;
  }

  .reviews-carousel:hover .reviews-carousel__track {
    animation-play-state: running;
  }

  .review-card--marquee[aria-hidden="true"] {
    display: none !important;
  }

  .review-card--marquee {
    flex: 1 1 min(320px, 100%);
    max-width: 380px;
  }

  .review-card:hover {
    transform: none;
  }
}

.review-stars {
  margin-bottom: 2px;
  color: #d97706;
  font-size: 1rem;
  letter-spacing: 3px;
  line-height: 1;
}

.review-body {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-soft);
}

.review-name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
}

.review-source {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.reviews-cta {
  margin-top: var(--space-24);
  text-align: center;
  padding-top: var(--space-8);
}

.reviews-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
  text-decoration: none;
  color: var(--text);
  transition:
    transform 220ms var(--easing),
    box-shadow 220ms var(--easing),
    border-color 180ms ease;
}

.reviews-google-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
}

.reviews-google-btn__mark {
  display: flex;
  flex-shrink: 0;
}

.reviews-google-btn__title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  white-space: nowrap;
}

.reviews-google-btn__chev {
  font-size: 1.05rem;
  line-height: 1;
  color: var(--accent-blue-deep);
}

@media (max-width: 900px) {
  .reviews-band {
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    padding: 20px var(--pad-x) 28px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 600px) {
  /* Switch from CSS marquee to native touch scroll on mobile */
  .reviews-carousel__viewport {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    /* scrollbar hidden but still scrollable */
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .reviews-carousel__viewport::-webkit-scrollbar {
    display: none;
  }

  /* Kill the animation — user swipes instead */
  .reviews-carousel__track {
    animation: none !important;
    transform: none !important;
    width: auto;
    flex-wrap: nowrap;
  }

  /* Hide the duplicate clone set — only needed for the infinite loop */
  .review-card--marquee[aria-hidden="true"] {
    display: none !important;
  }

  /* Each card snaps into view and is fully readable */
  .review-card--marquee {
    flex: 0 0 min(300px, 82vw);
    scroll-snap-align: start;
    min-height: auto;
    height: auto;
  }

  /* Remove the min-height clamp so full text shows */
  .review-card--google.review-card--marquee {
    min-height: auto;
    height: auto;
  }

  /* Remove text truncation — show full review text on mobile */
  .review-body,
  .review-body--google {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .reviews-band {
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Small scroll hint indicator */
  .reviews-carousel::after {
    content: 'Swipe to see more →';
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.02em;
  }
}

/* —— About, social, pricing, areas —— */
.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: var(--space-48);
  align-items: start;
  margin-top: var(--marketing-section-head-gap);
}

.about-pfp-card {
  margin: 0;
  text-align: center;
}

.about-pfp-card__img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  display: block;
  margin-inline: auto;
}

.about-pfp-card__cap {
  margin-top: var(--space-12);
  display: block;
}

.about-highlights {
  margin: var(--space-24) 0 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

@media (max-width: 820px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-32);
  }

  .about-pfp-col {
    order: -1;
  }
}

/* Social: same card system as #services / #pricing (service-card + service-points + service-cta) */
.social-grid {
  margin-top: var(--marketing-section-head-gap);
  align-items: stretch;
}

#social a.service-card.social-channel {
  padding: 20px 20px 22px;
  text-decoration: none;
  color: inherit;
}

#social .social-channel__meta {
  margin-bottom: 2px;
  flex-wrap: wrap;
}

#social .social-channel__meta .social-channel__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
}

.social-channel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-muted);
  color: var(--text);
}

.social-channel__icon--ig {
  background: linear-gradient(145deg, #fdf4ff, #fce7f3);
  color: #be185d;
}

.social-channel__icon--tt {
  background: #0f172a;
  color: #fff;
}

.social-channel__icon--fb {
  background: #eff6ff;
  color: #1d4ed8;
}

#social .social-channel__title.h4 {
  margin: 0;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

#social .social-channel__cta.service-cta {
  margin-top: 14px;
  pointer-events: none;
}

@media (max-width: 960px) {
  #social .social-grid.services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #social .social-grid .service-card {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    scroll-snap-align: unset;
  }

  #social .service-card .service-details {
    display: block !important;
    grid-template-rows: none !important;
    overflow: visible !important;
  }

  #social .service-card .service-details > * {
    overflow: visible !important;
  }
}

  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--space-40);
  align-items: start;
  margin-top: var(--marketing-section-head-gap);
}

.areas-map-wrap {
  padding: 0;
  overflow: hidden;
}

.areas-map {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.areas-map-attribution {
  margin: 0;
  padding: var(--space-12) var(--space-16);
  border-top: 1px solid var(--border-soft);
}

.areas-map-attribution a {
  color: inherit;
}

.areas-chips {
  list-style: none;
  margin: var(--space-12) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.areas-chip {
  display: inline-block;
  padding: 11px 15px;
  border-radius: 999px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #0b6fa4;
  background: rgba(52, 219, 244, 0.12);
  border: 1px solid rgba(52, 219, 244, 0.35);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

a.areas-chip {
  cursor: pointer;
  text-decoration: none;
}

a.areas-chip:hover,
a.areas-chip:focus-visible {
  background: rgba(52, 219, 244, 0.22);
  border-color: rgba(52, 219, 244, 0.6);
  transform: translateY(-1px);
}

a.areas-chip:focus-visible {
  outline: 2px solid rgba(52, 219, 244, 0.85);
  outline-offset: 2px;
}

.areas-note {
  margin-top: var(--space-24);
}

@media (max-width: 900px) {
  .areas-layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-google-btn,
  .social-channel {
    transition: none;
  }
}

/* Halo nav skeleton (dropdowns + mobile) — Halo palette, Space Grotesk, existing .btn / .logo */
.haloNavOverlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  background: transparent;
  pointer-events: none;
}

.haloNavOverlay.is-active {
  display: block;
  pointer-events: auto;
}

.site-header.site-header--haloNav {
  position: sticky;
  left: auto;
  right: auto;
  height: auto;
}

.haloNav {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: clamp(16px, 2.5vw, 24px);
  /* Grid: logo left, nav links center, CTA right. Burger replaces right cluster
     at mobile via the existing media query rules. */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
}

.haloNav__brand.logo {
  flex-shrink: 0;
  justify-self: start;
  margin-right: 0;
  /* Stack logo image + tagline so "Web Agency, LLC" sits under the H without
     pushing the navbar taller (we shrink the image to compensate). */
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1;
}

/* Smaller logo so logo + tagline fit in the same navbar height as a 56/64px
   logo alone. */
.haloNav .logo__img {
  width: 46px;
  height: 46px;
}

@media (min-width: 821px) {
  .haloNav .logo__img {
    width: 52px;
    height: 52px;
  }
}

/* "Web Agency, LLC" tagline — Inter Light, tight tracking, dim ink.
   The halo-logo.png has internal whitespace padding around the script glyph,
   so we pull the tagline up with a negative margin to close the visual gap. */
.haloNav__brand-tagline {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  margin-top: -8px;
  line-height: 1;
}

@media (min-width: 821px) {
  .haloNav__brand-tagline {
    font-size: 9px;
    letter-spacing: 0.16em;
    margin-top: -10px;
  }
}

.haloNav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  /* Grid places this in the centered middle column; no flex-grow needed. */
  justify-self: center;
  min-width: 0;
}

.haloNav__link {
  position: relative;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 450;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f7680;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 140ms ease, background 140ms ease;
}

.haloNav__link:hover {
  color: #111827;
  background: rgba(255, 255, 255, 0.55);
}

.haloNav__link.is-active {
  color: #111827;
  font-weight: 600;
}

.haloNav__item {
  position: relative;
}

.haloNav__trigger {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 450;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f7680;
  padding: 6px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color 140ms ease, background 140ms ease;
}

.haloNav__trigger:hover,
.haloNav__item.is-open .haloNav__trigger {
  color: #111827;
  background: rgba(255, 255, 255, 0.55);
}

.haloNav__chevron {
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.haloNav__item.is-open .haloNav__chevron {
  transform: rotate(180deg);
  opacity: 0.85;
}

/* ============================================================================
   Mega-menu panels — full-width below the header. Highview-style:
   icon card grid, eyebrow + view-all header, hover-open with grace timer.
   ============================================================================ */
.haloNav__panels {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 49;
  pointer-events: none;
}

.haloNav__dropdown {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
  padding: 28px 0 32px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.haloNav__dropdown[hidden] {
  display: none;
}

.haloNav__dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.haloNav__ddHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.haloNav__ddEyebrow {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue-deep);
}

.haloNav__ddViewAll {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue-deep);
  text-decoration: none;
  transition: color 0.18s ease, gap 0.18s ease;
}

.haloNav__ddViewAll:hover {
  color: var(--text);
  gap: 9px;
}

.haloNav__ddGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.haloNav__ddGrid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Card variant — used by the new mega-menus. Icon + title + desc per cell. */
.haloNav__ddGrid--cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

@media (max-width: 1024px) {
  .haloNav__ddGrid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.haloNav__ddItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.haloNav__ddItem:hover {
  background: rgba(120, 227, 253, 0.06);
  border-color: rgba(120, 227, 253, 0.32);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.haloNav__ddIcon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-blue-soft);
  color: var(--accent-blue-deep);
  transition: background 0.18s ease, color 0.18s ease;
}

.haloNav__ddItem:hover .haloNav__ddIcon {
  background: var(--accent-blue);
  color: var(--text);
}

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

.haloNav__ddTitle {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  transition: color 0.18s ease;
}

.haloNav__ddItem:hover .haloNav__ddTitle {
  color: var(--accent-blue-deep);
}

.haloNav__ddDesc {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .haloNav__dropdown,
  .haloNav__ddItem,
  .haloNav__ddIcon,
  .haloNav__ddViewAll {
    transition: none !important;
  }
}

.haloNav__right {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  flex-shrink: 0;
  justify-self: end;
}

.haloNav__right .btn--small {
  font-size: 13px;
  padding-inline: 18px;
}



@media (max-width: 1100px) {
  .haloNav__ddGrid--3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  /* Logo left, hamburger right — nav + CTAs are display:none.
     Override the desktop 3-column grid (1fr auto 1fr) with a 2-column
     grid so the burger pins to the right edge instead of landing in
     the middle "auto" column. */
  .haloNav {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .haloNav__brand.logo {
    margin-right: 0;
    justify-self: start;
  }

  .haloNav__burger.menu {
    flex-shrink: 0;
    justify-self: end;
  }

  .haloNav__links,
  .haloNav__right {
    display: none;
  }

  .haloNav__dropdown--wide {
    min-width: 280px;
  }

  .haloNav__ddGrid--3 {
    grid-template-columns: 1fr;
  }
}


/* ─── IG Verified Badge ─── */
.ig-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #1877f2;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
  margin-left: 4px;
}

/* ─── Trust / Community Memberships Section ─── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  margin-top: var(--marketing-section-head-gap);
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  padding: var(--space-20);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.trust-card:hover,
.trust-card:focus-visible {
  border-color: rgba(120, 227, 253, 0.45);
  box-shadow: 0 4px 20px rgba(120, 227, 253, 0.1);
}

.trust-card__logo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 12px;
}

.trust-card__seal {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card__body {
  flex: 1;
  min-width: 0;
}

.trust-card__name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.trust-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.trust-card__cta {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Halo — fullscreen mobile nav + embedded social shelf (layout pattern only;
   colors use Halo marketing tokens: --surface, --bg-alt, --text, --accent-*)
   ═══════════════════════════════════════════════════════════════════════════ */

body.halo-mobnav-open .scroll-progress,
body.halo-mobnav-open .back-to-top,
body.halo-mobnav-open .floating-dock {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.halo-mobnav {
  /* Stays in the DOM at all times so the entrance/exit can actually animate
     (display:none can't transition). visibility + pointer-events keep it
     inert + out of the tab order while closed. */
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 10005;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
  flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-alt) 100%);
  color: var(--text);
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 -12px 60px rgba(15, 23, 42, 0.06);

  /* Closed state: slid right + faded + non-interactive. */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition:
    transform 0.42s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.32s ease,
    visibility 0s linear 0.42s;
}

.halo-mobnav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition:
    transform 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.28s ease,
    visibility 0s linear 0s;
}

/* Stagger the left-column entries in from the right. Delays only apply while
   the drawer is open, so on close they snap to 0 and exit together. */
.halo-mobnav .halo-mobnav__col--links > * {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.42s ease,
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.halo-mobnav.is-open .halo-mobnav__col--links > * {
  opacity: 1;
  transform: translateX(0);
}

.halo-mobnav.is-open .halo-mobnav__col--links > *:nth-child(1) { transition-delay: 0.16s; }
.halo-mobnav.is-open .halo-mobnav__col--links > *:nth-child(2) { transition-delay: 0.20s; }
.halo-mobnav.is-open .halo-mobnav__col--links > *:nth-child(3) { transition-delay: 0.24s; }
.halo-mobnav.is-open .halo-mobnav__col--links > *:nth-child(4) { transition-delay: 0.28s; }
.halo-mobnav.is-open .halo-mobnav__col--links > *:nth-child(5) { transition-delay: 0.32s; }
.halo-mobnav.is-open .halo-mobnav__col--links > *:nth-child(6) { transition-delay: 0.36s; }
.halo-mobnav.is-open .halo-mobnav__col--links > *:nth-child(7) { transition-delay: 0.40s; }
.halo-mobnav.is-open .halo-mobnav__col--links > *:nth-child(8) { transition-delay: 0.44s; }

/* Right aside column lifts in slightly later (subtle parallax feel). */
.halo-mobnav .halo-mobnav__col--aside {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.42s ease 0.22s,
    transform 0.46s cubic-bezier(0.19, 1, 0.22, 1) 0.22s;
}

.halo-mobnav.is-open .halo-mobnav__col--aside {
  opacity: 1;
  transform: translateY(0);
}

/* Close button gets a soft pop-in. */
.halo-mobnav .halo-mobnav__close {
  transform: scale(0.85);
  opacity: 0;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s,
    opacity 0.3s ease 0.18s;
}

.halo-mobnav.is-open .halo-mobnav__close {
  transform: scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .halo-mobnav,
  .halo-mobnav .halo-mobnav__col--links > *,
  .halo-mobnav .halo-mobnav__col--aside,
  .halo-mobnav .halo-mobnav__close {
    transition: opacity 0.15s ease, visibility 0s linear !important;
    transform: none !important;
  }
  .halo-mobnav { transform: none !important; }
}

.halo-mobnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 22px 16px;
  border-bottom: 1px solid var(--border-soft);
  flex-shrink: 0;
  background: var(--surface);
}

.halo-mobnav__brand-name {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.halo-mobnav__brand-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.halo-mobnav__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface-muted);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.halo-mobnav__close:hover {
  background: var(--accent-blue-soft);
  border-color: rgba(120, 227, 253, 0.44);
  color: var(--accent-blue-deep);
}

.halo-mobnav__close:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.halo-mobnav__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.halo-mobnav__col--links {
  padding: 22px 22px 20px;
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
}

.halo-mobnav__tagline {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0 0 18px;
}

.halo-mobnav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  text-decoration: none;
  transition: padding-left 0.15s ease;
}

.halo-mobnav__item:last-of-type {
  border-bottom: none;
}

.halo-mobnav__item:hover {
  padding-left: 4px;
}

.halo-mobnav__item-text {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.05;
}

.halo-mobnav__item-arr {
  font-size: 15px;
  color: var(--text-muted);
  transform: rotate(45deg);
  display: inline-block;
  transition: color 0.15s ease, transform 0.15s ease;
}

/* Mobile drawer accordion groups (Services / Company). */
.halo-mobnav__group {
  border-bottom: 1px solid var(--border-soft);
}

.halo-mobnav__group:last-of-type {
  border-bottom: none;
}

.halo-mobnav__group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: padding-left 0.15s ease;
}

.halo-mobnav__group-toggle:hover {
  padding-left: 4px;
}

.halo-mobnav__group-toggle:hover .halo-mobnav__item-text {
  color: var(--accent-blue-deep);
}

.halo-mobnav__group-chevron {
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.15s ease;
}

.halo-mobnav__group-toggle[aria-expanded="true"] .halo-mobnav__group-chevron {
  transform: rotate(180deg);
  color: var(--accent-blue-deep);
}

.halo-mobnav__group-panel {
  display: flex;
  flex-direction: column;
  padding: 4px 0 12px 12px;
  border-left: 2px solid var(--accent-blue-soft);
  margin: 0 0 8px 4px;
}

.halo-mobnav__group-panel[hidden] {
  display: none;
}

.halo-mobnav__sub {
  display: block;
  padding: 8px 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.halo-mobnav__sub:hover {
  color: var(--accent-blue-deep);
  padding-left: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .halo-mobnav__group-toggle,
  .halo-mobnav__group-chevron,
  .halo-mobnav__sub {
    transition: none;
  }
}

.halo-mobnav__item:hover .halo-mobnav__item-text {
  color: var(--accent-blue-deep);
}

.halo-mobnav__item:hover .halo-mobnav__item-arr {
  color: var(--accent-blue);
  transform: rotate(0deg);
}

.halo-mobnav__col--aside {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.halo-mobnav__lbl {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.halo-mobnav__quick {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.halo-mobnav__quick-link {
  display: block;
  text-decoration: none;
  padding: 8px 11px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.halo-mobnav__quick-link:hover {
  background: var(--accent-blue-soft);
  border-color: rgba(120, 227, 253, 0.35);
}

.halo-mobnav__quick-txt {
  font-size: 11px;
  font-weight: 550;
  color: var(--text-secondary);
}

.halo-mobnav__quick-link:hover .halo-mobnav__quick-txt {
  color: var(--text);
}

.halo-mobnav__social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.halo-mobnav__soc {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 8px 9px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-size: 11px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.halo-mobnav__soc:hover {
  background: var(--accent-blue-soft);
  border-color: rgba(120, 227, 253, 0.35);
  color: var(--text);
}

.halo-mobnav__footer {
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px 12px;
  flex-shrink: 0;
  background: var(--surface);
}

.halo-mobnav__phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
}

.halo-mobnav__phone:hover {
  color: var(--accent-blue-deep);
}

.halo-mobnav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  /* Same intent as .btn--primary on marketing */
  background: var(--accent-blue);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(120, 227, 253, 0.44);
  box-shadow: 0 10px 28px rgba(120, 227, 253, 0.35);
  transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.halo-mobnav__cta:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(120, 227, 253, 0.42);
}

.halo-mobnav__ghost {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.halo-mobnav__ghost:hover {
  color: var(--accent-blue-deep);
}

@media (max-width: 520px) {
  .halo-mobnav__body {
    grid-template-columns: 1fr;
  }

  .halo-mobnav__col--links {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 20px;
  }

  .halo-mobnav__item-text {
    font-size: clamp(17px, 5.2vw, 21px);
  }

  .halo-mobnav__footer {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .halo-mobnav__phone {
    justify-self: center;
  }

  .halo-mobnav__cta {
    width: 100%;
    box-sizing: border-box;
  }

  .halo-mobnav__ghost {
    justify-self: center;
  }
}

/* ── Social shelf: same band language as .section--alt / cards (no imported dark-slate band) ── */
.halo-social-premium {
  background: var(--bg-alt);
  color: var(--text);
}

.halo-social-premium .section__head {
  margin-bottom: var(--marketing-section-head-gap);
}

.halo-social-premium .eyebrow,
.halo-social-premium__eyebrow {
  color: var(--text-muted);
}

.halo-social-premium .h2,
.halo-social-premium__title {
  color: var(--text);
}

.halo-social-premium__lead,
.halo-social-premium .body-lg.text-secondary {
  color: var(--text-secondary) !important;
}

.halo-h-scroll.halo-h-scroll--embeds .halo-embeds-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.halo-embed-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
  transition: transform 0.32s var(--easing), box-shadow 0.32s ease, border-color 0.32s ease;
}

.halo-embed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border-color: rgba(120, 227, 253, 0.28);
}

.halo-embed-card__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface-muted);
}

.halo-embed-card__hd-l {
  display: flex;
  align-items: center;
  gap: 10px;
}

.halo-plat {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.halo-plat--fb {
  background: #1877f2;
}

.halo-plat--ig {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.halo-plat--tt {
  background: #010101;
}

.halo-plat--li {
  background: #0a66c2;
}

.halo-plat-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.halo-plat-handle {
  font-size: 11px;
  color: var(--text-muted);
}

.halo-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 2px rgba(52, 163, 160, 0.25);
}

.halo-embed-card__bd {
  flex: 1;
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.halo-embed-card__bd--stack {
  padding: 18px;
  background: var(--surface-muted);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.halo-fb-wrap {
  position: absolute;
  inset: 0;
  background: #fff;
}

.halo-fb-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.halo-tt-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.halo-tt-wrap .tiktok-embed {
  margin: 4px auto 0 !important;
}

.halo-ig-static {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fafafa 0%, #eaeaea 100%);
}

.halo-ig-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  gap: 8px;
  color: #262626;
  height: 100%;
}

.halo-ig-av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.halo-ig-title {
  font-weight: 700;
  font-size: 13px;
}

.halo-ig-sub {
  font-size: 12px;
  color: #737373;
  text-align: center;
  max-width: 200px;
  line-height: 1.4;
}

.halo-ig-mock {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  max-width: 220px;
  flex: 1;
}

.halo-ig-cell img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.halo-ig-btn {
  margin-top: auto;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
}

.halo-li-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.halo-li-bullets {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.halo-embed-ft {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue-deep);
  background: var(--surface-muted);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.halo-embed-ft:hover {
  background: var(--accent-blue-soft);
  color: var(--text);
}

@media (max-width: 1100px) {
  .halo-h-scroll.halo-h-scroll--embeds .halo-embeds-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .halo-embed-card {
    height: 440px;
  }
}

@media (max-width: 820px) {
  .halo-social-premium .halo-h-scroll--embeds {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--pad-x);
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    padding-inline: var(--pad-x);
    padding-bottom: 14px;
  }

  .halo-social-premium .halo-h-scroll--embeds .halo-embeds-grid {
    display: flex;
    width: max-content;
    gap: 14px;
  }

  .halo-social-premium .halo-embed-card {
    flex: 0 0 min(302px, 88vw);
    scroll-snap-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .halo-mobnav__item,
  .halo-mobnav__close,
  .halo-mobnav__cta,
  .halo-embed-card {
    transition: none !important;
  }

  .halo-embed-card:hover {
    transform: none;
  }
}

/* ============================================================
   CURSOR GLOW — service cards site-wide
   ============================================================ */
body.halo-marketing .service-card {
  position: relative;
  overflow: hidden;
}

body.halo-marketing .service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 180px at var(--mx, 50%) var(--my, 50%),
    rgba(120, 227, 253, 0.18) 0%,
    rgba(120, 227, 253, 0.06) 40%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease-out;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

body.halo-marketing .service-card:hover::before {
  opacity: 1;
}

body.halo-marketing .service-card > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   RECENT WORK CAROUSEL (rw-*)
   ============================================================ */
body.halo-marketing .rw-section {
  position: relative;
  padding: 40px 0;
  overflow: hidden;
  background: var(--bg);
}

/* Whisper-glow ambient blobs */
body.halo-marketing .rw-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
    rgba(120, 227, 253, 0.20) 0%,
    rgba(120, 227, 253, 0.05) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .rw-section::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(237, 217, 196, 0.40) 0%,
    rgba(237, 217, 196, 0.12) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .rw-section .container {
  position: relative;
  z-index: 1;
}

/* --- Section header --- */
body.halo-marketing .rw-header {
  margin-bottom: 52px;
  max-width: 720px;
}

body.halo-marketing .rw-headline {
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px !important;
}

body.halo-marketing .rw-headline em {
  font-style: normal;
}

body.halo-marketing .rw-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 560px;
}

/* --- Carousel control bar --- */
body.halo-marketing .rw-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

body.halo-marketing .rw-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Flip counter */
body.halo-marketing .rw-counter {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 16px;
  overflow: hidden;
  color: var(--text);
  font-weight: 500;
}

body.halo-marketing .rw-counter-digit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.3s ease-out;
}

body.halo-marketing .rw-counter-digit.exit {
  transform: translateY(-100%);
  opacity: 0;
}

body.halo-marketing .rw-counter-digit.enter {
  transform: translateY(100%);
  opacity: 0;
}

body.halo-marketing .rw-counter-digit.enter.active {
  transform: translateY(0);
  opacity: 1;
}

body.halo-marketing .rw-total {
  color: var(--text);
  font-weight: 500;
}

body.halo-marketing .rw-nav {
  display: flex;
  gap: 8px;
}

body.halo-marketing .rw-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-blue);
  background: var(--accent-blue);
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--easing);
  padding: 0;
  box-shadow: 0 4px 16px rgba(120, 227, 253, 0.25);
}

body.halo-marketing .rw-nav-btn:hover:not(:disabled) {
  background: #0f172a;
  color: var(--accent-blue);
  border-color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

body.halo-marketing .rw-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* --- Carousel wrapper (bleeds right) --- */
body.halo-marketing .rw-wrapper {
  position: relative;
  margin-right: calc(-1 * max(var(--pad-x), (100vw - var(--container)) / 2 + var(--pad-x)));
}

body.halo-marketing .rw-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  padding-right: max(var(--pad-x), (100vw - var(--container)) / 2 + var(--pad-x));
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

body.halo-marketing .rw-track::-webkit-scrollbar { display: none; }

body.halo-marketing .rw-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

body.halo-marketing .rw-track.is-dragging .rw-card {
  pointer-events: none;
}

/* Fade-out bleed edge */
body.halo-marketing .rw-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 8px;
  width: 200px;
  background: linear-gradient(to right, transparent, var(--bg) 85%);
  pointer-events: none;
  z-index: 2;
}

/* --- Cards --- */
body.halo-marketing .rw-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 340px;
  max-width: 420px;
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(120, 227, 253, 0.38);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--easing),
              box-shadow 0.4s var(--easing),
              border-color 0.4s var(--easing),
              opacity 0.7s var(--easing);
  opacity: 0;
  transform: translateY(30px);
}

body.halo-marketing .rw-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .rw-card:nth-child(1).in-view { transition-delay: 0.2s; }
body.halo-marketing .rw-card:nth-child(2).in-view { transition-delay: 0.28s; }
body.halo-marketing .rw-card:nth-child(3).in-view { transition-delay: 0.36s; }
body.halo-marketing .rw-card:nth-child(4).in-view { transition-delay: 0.44s; }
body.halo-marketing .rw-card:nth-child(n+5).in-view { transition-delay: 0.5s; }

body.halo-marketing .rw-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-soft);
  border-color: rgba(120, 227, 253, 0.65);
}

/* --- Card image --- */
body.halo-marketing .rw-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(120, 227, 253, 0.10) 0%,
    rgba(57, 166, 232, 0.06) 100%),
    linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  flex-shrink: 0;
}

/* Cursor-following glow on card image */
body.halo-marketing .rw-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 220px at var(--mx, 50%) var(--my, 50%),
    rgba(120, 227, 253, 0.22) 0%,
    rgba(120, 227, 253, 0.08) 30%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease-out;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

body.halo-marketing .rw-card:hover .rw-card-image::before {
  opacity: 1;
}

body.halo-marketing .rw-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
  display: block;
}

body.halo-marketing .rw-card:hover .rw-card-image img {
  transform: scale(1.03);
}

/* Placeholder inner text for cards without images */
body.halo-marketing .rw-card-image--placeholder-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Tag pill */
body.halo-marketing .rw-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: lowercase;
  z-index: 3;
  transition: padding 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease-out;
}

body.halo-marketing .rw-card:hover .rw-card-tag {
  padding: 7px 16px;
  background: rgba(255, 255, 255, 1);
}

/* Arrow badge (slide-through swap on hover) */
body.halo-marketing .rw-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}

body.halo-marketing .rw-card-arrow svg {
  width: 15px;
  height: 15px;
  position: absolute;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1),
              opacity 0.3s ease-out;
}

body.halo-marketing .rw-arrow-1 { transform: translate(0, 0); }
body.halo-marketing .rw-arrow-2 { transform: translate(-22px, 22px); }

body.halo-marketing .rw-card:hover .rw-card-arrow {
  background: var(--accent-blue);
  color: var(--text);
}

body.halo-marketing .rw-card:hover .rw-arrow-1 {
  transform: translate(22px, -22px);
}

body.halo-marketing .rw-card:hover .rw-arrow-2 {
  transform: translate(0, 0);
}

/* --- Card body --- */
body.halo-marketing .rw-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

body.halo-marketing .rw-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}

body.halo-marketing .rw-card-outcome {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  flex-grow: 1;
  margin: 0;
}

body.halo-marketing .rw-card-stack {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px dashed var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

body.halo-marketing .rw-card-stack span {
  color: var(--accent-blue-deep);
  margin: 0 6px;
}

/* --- Progress bar with bounce --- */
body.halo-marketing .rw-progress {
  margin-top: 32px;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
  max-width: 200px;
  margin-left: 0;
  margin-right: auto;
}

body.halo-marketing .rw-progress-bar {
  height: 100%;
  background: var(--accent-blue);
  border-radius: 2px;
  width: 30%;
  transform-origin: left center;
  transition: width 0.2s ease-out;
}

body.halo-marketing .rw-progress-bar.bounce-end {
  animation: rwBounceEnd 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.halo-marketing .rw-progress-bar.bounce-start {
  animation: rwBounceStart 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes rwBounceEnd {
  0%   { transform: scaleX(1); }
  50%  { transform: scaleX(1.04); }
  100% { transform: scaleX(1); }
}

@keyframes rwBounceStart {
  0%   { transform: scaleX(1); }
  50%  { transform: scaleX(0.96); }
  100% { transform: scaleX(1); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  body.halo-marketing .rw-wrapper {
    margin-right: calc(-1 * var(--pad-x));
  }
}

@media (max-width: 768px) {
  body.halo-marketing .rw-section {
    padding: 24px 0;
  }

  body.halo-marketing .rw-header {
    margin-bottom: 36px;
  }

  body.halo-marketing .rw-headline {
    font-size: 32px !important;
  }

  body.halo-marketing .rw-sub {
    font-size: 15px;
  }

  body.halo-marketing .rw-controls {
    margin-bottom: 20px;
  }

  body.halo-marketing .rw-nav {
    display: none;
  }

  body.halo-marketing .rw-wrapper {
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
  }

  body.halo-marketing .rw-wrapper::after {
    display: none;
  }

  body.halo-marketing .rw-track {
    padding: 0 var(--pad-x);
    scroll-padding: 0 var(--pad-x);
    gap: 16px;
  }

  body.halo-marketing .rw-card {
    flex: 0 0 85%;
    min-width: unset;
    max-width: 360px;
  }

  body.halo-marketing .rw-card-body {
    padding: 18px 18px 22px;
  }

  body.halo-marketing .rw-card-title {
    font-size: 18px;
  }

  body.halo-marketing .rw-progress {
    margin: 24px var(--pad-x) 0;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.halo-marketing .rw-card,
  body.halo-marketing .rw-card-image img,
  body.halo-marketing .rw-card-tag,
  body.halo-marketing .rw-card-arrow svg,
  body.halo-marketing .rw-counter-digit,
  body.halo-marketing .rw-nav-btn,
  body.halo-marketing .service-card::before,
  body.halo-marketing .rw-card-image::before {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================
   NEW HERO v2 — two-column with featured card
   ============================================ */
body.halo-marketing .hero-v2 {
  position: relative;
  background:
    radial-gradient(circle at 15% 0%, rgba(120, 235, 253, 0.35) 0, transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(250, 216, 180, 0.4) 0, transparent 55%),
    var(--bg);
  overflow: hidden;
  padding: 40px 0 48px;
}

body.halo-marketing .hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

/* LEFT column */
body.halo-marketing .hero-v2-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.halo-marketing .hero-v2-eyebrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0;
}

body.halo-marketing .hero-v2-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

body.halo-marketing .hero-v2-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 20px;
}

body.halo-marketing .hero-v2-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Hero visit counter — inline plain text inside the .hero-v2-eyebrow,
   appearing as " · 1,234 visits" appended to "Lake County, Illinois".
   No chip background, no border, no pulse — just inherits the eyebrow's
   text styling so it reads as part of the same line. */
body.halo-marketing .hero-visitors {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  opacity: 0;
  transition: opacity 0.35s var(--easing, cubic-bezier(0.19,1,0.22,1));
}
body.halo-marketing .hero-visitors.is-loaded { opacity: 1; }
body.halo-marketing .hero-visitors-num {
  font-weight: 600;
  color: inherit;
  font-variant-numeric: tabular-nums;
}
body.halo-marketing .hero-visitors-label,
body.halo-marketing .hero-visitors-sep {
  color: inherit;
}

body.halo-marketing .hero-v2-quote {
  position: relative;
  padding-left: 18px;
  max-width: 480px;
  border-left: 2px solid rgba(120, 227, 253, 0.5);
}

body.halo-marketing .hero-v2-quote blockquote {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 8px;
}

body.halo-marketing .hero-v2-quote cite {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  font-style: normal;
}

body.halo-marketing .hero-v2-quote cite .quote-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

/* RIGHT column */
body.halo-marketing .hero-v2-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* Featured card */
body.halo-marketing .hero-v2-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(120, 227, 253, 0.38);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--easing),
              box-shadow 0.4s var(--easing),
              border-color 0.4s var(--easing);
}

body.halo-marketing .hero-v2-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(120, 227, 253, 0.65);
}

body.halo-marketing .hero-v2-card:hover .hv2-card-arrow { background: var(--accent-blue); }
body.halo-marketing .hero-v2-card:hover .hv2-arrow-1 { transform: translate(22px, -22px); }
body.halo-marketing .hero-v2-card:hover .hv2-arrow-2 { transform: translate(0, 0); }
body.halo-marketing .hero-v2-card:hover .hv2-card-tag {
  transform: translateY(-1px);
  /* Opaque hover = .chip--select:hover on light surface */
  border-color: #5cc8e4;
  background: #dff8fd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
body.halo-marketing .hero-v2-card:hover .hv2-card-image img { transform: scale(1.02); }

/* Card image */
body.halo-marketing .hv2-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
}

body.halo-marketing .hv2-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 260px at var(--hv2-mx, 50%) var(--hv2-my, 50%),
    rgba(120,227,253,0.22) 0%,
    rgba(120,227,253,0.10) 30%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease-out;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}

body.halo-marketing .hero-v2-card:hover .hv2-card-image::before { opacity: 1; }

body.halo-marketing .hv2-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing), opacity 0.4s var(--easing);
}

body.halo-marketing .hv2-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(120,227,253,0.10) 0%, rgba(57,166,232,0.06) 100%),
              linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  color: rgba(255,255,255,0.4);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.halo-marketing .hv2-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /*
   * Same hues as .chip--select, but fully opaque: semi-transparent fills read as
   * "frosted glass" on top of the portfolio screenshot; on the form they sit on flat cream.
   */
  border: 1px solid #7dd4eb;
  background: #e8fbfd;
  color: #0b6fa4;
  border-radius: 999px;
  padding: 11px 15px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
  z-index: 4;
  transform: translateY(0);
  isolation: isolate;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.halo-marketing .hv2-card-tag-star {
  display: inline-flex;
  flex-shrink: 0;
  color: #fbbf24;
}

body.halo-marketing .hv2-card-tag-star svg {
  display: block;
}

body.halo-marketing .hv2-card-counter {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 3;
}

body.halo-marketing .hv2-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
  transition: background 0.3s ease-out;
}

body.halo-marketing .hv2-card-arrow svg {
  width: 15px;
  height: 15px;
  position: absolute;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

body.halo-marketing .hv2-arrow-1 { transform: translate(0, 0); }
body.halo-marketing .hv2-arrow-2 { transform: translate(-22px, 22px); }

/* Card body */
body.halo-marketing .hv2-card-body {
  padding: 14px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.halo-marketing .hv2-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
}

body.halo-marketing .hv2-card-outcome {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary);
}

body.halo-marketing .hv2-card-stack {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: 1px dashed var(--border-soft);
}

body.halo-marketing .hv2-card-stack span {
  color: var(--accent-blue-deep);
  margin: 0 6px;
}

/* Swap crossfade — applied to every piece of dynamic content INCLUDING the
   image. Transition is baked into the base state so the fade animates in
   BOTH directions (class added = fade out, class removed = fade in). */
body.halo-marketing .hero-v2-card .hv2-card-body > *,
body.halo-marketing .hero-v2-card .hv2-card-tag,
body.halo-marketing .hero-v2-card #hv2-img {
  transition: opacity 0.36s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

body.halo-marketing .hero-v2-card.hv2-swapping .hv2-card-body > *,
body.halo-marketing .hero-v2-card.hv2-swapping .hv2-card-tag {
  opacity: 0;
  transform: translateY(6px);
}

/* Image fades + slightly scales — gives a "settling in" feel rather than a
   harsh swap. */
body.halo-marketing .hero-v2-card #hv2-img {
  transform-origin: center;
}
body.halo-marketing .hero-v2-card.hv2-swapping #hv2-img {
  opacity: 0;
  transform: scale(1.015);
}

/* Thumbnail strip */
body.halo-marketing .hv2-thumb-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}

body.halo-marketing .hv2-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
  transition: all 0.3s var(--easing);
  padding: 0;
}

body.halo-marketing .hv2-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s var(--easing);
  pointer-events: none;
}

body.halo-marketing .hv2-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.halo-marketing .hv2-thumb-label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

body.halo-marketing .hv2-thumb:hover {
  border-color: rgba(120,227,253,0.5);
  transform: translateY(-2px);
}

body.halo-marketing .hv2-thumb:hover::after { background: rgba(0,0,0,0.2); }

body.halo-marketing .hv2-thumb.hv2-active {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(120,227,253,0.25);
}

body.halo-marketing .hv2-thumb.hv2-active::after { background: rgba(0,0,0,0.15); }

/* Responsive */
@media (max-width: 1024px) {
  body.halo-marketing .hero-v2-grid { gap: 40px; }
}

@media (max-width: 900px) {
  body.halo-marketing .hero-v2-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body.halo-marketing .hero-v2 {
    padding: 32px 0 36px;
  }

  /* Flatten the two columns so we can interleave their children. The
     featured card (from .hero-v2-right) slots in right after the headline
     instead of being pushed to the bottom of the hero on mobile. */
  body.halo-marketing .hero-v2-left,
  body.halo-marketing .hero-v2-right {
    display: contents;
  }
  body.halo-marketing .hero-v2-eyebrow   { order: 1; }
  body.halo-marketing .hero-v2-headline  { order: 2; }
  body.halo-marketing .hero-v2-quote     { order: 3; }
  body.halo-marketing .hero-v2-card      { order: 4; margin: 8px 0 4px; }
  body.halo-marketing .hero-v2-sub       { order: 5; }
  body.halo-marketing .hero-v2-ctas      { order: 6; }
  /* The thumb-strip sits alongside the card on the right column. Keep it
     directly under the card on mobile. */
  body.halo-marketing .hv2-thumb-strip   { order: 4; margin-top: -4px; }

  /* Restyle the quote for its new top-of-hero position — compact so it
     reads as a sub-tagline under the H1 instead of a footer block. */
  body.halo-marketing .hero-v2-quote {
    padding: 8px 0 8px 12px;
    border-left-width: 2px;
    margin: 0;
    max-width: none;
  }
  body.halo-marketing .hero-v2-quote blockquote {
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 4px;
  }
  body.halo-marketing .hero-v2-quote figcaption {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  body.halo-marketing .hero-v2 { padding: 28px 0 32px; }
  body.halo-marketing .hero-v2-headline { font-size: 38px; }
  body.halo-marketing .hero-v2-sub { font-size: 15px; }
  body.halo-marketing .hv2-card-body { padding: 12px 16px 14px; }
  body.halo-marketing .hv2-card-title { font-size: 20px; }
  body.halo-marketing .hv2-thumb-strip { gap: 8px; }
  body.halo-marketing .hv2-thumb-label { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  body.halo-marketing .hero-v2-card,
  body.halo-marketing .hv2-thumb,
  body.halo-marketing .hv2-card-image img { transition-duration: 0.01ms !important; }

  body.halo-marketing .process-v2-intro,
  body.halo-marketing .process-v2-step,
  body.halo-marketing .process-v2-soft-cta {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   PROCESS v2 — timeline (homepage)
   Cyan + peach ambiance matches hero / recent work
   ============================================ */
body.halo-marketing .process-v2 {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(120, 235, 253, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 92% 92%, rgba(250, 216, 180, 0.36) 0%, transparent 52%),
    var(--bg-alt);
}

body.halo-marketing .process-v2::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(120, 227, 253, 0.22) 0%,
    rgba(120, 227, 253, 0.05) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .process-v2::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(250, 216, 180, 0.42) 0%,
    rgba(250, 216, 180, 0.1) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .process-v2 .container {
  position: relative;
  z-index: 1;
}

body.halo-marketing .process-v2-head {
  max-width: 720px;
  margin: 0 0 var(--marketing-section-head-gap);
  text-align: left;
}

body.halo-marketing .process-v2-intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1), transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .process-v2-intro.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .process-v2-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

body.halo-marketing .process-v2-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 27px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(120, 227, 253, 0.55) 0%,
    rgba(120, 227, 253, 0.3) 50%,
    rgba(250, 216, 180, 0.55) 100%
  );
  z-index: 0;
}

body.halo-marketing .process-v2-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(180px, 260px) 1fr;
  column-gap: 28px;
  align-items: start;
  padding: 0 0 36px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--easing, cubic-bezier(0.19, 1, 0.22, 1)),
    transform 0.7s var(--easing, cubic-bezier(0.19, 1, 0.22, 1));
}

body.halo-marketing .process-v2-step:last-child {
  padding-bottom: 0;
}

body.halo-marketing .process-v2-step.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .process-v2-step:nth-child(1).in-view { transition-delay: 0.15s; }
body.halo-marketing .process-v2-step:nth-child(2).in-view { transition-delay: 0.25s; }
body.halo-marketing .process-v2-step:nth-child(3).in-view { transition-delay: 0.35s; }
body.halo-marketing .process-v2-step:nth-child(4).in-view { transition-delay: 0.45s; }

body.halo-marketing .process-v2-num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid rgba(120, 227, 253, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-blue-deep);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 0 0 6px var(--bg-alt);
}

body.halo-marketing .process-v2-step.is-active .process-v2-num {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--text);
  box-shadow:
    0 0 0 6px var(--bg-alt),
    0 0 0 12px rgba(120, 227, 253, 0.25),
    0 8px 24px rgba(120, 227, 253, 0.35);
  transform: scale(1.05);
}

body.halo-marketing .process-v2-left {
  padding-top: 4px;
}

body.halo-marketing .process-v2-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  flex-wrap: wrap;
}

body.halo-marketing .process-v2-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

body.halo-marketing .process-v2-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}

body.halo-marketing .process-v2-right {
  padding-top: 6px;
}

body.halo-marketing .process-v2-promise {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

body.halo-marketing .process-v2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

body.halo-marketing .process-v2-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(52, 219, 244, 0.08);
  border: 1px solid rgba(52, 219, 244, 0.22);
  color: #0b6fa4;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

body.halo-marketing .process-v2-chip:hover {
  background: rgba(52, 219, 244, 0.14);
  border-color: rgba(52, 219, 244, 0.36);
  transform: translateY(-1px);
}

body.halo-marketing .process-v2-ownership {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

body.halo-marketing .process-v2-ownership svg {
  width: 12px;
  height: 12px;
  margin-top: 2px;
  color: var(--accent-blue-deep);
  flex-shrink: 0;
}

body.halo-marketing .process-v2-soft-cta {
  margin-top: 24px;
  margin-left: 84px;
  max-width: 760px;
  padding: 28px 32px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(120, 227, 253, 0.38);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.55s,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.55s,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

body.halo-marketing .process-v2-soft-cta.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .process-v2-soft-cta:hover {
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: var(--shadow-soft);
}

body.halo-marketing .process-v2-soft-cta-text {
  flex: 1;
  min-width: 240px;
}

body.halo-marketing .process-v2-soft-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

body.halo-marketing .process-v2-soft-cta-sub {
  margin: 0;
}

body.halo-marketing .process-v2-soft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

body.halo-marketing .process-v2-soft-cta-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .process-v2-soft-cta-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  body.halo-marketing .process-v2-step {
    grid-template-columns: 56px 1fr;
    column-gap: 24px;
  }

  body.halo-marketing .process-v2-left {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 14px;
  }

  body.halo-marketing .process-v2-right {
    grid-column: 2;
    grid-row: 2;
    padding-top: 0;
  }

  body.halo-marketing .process-v2-num {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 768px) {
  body.halo-marketing .process-v2 {
    padding: 24px 0;
  }

  body.halo-marketing .process-v2-timeline::before {
    left: 21px;
  }

  body.halo-marketing .process-v2-step {
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
    padding-bottom: 32px;
  }

  body.halo-marketing .process-v2-num {
    width: 44px;
    height: 44px;
    font-size: 12px;
    box-shadow: 0 0 0 4px var(--bg-alt);
  }

  body.halo-marketing .process-v2-step.is-active .process-v2-num {
    box-shadow:
      0 0 0 4px var(--bg-alt),
      0 0 0 8px rgba(120, 227, 253, 0.25),
      0 6px 18px rgba(120, 227, 253, 0.35);
  }

  body.halo-marketing .process-v2-left {
    margin-bottom: 10px;
  }

  body.halo-marketing .process-v2-title {
    font-size: 22px;
  }

  body.halo-marketing .process-v2-promise {
    font-size: 14.5px;
    margin-bottom: 12px;
  }

  body.halo-marketing .process-v2-soft-cta {
    margin-left: 60px;
    padding: 22px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  body.halo-marketing .process-v2-soft-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body.halo-marketing .process-v2-soft-cta {
    margin-left: 0;
  }
}

/* ============================================
   REVIEWS v2 — featured + grid (homepage)
   Cyan / peach ambience matches hero & process
   ============================================ */
body.halo-marketing .reviews-v2 {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background:
    radial-gradient(circle at 82% -8%, rgba(120, 235, 253, 0.24) 0%, transparent 54%),
    radial-gradient(circle at 14% 100%, rgba(120, 227, 253, 0.26) 0%, transparent 58%),
    radial-gradient(circle at 14% 88%, rgba(250, 216, 180, 0.34) 0%, transparent 53%),
    var(--bg-alt);
}

body.halo-marketing .reviews-v2::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(120, 227, 253, 0.22) 0%,
    rgba(120, 227, 253, 0.05) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .reviews-v2::after {
  content: '';
  position: absolute;
  bottom: 52px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(120, 227, 253, 0.26) 0%,
    rgba(120, 227, 253, 0.06) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .reviews-v2 .container {
  position: relative;
  z-index: 1;
}

body.halo-marketing .reviews-v2-head {
  max-width: 720px;
  margin: 0 0 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.19, 1, 0.22, 1), transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .reviews-v2-head.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .reviews-v2-heading {
  margin-bottom: 16px;
}

body.halo-marketing .reviews-v2-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}

body.halo-marketing .reviews-v2-inline-star {
  width: 16px;
  height: 16px;
  color: var(--accent-blue);
  opacity: 0;
  transform: scale(0.66);
  transition: opacity 0.42s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.halo-marketing .reviews-v2-head.in-view .reviews-v2-inline-star {
  opacity: 1;
  transform: scale(1);
}

body.halo-marketing .reviews-v2-head.in-view .reviews-v2-inline-star:nth-child(1) { transition-delay: 0.08s; }
body.halo-marketing .reviews-v2-head.in-view .reviews-v2-inline-star:nth-child(2) { transition-delay: 0.14s; }
body.halo-marketing .reviews-v2-head.in-view .reviews-v2-inline-star:nth-child(3) { transition-delay: 0.2s; }
body.halo-marketing .reviews-v2-head.in-view .reviews-v2-inline-star:nth-child(4) { transition-delay: 0.26s; }
body.halo-marketing .reviews-v2-head.in-view .reviews-v2-inline-star:nth-child(5) { transition-delay: 0.32s; }

body.halo-marketing .reviews-v2-rating-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

body.halo-marketing .reviews-v2-loading {
  color: var(--text-secondary);
  font-style: italic;
}

/* Featured stack */
body.halo-marketing .reviews-v2-featured-wrap {
  position: relative;
  max-width: 880px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.19, 1, 0.22, 1) 0.12s,
    transform 0.65s cubic-bezier(0.19, 1, 0.22, 1) 0.12s;
}

body.halo-marketing .reviews-v2-featured-wrap.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .reviews-v2-stack-card {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(120, 227, 253, 0.38);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.55s ease;
  z-index: 0;
}

body.halo-marketing .reviews-v2-stack-card--1 {
  transform: translate(8px, 8px) rotate(0.5deg);
  opacity: 0.5;
}

body.halo-marketing .reviews-v2-stack-card--2 {
  transform: translate(16px, 16px) rotate(1deg);
  opacity: 0.25;
}

body.halo-marketing .reviews-v2-featured-wrap:hover .reviews-v2-stack-card--1 {
  transform: translate(14px, 12px) rotate(1.1deg);
  opacity: 0.58;
}

body.halo-marketing .reviews-v2-featured-wrap:hover .reviews-v2-stack-card--2 {
  transform: translate(26px, 22px) rotate(2deg);
  opacity: 0.32;
}

body.halo-marketing .reviews-v2-featured-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(120, 227, 253, 0.38);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 48px 48px 38px;
  background: var(--surface);
  transition: transform 0.38s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.38s ease, border-color 0.38s ease;
  overflow: hidden;
}

body.halo-marketing .reviews-v2-featured-wrap:hover .reviews-v2-featured-card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(120, 227, 253, 0.62);
}

body.halo-marketing .reviews-v2-quote-mark--featured {
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 104px;
  font-weight: 700;
  line-height: 1;
  color: rgba(120, 227, 253, 0.2);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

body.halo-marketing .reviews-v2-featured-quote {
  margin: 0;
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  min-height: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}

body.halo-marketing .reviews-v2-featured-quote p {
  margin: 0 0 10px;
}

body.halo-marketing .reviews-v2-featured-card:not(.is-quote-expanded) .reviews-v2-featured-quote p[data-reviews-featured-quote] {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

body.halo-marketing .reviews-v2-featured-card.is-quote-expanded .reviews-v2-featured-quote p[data-reviews-featured-quote] {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

body.halo-marketing .reviews-v2-quote-toggle {
  appearance: none;
  align-self: flex-start;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-blue);
  cursor: pointer;
  position: relative;
  z-index: 1;
}

body.halo-marketing .reviews-v2-quote-toggle:hover {
  color: var(--accent-blue-deep);
}

body.halo-marketing .reviews-v2-quote-toggle:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

body.halo-marketing .reviews-v2-featured-toggle {
  flex-shrink: 0;
  margin-bottom: 24px;
}

body.halo-marketing .reviews-v2-featured-attribution {
  margin-top: auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

body.halo-marketing .reviews-v2-featured-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.38s ease, opacity 0.38s ease;
}

body.halo-marketing .reviews-v2-featured-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.halo-marketing .reviews-v2-featured-wrap:hover .reviews-v2-featured-logo {
  filter: grayscale(0%);
  opacity: 1;
}

body.halo-marketing .reviews-v2-featured-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

body.halo-marketing .reviews-v2-featured-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

body.halo-marketing .reviews-v2-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 6px;
  border-radius: 999px;
  background: rgba(52, 219, 244, 0.1);
  border: 1px solid rgba(52, 219, 244, 0.25);
  color: #0b6fa4;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.halo-marketing .reviews-v2-featured-business {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Supporting grid label */
body.halo-marketing .reviews-v2-grid-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.58s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
    transform 0.58s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

body.halo-marketing .reviews-v2-grid-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  opacity: 0.42;
}

body.halo-marketing .reviews-v2-grid-label.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .reviews-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

body.halo-marketing .reviews-v2-grid .reviews-v2-card {
  height: 100%;
  min-height: 0;
}

body.halo-marketing .reviews-v2-wrapper {
  margin-bottom: var(--space-48);
}

body.halo-marketing .reviews-v2-card {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(120, 227, 253, 0.28);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

body.halo-marketing .reviews-v2-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .reviews-v2-grid .reviews-v2-card:nth-child(1).in-view { transition-delay: 0.1s; }
body.halo-marketing .reviews-v2-grid .reviews-v2-card:nth-child(2).in-view { transition-delay: 0.18s; }
body.halo-marketing .reviews-v2-grid .reviews-v2-card:nth-child(3).in-view { transition-delay: 0.26s; }
body.halo-marketing .reviews-v2-grid .reviews-v2-card:nth-child(4).in-view { transition-delay: 0.34s; }
body.halo-marketing .reviews-v2-grid .reviews-v2-card:nth-child(5).in-view { transition-delay: 0.4s; }
body.halo-marketing .reviews-v2-grid .reviews-v2-card:nth-child(6).in-view { transition-delay: 0.46s; }
body.halo-marketing .reviews-v2-grid .reviews-v2-card:nth-child(n+7).in-view { transition-delay: 0.52s; }

body.halo-marketing .reviews-v2-card:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 227, 253, 0.55);
  box-shadow: var(--shadow-soft);
}

body.halo-marketing .reviews-v2-quote-mark-small {
  position: absolute;
  top: 2px;
  left: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: rgba(120, 227, 253, 0.16);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

body.halo-marketing .reviews-v2-card-stars {
  display: flex;
  gap: 2px;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--accent-blue);
}

body.halo-marketing .reviews-v2-card-stars svg {
  width: 13px;
  height: 13px;
}

body.halo-marketing .reviews-v2-card-quote-grow {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body.halo-marketing .reviews-v2-card:not(.is-quote-expanded) .reviews-v2-card-quote {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

body.halo-marketing .reviews-v2-card.is-quote-expanded .reviews-v2-card-quote {
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
}

body.halo-marketing .reviews-v2-card-toggle {
  margin-top: 6px;
}

body.halo-marketing .reviews-v2-card-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

body.halo-marketing .reviews-v2-card-attrib {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

body.halo-marketing .reviews-v2-card-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  filter: grayscale(100%);
  opacity: 0.62;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

body.halo-marketing .reviews-v2-card-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.halo-marketing .reviews-v2-card:hover .reviews-v2-card-logo {
  filter: grayscale(0%);
  opacity: 1;
}

body.halo-marketing .reviews-v2-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

body.halo-marketing .reviews-v2-card-business {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

/* Trust row */
body.halo-marketing .reviews-v2-trust-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding-top: 28px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.65s cubic-bezier(0.19, 1, 0.22, 1) 0.3s,
    transform 0.65s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

body.halo-marketing .reviews-v2-trust-links.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .reviews-v2-trust-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(120, 227, 253, 0.38);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.halo-marketing .reviews-v2-trust-primary:hover {
  transform: translateY(-1px);
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: var(--shadow-soft);
}

body.halo-marketing .reviews-v2-trust-primary__g {
  width: 14px;
  height: 14px;
}

body.halo-marketing .reviews-v2-trust-arrow {
  width: 12px;
  height: 12px;
  color: var(--accent-blue);
  transition: transform 0.28s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .reviews-v2-trust-primary:hover .reviews-v2-trust-arrow {
  transform: translateX(3px);
}

body.halo-marketing .reviews-v2-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(0, 0, 0, 0.12);
}

body.halo-marketing .reviews-v2-trust-secondary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
}

body.halo-marketing .reviews-v2-trust-secondary:hover {
  color: var(--text);
}

body.halo-marketing .reviews-v2-mobile-meta {
  display: none;
}

body.halo-marketing .reviews-v2-progress {
  flex: 1;
  position: relative;
  /* Expand the hitbox vertically so the bar is actually clickable.
     The visual track is rendered by ::before to keep the bar slim. */
  height: 22px;
  display: flex;
  align-items: center;
  cursor: pointer;
  touch-action: none;
  outline: none;
}

body.halo-marketing .reviews-v2-progress::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  transition: height 0.16s ease, background 0.16s ease;
}

body.halo-marketing .reviews-v2-progress:hover::before,
body.halo-marketing .reviews-v2-progress.is-dragging::before,
body.halo-marketing .reviews-v2-progress:focus-visible::before {
  height: 5px;
  background: rgba(0, 0, 0, 0.10);
}

body.halo-marketing .reviews-v2-progress:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 4px;
  border-radius: 4px;
}

body.halo-marketing .reviews-v2-progress.is-dragging {
  cursor: grabbing;
}

body.halo-marketing .reviews-v2-progress-bar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  width: 20%;
  background: var(--accent-blue);
  border-radius: 3px;
  transform-origin: left center;
  transition: width 0.16s ease-out, height 0.16s ease;
  pointer-events: none;
}

body.halo-marketing .reviews-v2-progress:hover .reviews-v2-progress-bar,
body.halo-marketing .reviews-v2-progress.is-dragging .reviews-v2-progress-bar,
body.halo-marketing .reviews-v2-progress:focus-visible .reviews-v2-progress-bar {
  height: 5px;
}

@media (prefers-reduced-motion: reduce) {
  body.halo-marketing .reviews-v2-progress::before,
  body.halo-marketing .reviews-v2-progress-bar {
    transition: none;
  }
}

@media (max-width: 1024px) {
  body.halo-marketing .reviews-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body.halo-marketing .reviews-v2 {
    padding: 24px 0;
  }

  body.halo-marketing .reviews-v2-head {
    margin-bottom: 36px;
  }

  body.halo-marketing .reviews-v2-featured-card {
    padding: 32px 24px 28px;
  }

  body.halo-marketing .reviews-v2-quote-mark--featured {
    font-size: 72px;
    top: 4px;
    left: 14px;
  }

  body.halo-marketing .reviews-v2-stack-card--1 {
    transform: translate(5px, 5px) rotate(0.4deg);
  }

  body.halo-marketing .reviews-v2-stack-card--2 {
    transform: translate(10px, 10px) rotate(0.85deg);
  }

  body.halo-marketing .reviews-v2-featured-wrap:hover .reviews-v2-stack-card--1 {
    transform: translate(8px, 8px) rotate(1deg);
  }

  body.halo-marketing .reviews-v2-featured-wrap:hover .reviews-v2-stack-card--2 {
    transform: translate(14px, 14px) rotate(1.5deg);
  }

  body.halo-marketing .reviews-v2-featured-wrap {
    margin-bottom: 40px;
  }

  body.halo-marketing .reviews-v2-wrapper {
    position: relative;
    margin-left: calc(-1 * var(--pad-x));
    margin-right: calc(-1 * var(--pad-x));
    margin-bottom: var(--space-56);
  }

  body.halo-marketing .reviews-v2-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad-x);
    scrollbar-width: none;
    padding: 4px var(--pad-x) 12px;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    /* Smooth scrolling for click + keyboard. JS turns this off during active
       scrubber drags so cursor-follow stays 1:1 instant. */
    scroll-behavior: smooth;
  }

  @media (prefers-reduced-motion: reduce) {
    body.halo-marketing .reviews-v2-grid {
      scroll-behavior: auto;
    }
  }

  body.halo-marketing .reviews-v2-grid::-webkit-scrollbar {
    display: none;
  }

  body.halo-marketing .reviews-v2-card {
    flex: 0 0 min(320px, 85vw);
    scroll-snap-align: start;
  }

  body.halo-marketing .reviews-v2-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    background: linear-gradient(to right, transparent, var(--bg-alt) 88%);
    pointer-events: none;
    z-index: 2;
  }

  body.halo-marketing .reviews-v2-mobile-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px var(--pad-x) var(--space-20);
  }

  body.halo-marketing .reviews-v2-counter {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }

  body.halo-marketing .reviews-v2-counter #reviews-v2-current {
    color: var(--text);
    font-weight: 500;
  }

  body.halo-marketing .reviews-v2-trust-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body.halo-marketing .reviews-v2-trust-divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.halo-marketing .reviews-v2-head,
  body.halo-marketing .reviews-v2-featured-wrap,
  body.halo-marketing .reviews-v2-grid-label,
  body.halo-marketing .reviews-v2-trust-links,
  body.halo-marketing .reviews-v2-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.halo-marketing .reviews-v2-inline-star {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   STATS v2 — by-the-numbers (after testimonials)
   Ambience aligned with reviews-v2 Halo gradients
   ============================================ */

body.halo-marketing .stats-v2 {
  position: relative;
  overflow: hidden;
  padding: 40px 0 56px;
  /* Blobs weighted left cyan / right peach — mirrors values-v2 (right cyan / left peach) */
  background:
    radial-gradient(circle at 12% -6%, rgba(120, 235, 253, 0.2) 0%, transparent 52%),
    radial-gradient(circle at 92% 96%, rgba(250, 216, 180, 0.28) 0%, transparent 56%),
    var(--bg-alt);
}

body.halo-marketing .stats-v2::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(120, 227, 253, 0.18) 0%,
    rgba(120, 227, 253, 0.04) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .stats-v2::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(250, 216, 180, 0.38) 0%,
    rgba(250, 216, 180, 0.1) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .stats-v2 .container {
  position: relative;
  z-index: 1;
}

body.halo-marketing .stats-v2-head {
  max-width: 720px;
  margin-bottom: var(--marketing-section-head-gap);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .stats-v2-head.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .stats-v2-heading {
  margin-bottom: 16px;
}

body.halo-marketing .stats-v2-lead {
  max-width: 520px;
  margin-bottom: 0;
}

body.halo-marketing .stats-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

body.halo-marketing .stats-v2-card {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(120, 227, 253, 0.28);
  padding: 22px 22px 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

body.halo-marketing .stats-v2-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .stats-v2-grid .stats-v2-card:nth-child(1).in-view {
  transition-delay: 0.1s;
}
body.halo-marketing .stats-v2-grid .stats-v2-card:nth-child(2).in-view {
  transition-delay: 0.18s;
}

body.halo-marketing .stats-v2-grid .stats-v2-flip.in-view {
  transition-delay: 0.26s;
}

body.halo-marketing .stats-v2-grid .stats-v2-card:nth-child(4).in-view {
  transition-delay: 0.34s;
}

body.halo-marketing .stats-v2-card:hover {
  border-color: rgba(120, 227, 253, 0.55);
  box-shadow: var(--shadow-soft);
}

body.halo-marketing .stats-v2-number {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 2px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 4.15vw, 60px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text);
  min-width: 0;
}

/* Extra digits + separators (99.99%): must fit narrow grid cells */
body.halo-marketing .stats-v2-card--wide .stats-v2-number {
  font-size: clamp(28px, 2.85vw, 44px);
  letter-spacing: -0.05em;
  gap: 1px;
}

body.halo-marketing .stats-v2-digit-wrap {
  position: relative;
  display: inline-block;
  height: 1em;
  overflow: hidden;
  vertical-align: top;
}

body.halo-marketing .stats-v2-digit-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(0.34, 1.2, 0.4, 1);
}

body.halo-marketing .stats-v2-digit-stack span {
  height: 1em;
  line-height: 1;
}

body.halo-marketing .stats-v2-static-char {
  display: inline-block;
  line-height: 1;
}

body.halo-marketing .stats-v2-card::after,
body.halo-marketing .stats-v2-flip-front::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(120, 227, 253, 0.18) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

body.halo-marketing .stats-v2-card.swept::after,
body.halo-marketing .stats-v2-flip-front.swept::after {
  animation: stats-v2-pulse-sweep 0.9s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}

@keyframes stats-v2-pulse-sweep {
  0% {
    left: -100%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

body.halo-marketing .stats-v2-confirm-line {
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(120, 227, 253, 0.5) 30%,
    rgba(120, 227, 253, 0.5) 70%,
    transparent 100%
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

body.halo-marketing .stats-v2-card.swept .stats-v2-confirm-line,
body.halo-marketing .stats-v2-flip-front.swept .stats-v2-confirm-line {
  transform: scaleX(1);
}

body.halo-marketing .stats-v2-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

body.halo-marketing .stats-v2-footnote {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin: 0;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.5s,
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

body.halo-marketing .stats-v2-footnote.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .stats-v2-footnote-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
  animation: stats-v2-dot-pulse 2.4s ease-in-out infinite;
}

@keyframes stats-v2-dot-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* Flip tile (Lake County cities) */
body.halo-marketing .stats-v2-flip {
  perspective: 1200px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  text-align: left;
}

body.halo-marketing .stats-v2-flip.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .stats-v2-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 124px;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  transform-style: preserve-3d;
}

body.halo-marketing .stats-v2-flip:focus-visible .stats-v2-flip-inner {
  outline: 2px solid var(--accent-blue);
  outline-offset: 4px;
  border-radius: 16px;
}

body.halo-marketing .stats-v2-flip.flipped .stats-v2-flip-inner {
  transform: rotateY(180deg);
}

body.halo-marketing .stats-v2-flip-face {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(120, 227, 253, 0.28);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.3s ease;
  overflow: hidden;
}

body.halo-marketing .stats-v2-flip:hover .stats-v2-flip-face {
  border-color: rgba(120, 227, 253, 0.55);
  box-shadow: var(--shadow-soft);
}

body.halo-marketing .stats-v2-flip-back {
  transform: rotateY(180deg);
  padding: 16px 18px;
  gap: 6px;
}

body.halo-marketing .stats-v2-flip-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(120, 227, 253, 0.1);
  color: var(--accent-blue-deep);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  transition: background 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .stats-v2-flip:hover .stats-v2-flip-hint {
  background: rgba(120, 227, 253, 0.22);
}

body.halo-marketing .stats-v2-flip-hint svg {
  width: 9px;
  height: 9px;
}

body.halo-marketing .stats-v2-cities-caption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 10px;
}

body.halo-marketing .stats-v2-cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  align-content: center;
  flex-grow: 1;
  padding: 4px 0;
}

body.halo-marketing .stats-v2-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(52, 219, 244, 0.08);
  border: 1px solid rgba(52, 219, 244, 0.22);
  color: var(--link-accent);
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    background 0.3s ease;
}

body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(1) {
  transition-delay: 0.35s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(2) {
  transition-delay: 0.42s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(3) {
  transition-delay: 0.49s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(4) {
  transition-delay: 0.56s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(5) {
  transition-delay: 0.63s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(6) {
  transition-delay: 0.7s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(7) {
  transition-delay: 0.77s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(8) {
  transition-delay: 0.84s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(9) {
  transition-delay: 0.91s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(10) {
  transition-delay: 0.98s;
}
body.halo-marketing .stats-v2-flip.flipped .stats-v2-city-chip:nth-child(11) {
  transition-delay: 1.05s;
}

@media (max-width: 1024px) {
  body.halo-marketing .stats-v2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.halo-marketing .stats-v2-number {
    font-size: 48px;
  }

  body.halo-marketing .stats-v2-card--wide .stats-v2-number {
    font-size: 36px;
  }

  body.halo-marketing .stats-v2-grid .stats-v2-card:nth-child(3).in-view {
    transition-delay: 0.26s;
  }

  body.halo-marketing .stats-v2-grid .stats-v2-card:nth-child(4).in-view {
    transition-delay: 0.34s;
  }

  body.halo-marketing .stats-v2-grid .stats-v2-flip.in-view {
    transition-delay: 0.26s;
  }
}

@media (max-width: 560px) {
  body.halo-marketing .stats-v2 {
    padding: 24px 0 44px;
  }

  body.halo-marketing .stats-v2-grid {
    gap: 10px;
  }

  body.halo-marketing .stats-v2-card,
  body.halo-marketing .stats-v2-flip-face {
    padding: 16px 14px 14px;
  }

  body.halo-marketing .stats-v2-flip-inner {
    min-height: 110px;
  }

  body.halo-marketing .stats-v2-number {
    font-size: 36px;
  }

  body.halo-marketing .stats-v2-card--wide .stats-v2-number {
    font-size: 28px;
    letter-spacing: -0.055em;
  }

  body.halo-marketing .stats-v2-card-label {
    font-size: 10px;
  }

  body.halo-marketing .stats-v2-flip-hint {
    font-size: 8px;
    padding: 3px 6px;
    top: 10px;
    right: 10px;
  }

  body.halo-marketing .stats-v2-cities-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  body.halo-marketing .stats-v2-city-chip {
    font-size: 10px;
    padding: 3px 6px;
  }

  body.halo-marketing .stats-v2-flip-back {
    padding: 14px 12px;
  }

  body.halo-marketing .stats-v2-confirm-line {
    left: 14px;
    right: 14px;
  }

  body.halo-marketing .stats-v2-footnote {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.halo-marketing .stats-v2-digit-stack {
    transition: none !important;
  }

  body.halo-marketing .stats-v2-head,
  body.halo-marketing .stats-v2-card,
  body.halo-marketing .stats-v2-flip,
  body.halo-marketing .stats-v2-footnote {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body.halo-marketing .stats-v2-footnote-dot {
    animation: none !important;
  }

  body.halo-marketing .stats-v2-city-chip {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   VALUES v2 — four principles (after stats)
   Halo cyan + peach ambience, stats-v2 card language
   ============================================ */

body.halo-marketing .values-v2 {
  position: relative;
  overflow: hidden;
  padding: 40px 0 100px;
  /* Matches stats-v2 seam: cyan up top-right (stats exits with peach low-right); peach anchors bottom-left */
  background:
    radial-gradient(circle at 88% -6%, rgba(120, 235, 253, 0.2) 0%, transparent 54%),
    radial-gradient(circle at 76% 20%, rgba(120, 227, 253, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 14% 100%, rgba(250, 216, 180, 0.22) 0%, transparent 54%),
    var(--bg);
}

body.halo-marketing .values-v2::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(120, 227, 253, 0.22) 0%,
    rgba(120, 227, 253, 0.05) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .values-v2::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(250, 216, 180, 0.42) 0%,
    rgba(250, 216, 180, 0.1) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .values-v2 .container {
  position: relative;
  z-index: 1;
}

body.halo-marketing .values-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(120, 227, 253, 0.14);
  border: 1px solid rgba(120, 227, 253, 0.32);
  color: var(--link-accent);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}

body.halo-marketing .values-v2-head {
  max-width: 720px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .values-v2-head.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .values-v2-heading {
  margin-bottom: 20px;
}

body.halo-marketing .values-v2-lead {
  max-width: 560px;
  margin-bottom: 0;
}

body.halo-marketing .values-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

body.halo-marketing .values-v2-principle {
  position: relative;
  --mx: 50%;
  --my: 50%;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(120, 227, 253, 0.28);
  padding: 32px 28px 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: default;
}

body.halo-marketing .values-v2-principle.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(1).in-view {
  transition-delay: 0.15s;
}
body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(2).in-view {
  transition-delay: 0.25s;
}
body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(3).in-view {
  transition-delay: 0.35s;
}
body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(4).in-view {
  transition-delay: 0.45s;
}

body.halo-marketing .values-v2-principle:hover {
  border-color: rgba(120, 227, 253, 0.55);
  box-shadow: var(--shadow-soft);
}

body.halo-marketing .values-v2-principle-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background: radial-gradient(
    circle 280px at var(--mx, 50%) var(--my, 50%),
    rgba(120, 227, 253, 0.12) 0%,
    rgba(120, 227, 253, 0.04) 35%,
    transparent 65%
  );
  z-index: 0;
}

body.halo-marketing .values-v2-principle:hover .values-v2-principle-glow {
  opacity: 1;
}

body.halo-marketing .values-v2-principle-head,
body.halo-marketing .values-v2-body,
body.halo-marketing .values-v2-asterisk {
  position: relative;
  z-index: 1;
}

body.halo-marketing .values-v2-principle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  height: 2px;
  width: 32px;
  background: linear-gradient(to right, var(--accent-blue-deep), var(--accent-blue));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.3s,
    width 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

body.halo-marketing .values-v2-principle.in-view::before {
  transform: scaleX(1);
}

body.halo-marketing .values-v2-principle:hover::before {
  width: 56px;
}

body.halo-marketing .values-v2-asterisk {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 14px;
  height: 14px;
  color: rgba(120, 227, 253, 0.4);
  animation: values-v2-spin-asterisk 12s linear infinite;
  transition:
    color 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: center;
  z-index: 2;
}

body.halo-marketing .values-v2-principle:hover .values-v2-asterisk {
  color: var(--accent-blue-deep);
}

@keyframes values-v2-spin-asterisk {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

body.halo-marketing .values-v2-principle-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

body.halo-marketing .values-v2-principle-number {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  opacity: 0;
  transition:
    opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  flex-shrink: 0;
  margin-top: 2px;
}

body.halo-marketing .values-v2-principle.in-view .values-v2-principle-number {
  opacity: 0.5;
}

body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(1).in-view .values-v2-principle-number {
  transition-delay: 0.35s;
}
body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(2).in-view .values-v2-principle-number {
  transition-delay: 0.5s;
}
body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(3).in-view .values-v2-principle-number {
  transition-delay: 0.65s;
}
body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(4).in-view .values-v2-principle-number {
  transition-delay: 0.8s;
}

body.halo-marketing .values-v2-principle-number::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 0.9em;
  background: var(--accent-blue-deep);
  margin-left: 2px;
  vertical-align: middle;
  opacity: 0;
  animation: none;
}

body.halo-marketing .values-v2-principle.in-view .values-v2-principle-number::after {
  animation: values-v2-cursor-blink 0.6s ease-in-out 2;
}

body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(1).in-view .values-v2-principle-number::after {
  animation-delay: 0.25s;
}
body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(2).in-view .values-v2-principle-number::after {
  animation-delay: 0.4s;
}
body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(3).in-view .values-v2-principle-number::after {
  animation-delay: 0.55s;
}
body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(4).in-view .values-v2-principle-number::after {
  animation-delay: 0.7s;
}

@keyframes values-v2-cursor-blink {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

body.halo-marketing .values-v2-principle:hover .values-v2-principle-number {
  opacity: 1 !important;
  color: var(--accent-blue-deep);
}

body.halo-marketing .values-v2-title-wrap {
  position: relative;
  display: inline-block;
}

body.halo-marketing .values-v2-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}

body.halo-marketing .values-v2-principle::after {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 24px;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-blue-deep), var(--accent-blue));
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: top center;
  transition:
    opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 2;
}

body.halo-marketing .values-v2-principle:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

body.halo-marketing .values-v2-body {
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  body.halo-marketing .values-v2 {
    padding: 24px 0 64px;
  }

  body.halo-marketing .values-v2-head {
    margin-bottom: 36px;
  }

  body.halo-marketing .values-v2-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.halo-marketing .values-v2-principle {
    padding: 24px 20px 22px;
  }

  body.halo-marketing .values-v2-principle::before {
    left: 20px;
  }

  body.halo-marketing .values-v2-asterisk {
    top: 18px;
    right: 18px;
    width: 12px;
    height: 12px;
  }

  body.halo-marketing .values-v2-title {
    font-size: 19px;
  }

  body.halo-marketing .values-v2-body {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.halo-marketing .values-v2-head,
  body.halo-marketing .values-v2-principle {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(n).in-view {
    transition-delay: 0s !important;
  }

  body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(n).in-view .values-v2-principle-number {
    transition-delay: 0s !important;
  }

  body.halo-marketing .values-v2-grid .values-v2-principle:nth-child(n).in-view .values-v2-principle-number::after {
    animation: none !important;
  }

  body.halo-marketing .values-v2-principle::before {
    transform: scaleX(1) !important;
    transition: none !important;
  }

  body.halo-marketing .values-v2-principle::after {
    opacity: 0 !important;
    transform: scaleY(0.4) !important;
    transition: none !important;
  }

  body.halo-marketing .values-v2-principle:hover::after {
    opacity: 1 !important;
    transform: scaleY(1) !important;
  }

  body.halo-marketing .values-v2-principle-glow {
    opacity: 0 !important;
    transition: none !important;
  }

  body.halo-marketing .values-v2-asterisk {
    animation: none !important;
  }
}

/* ============================================
   PRICING v2 — tiers + trust + soft CTA (homepage)
   Peach/cyan ambience matches Halo tokens (stats/values)
   ============================================ */

body.halo-marketing .pricing-v2 {
  position: relative;
  overflow: hidden;
  padding: 40px 0 100px;
  background:
    radial-gradient(circle at 88% -10%, rgba(250, 216, 180, 0.26) 0%, transparent 54%),
    radial-gradient(circle at 12% 102%, rgba(120, 227, 253, 0.14) 0%, transparent 56%),
    var(--bg-alt);
}

body.halo-marketing .pricing-v2::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(250, 216, 180, 0.36) 0%,
    rgba(250, 216, 180, 0.09) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .pricing-v2::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(120, 227, 253, 0.18) 0%,
    rgba(120, 227, 253, 0.04) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

body.halo-marketing .pricing-v2 .container {
  position: relative;
  z-index: 1;
}

/* Pricing eyebrow chip removed — now matches the plain .eyebrow style used
   everywhere else (Reviews, Process, Stats, Studio, About, etc.). */
body.halo-marketing .pricing-v2-eyebrow {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-16);
}

body.halo-marketing .pricing-v2-head {
  max-width: 720px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .pricing-v2-head.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .pricing-v2-heading {
  margin-bottom: 20px;
}

body.halo-marketing .pricing-v2-lead {
  max-width: 600px;
  margin-bottom: 0;
}

body.halo-marketing .pricing-v2-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 48px;
}

body.halo-marketing .pricing-v2-tier {
  position: relative;
  --mx: 50%;
  --my: 50%;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(120, 227, 253, 0.42);
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: visible;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .pricing-v2-tier.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .pricing-v2-tiers .pricing-v2-tier:nth-child(1).in-view {
  transition-delay: 0.15s;
}
body.halo-marketing .pricing-v2-tiers .pricing-v2-tier:nth-child(2).in-view {
  transition-delay: 0.25s;
}
body.halo-marketing .pricing-v2-tiers .pricing-v2-tier:nth-child(3).in-view {
  transition-delay: 0.35s;
}

body.halo-marketing .pricing-v2-tier:hover {
  border-color: rgba(120, 227, 253, 0.7);
  box-shadow: var(--shadow-soft);
}

body.halo-marketing .pricing-v2-tier-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background: radial-gradient(
    circle 320px at var(--mx, 50%) var(--my, 50%),
    rgba(120, 227, 253, 0.1) 0%,
    rgba(120, 227, 253, 0.03) 35%,
    transparent 65%
  );
  z-index: 0;
}

body.halo-marketing .pricing-v2-tier:hover .pricing-v2-tier-glow {
  opacity: 1;
}

body.halo-marketing .pricing-v2-tier--featured .pricing-v2-tier-glow {
  background: radial-gradient(
    circle 280px at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.12) 35%,
    transparent 65%
  );
}

body.halo-marketing .pricing-v2-tier > *:not(.pricing-v2-tier-glow) {
  position: relative;
  z-index: 1;
}

body.halo-marketing .pricing-v2-tier--featured {
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: 0 8px 32px rgba(120, 227, 253, 0.18);
  transform: translateY(-8px);
  padding-top: 36px;
  background:
    radial-gradient(
      ellipse 600px 400px at 0% 0%,
      rgba(120, 227, 253, 0.28) 0%,
      rgba(120, 227, 253, 0.09) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 380px at 100% 100%,
      rgba(250, 216, 180, 0.42) 0%,
      rgba(250, 216, 180, 0.13) 40%,
      transparent 70%
    ),
    var(--surface);
}

body.halo-marketing .pricing-v2-tier--featured.in-view {
  transform: translateY(-8px);
}

body.halo-marketing .pricing-v2-tier--featured:hover {
  border-color: rgba(120, 227, 253, 0.85);
  box-shadow: 0 12px 40px rgba(120, 227, 253, 0.22);
  transform: translateY(-10px);
}

body.halo-marketing .pricing-v2-tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: var(--accent-blue);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(120, 227, 253, 0.4);
  white-space: nowrap;
  z-index: 2;
}

body.halo-marketing .pricing-v2-tier-badge svg {
  width: 12px;
  height: 12px;
  color: #fcd34d;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
}

body.halo-marketing .pricing-v2-tier-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.halo-marketing .pricing-v2-tier-name {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

body.halo-marketing .pricing-v2-tier-price {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

body.halo-marketing .pricing-v2-tier-price-suffix {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

body.halo-marketing .pricing-v2-tier-ideal {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

body.halo-marketing .pricing-v2-features {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px dashed var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.halo-marketing .pricing-v2-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature {
  opacity: 1;
  transform: translateX(0);
}

body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(1) {
  transition-delay: 0.5s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(2) {
  transition-delay: 0.56s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(3) {
  transition-delay: 0.62s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(4) {
  transition-delay: 0.68s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(5) {
  transition-delay: 0.74s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(6) {
  transition-delay: 0.8s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(7) {
  transition-delay: 0.86s;
}

body.halo-marketing .pricing-v2-feature-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(120, 227, 253, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .pricing-v2-feature-check svg {
  width: 10px;
  height: 10px;
  color: var(--accent-blue-deep);
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature-check svg {
  stroke-dashoffset: 0;
}

body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(1) .pricing-v2-feature-check svg {
  transition-delay: 0.55s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(2) .pricing-v2-feature-check svg {
  transition-delay: 0.61s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(3) .pricing-v2-feature-check svg {
  transition-delay: 0.67s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(4) .pricing-v2-feature-check svg {
  transition-delay: 0.73s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(5) .pricing-v2-feature-check svg {
  transition-delay: 0.79s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(6) .pricing-v2-feature-check svg {
  transition-delay: 0.85s;
}
body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(7) .pricing-v2-feature-check svg {
  transition-delay: 0.91s;
}

body.halo-marketing .pricing-v2-feature strong {
  color: var(--text);
  font-weight: 600;
}

body.halo-marketing .pricing-v2-tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-soft);
  transition:
    border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    background 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  margin-top: 14px;
}

body.halo-marketing .pricing-v2-tier-cta:hover {
  border-color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.halo-marketing .pricing-v2-tier-cta svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .pricing-v2-tier-cta:hover svg {
  transform: translateX(3px);
}

body.halo-marketing .pricing-v2-tier--featured .pricing-v2-tier-cta {
  background: var(--accent-blue);
  color: var(--text);
  border-color: transparent;
}

body.halo-marketing .pricing-v2-tier--featured .pricing-v2-tier-cta:hover {
  background: var(--accent-blue-deep);
  color: var(--surface);
  box-shadow: 0 8px 20px rgba(120, 227, 253, 0.35);
}

body.halo-marketing .pricing-v2-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.5s,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

body.halo-marketing .pricing-v2-trust.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .pricing-v2-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
}

body.halo-marketing .pricing-v2-trust-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(120, 227, 253, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

body.halo-marketing .pricing-v2-trust-icon svg {
  width: 11px;
  height: 11px;
  color: var(--accent-blue-deep);
}

body.halo-marketing .pricing-v2-soft {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(120, 227, 253, 0.38);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
    border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .pricing-v2-soft.in-view {
  opacity: 1;
  transform: translateY(0);
}

body.halo-marketing .pricing-v2-soft:hover {
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: var(--shadow-soft);
}

body.halo-marketing .pricing-v2-soft-text {
  flex: 1;
  min-width: 240px;
}

body.halo-marketing .pricing-v2-soft-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

body.halo-marketing .pricing-v2-soft-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

body.halo-marketing .pricing-v2-soft-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent-blue);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.3s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  white-space: nowrap;
}

body.halo-marketing .pricing-v2-soft-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

body.halo-marketing .pricing-v2-soft-btn:hover {
  background: var(--accent-blue-deep);
  color: var(--surface);
  transform: translateY(-1px);
}

body.halo-marketing .pricing-v2-soft-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  body.halo-marketing .pricing-v2-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  body.halo-marketing .pricing-v2-tiers {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.halo-marketing .pricing-v2-tier--featured,
  body.halo-marketing .pricing-v2-tier--featured.in-view {
    transform: translateY(0);
  }

  body.halo-marketing .pricing-v2-tier--featured:hover {
    transform: translateY(-2px);
  }

  body.halo-marketing .pricing-v2-tier-badge {
    top: 0;
  }

  body.halo-marketing .pricing-v2-tier {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
    padding: 24px 24px 22px;
    align-items: start;
  }

  body.halo-marketing .pricing-v2-tier-header {
    gap: 4px;
  }

  body.halo-marketing .pricing-v2-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    padding-top: 0;
    border-top: none;
    border-left: 1px dashed var(--border-soft);
    padding-left: 22px;
  }

  body.halo-marketing .pricing-v2-feature {
    font-size: 13px;
    line-height: 1.4;
    gap: 8px;
  }

  body.halo-marketing .pricing-v2-feature-check {
    width: 16px;
    height: 16px;
  }

  body.halo-marketing .pricing-v2-feature-check svg {
    width: 9px;
    height: 9px;
  }

  body.halo-marketing .pricing-v2-tier-cta {
    grid-column: 1 / -1;
    margin-top: 14px;
  }

  body.halo-marketing .pricing-v2-tier-badge {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  body.halo-marketing .pricing-v2-tier--featured {
    padding-top: 28px;
  }
}

@media (max-width: 768px) {
  body.halo-marketing .pricing-v2 {
    padding: 24px 0 64px;
  }

  body.halo-marketing .pricing-v2-head {
    margin-bottom: 36px;
  }

  body.halo-marketing .pricing-v2-tier-price {
    font-size: 30px;
  }

  body.halo-marketing .pricing-v2-trust {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  body.halo-marketing .pricing-v2-trust-item {
    font-size: 13px;
  }

  body.halo-marketing .pricing-v2-soft {
    padding: 22px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  body.halo-marketing .pricing-v2-soft-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  body.halo-marketing .pricing-v2-tier {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px 18px;
  }

  body.halo-marketing .pricing-v2-tier-header {
    gap: 4px;
  }

  body.halo-marketing .pricing-v2-features {
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px dashed var(--border-soft);
    border-left: none;
  }

  body.halo-marketing .pricing-v2-feature {
    font-size: 12px;
    line-height: 1.35;
    gap: 6px;
  }

  body.halo-marketing .pricing-v2-feature-check {
    width: 14px;
    height: 14px;
  }

  body.halo-marketing .pricing-v2-feature-check svg {
    width: 8px;
    height: 8px;
  }

  body.halo-marketing .pricing-v2-tier-cta {
    grid-column: auto;
    margin-top: 12px;
    padding: 11px 16px;
    font-size: 13px;
  }

  body.halo-marketing .pricing-v2-tier-price {
    font-size: 28px;
  }

  body.halo-marketing .pricing-v2-tier-ideal {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 6px;
  }

  body.halo-marketing .pricing-v2-tier-name {
    font-size: 10px;
  }

  body.halo-marketing .pricing-v2-tier-badge {
    padding: 5px 11px 5px 9px;
    font-size: 10px;
  }

  body.halo-marketing .pricing-v2-tier--featured {
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  body.halo-marketing .pricing-v2-trust {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  body.halo-marketing .pricing-v2-features {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.halo-marketing .pricing-v2-head,
  body.halo-marketing .pricing-v2-tier,
  body.halo-marketing .pricing-v2-trust,
  body.halo-marketing .pricing-v2-soft {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body.halo-marketing .pricing-v2-tiers .pricing-v2-tier:nth-child(n).in-view {
    transition-delay: 0s !important;
  }

  body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature,
  body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(n) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature-check svg,
  body.halo-marketing .pricing-v2-tier.in-view .pricing-v2-feature:nth-child(n) .pricing-v2-feature-check svg {
    transition: none !important;
    transition-delay: 0s !important;
    stroke-dashoffset: 0 !important;
  }

  body.halo-marketing .pricing-v2-tier-glow {
    opacity: 0 !important;
    transition: none !important;
  }

  body.halo-marketing .pricing-v2-tier--featured:hover {
    transform: none !important;
  }
}

/* ============================================================================
   SERVICE AREA section — scoped to .service-area to avoid leaking variable
   redefinitions or pill-style .eyebrow overrides into the rest of the site.
   ============================================================================ */
.service-area {
  --svc-surface: #FFFFFF;
  --svc-surface-muted: #F8F7F5;
  --svc-text: #151515;
  --svc-text-secondary: #5E5E5E;
  --svc-text-muted: #8A8A8A;
  --svc-warm-cream: #EDD9C4;
  --svc-border-soft: rgba(0, 0, 0, 0.08);
  --svc-shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.08);
  --svc-radius: 20px;
  --svc-easing: cubic-bezier(0.19, 1, 0.22, 1);

  position: relative;
  /* Cyan + peach radial wash on bg-alt — same pattern as .process-v2 / .pricing-v2
     so this section reads as part of the marketing rhythm, not a flat island. */
  background:
    radial-gradient(circle at 8% 5%, rgba(120, 235, 253, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 95% 95%, rgba(250, 216, 180, 0.34) 0%, transparent 55%),
    var(--bg-alt);
  overflow: hidden;
}

.service-area::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(120, 227, 253, 0.18) 0%,
    rgba(120, 227, 253, 0.05) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.service-area::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(237, 217, 196, 0.42) 0%,
    rgba(237, 217, 196, 0.12) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.service-area > .container {
  position: relative;
  z-index: 1;
}

/* --- Section header --- */
.service-area .section-header {
  margin-bottom: 48px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--svc-easing), transform 0.7s var(--svc-easing);
}
.service-area .section-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow chip removed — Service Area now inherits the global .eyebrow plain
   text style (matches Reviews, Process, Stats, About, Studio, etc.). */

.service-area .section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--svc-text);
  margin-bottom: 20px;
}

.service-area .section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--svc-text-secondary);
  max-width: 560px;
}

/* --- Two-column grid (map + zones) --- */
.service-area .service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

/* --- LEFT — Map card --- */
.service-area .map-card {
  position: relative;
  background: var(--svc-surface);
  border-radius: 20px;
  border: 1px solid rgba(120, 227, 253, 0.42);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--svc-easing) 0.15s,
              transform 0.7s var(--svc-easing) 0.15s,
              border-color 0.3s var(--svc-easing),
              box-shadow 0.3s var(--svc-easing);
  display: flex;
  flex-direction: column;
}
.service-area .map-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.service-area .map-card:hover {
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: var(--svc-shadow-soft);
}

.service-area .map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px dashed var(--svc-border-soft);
}

.service-area .map-card-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--svc-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-area .map-card-legend {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--svc-text-muted);
  letter-spacing: 0.03em;
}

.service-area .legend-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-area .legend-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
}
.service-area .legend-dot.home::before {
  background: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(120, 227, 253, 0.35);
}

.service-area .map-viewport {
  position: relative;
  flex-grow: 1;
  min-height: 420px;
  overflow: hidden;
  background: var(--svc-surface-muted);
}

.service-area .map-embed {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(0.95);
  transition: filter 0.4s var(--svc-easing);
}
.service-area .map-card:hover .map-embed {
  filter: saturate(1) contrast(1);
}

.service-area .map-footnote {
  padding: 12px 20px;
  border-top: 1px dashed var(--svc-border-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--svc-text-muted);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.service-area .map-footnote a {
  color: var(--accent-blue-deep);
  text-decoration: none;
  transition: color 0.2s;
}
.service-area .map-footnote a:hover {
  color: var(--svc-text);
}

/* --- RIGHT — Coverage zones --- */
.service-area .zones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--svc-easing) 0.25s,
              transform 0.7s var(--svc-easing) 0.25s;
}
.service-area .zones.in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-area .zone {
  position: relative;
  border-radius: 20px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(120, 227, 253, 0.42);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: border-color 0.3s var(--svc-easing), box-shadow 0.3s var(--svc-easing);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-area .zone-onsite {
  background:
    radial-gradient(ellipse 400px 300px at 0% 0%,
      rgba(120, 227, 253, 0.18) 0%,
      rgba(120, 227, 253, 0.04) 50%,
      transparent 75%),
    var(--svc-surface);
}

.service-area .zone-remote {
  background:
    radial-gradient(ellipse 400px 300px at 100% 0%,
      rgba(237, 217, 196, 0.35) 0%,
      rgba(237, 217, 196, 0.10) 50%,
      transparent 75%),
    var(--svc-surface);
  border-color: rgba(237, 217, 196, 0.6);
}

.service-area .zone:hover {
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: var(--svc-shadow-soft);
}
.service-area .zone-remote:hover {
  border-color: rgba(237, 217, 196, 0.9);
}

.service-area .zone-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.service-area .zone-title-block {
  flex: 1;
}

.service-area .zone-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--svc-text-muted);
  margin-bottom: 4px;
}

.service-area .zone-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--svc-text);
}

.service-area .zone-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--svc-surface);
  border: 1px solid var(--svc-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue-deep);
}
.service-area .zone-icon svg {
  width: 16px;
  height: 16px;
}
.service-area .zone-remote .zone-icon {
  color: #B8825D;
}

.service-area .zone-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--svc-text-secondary);
}

.service-area .zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px dashed var(--svc-border-soft);
}

.service-area .zone-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(52, 219, 244, 0.08);
  border: 1px solid rgba(52, 219, 244, 0.22);
  color: #0b6fa4;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.3s var(--svc-easing);
  cursor: pointer;
  user-select: none;
}
.service-area .zone-chip:hover,
.service-area .zone-chip.active {
  background: rgba(52, 219, 244, 0.18);
  border-color: rgba(52, 219, 244, 0.42);
  transform: translateY(-1px);
}

.service-area .zone-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--svc-text-muted);
  letter-spacing: 0.04em;
  padding-top: 12px;
  border-top: 1px dashed var(--svc-border-soft);
}

/* --- Soft CTA --- */
.service-area .soft-cta {
  background: var(--svc-surface);
  border-radius: 20px;
  border: 1px solid rgba(120, 227, 253, 0.42);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--svc-easing) 0.4s,
              transform 0.7s var(--svc-easing) 0.4s,
              border-color 0.3s var(--svc-easing),
              box-shadow 0.3s var(--svc-easing);
}
.service-area .soft-cta.in-view {
  opacity: 1;
  transform: translateY(0);
}
.service-area .soft-cta:hover {
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: var(--svc-shadow-soft);
}

.service-area .soft-cta-text {
  flex: 1;
  min-width: 240px;
}
.service-area .soft-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--svc-text);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.service-area .soft-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--svc-text-secondary);
  line-height: 1.5;
}

.service-area .soft-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent-blue);
  color: var(--svc-text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--svc-easing);
  white-space: nowrap;
}
.service-area .soft-cta-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--svc-easing);
}
.service-area .soft-cta-btn:hover {
  background: var(--accent-blue-deep);
  color: var(--svc-surface);
  transform: translateY(-1px);
}
.service-area .soft-cta-btn:hover svg {
  transform: translateX(3px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .service-area .service-grid { gap: 24px; }
}
@media (max-width: 900px) {
  .service-area .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-area .map-viewport { min-height: 360px; }
}
@media (max-width: 768px) {
  .service-area .section-header { margin-bottom: 36px; }
  .service-area .section-headline { font-size: 30px; }
  .service-area .section-sub { font-size: 15px; }
  .service-area .map-viewport { min-height: 300px; }
  .service-area .zone { padding: 20px 20px 18px; }
  .service-area .zone-title { font-size: 18px; }
  .service-area .zone-description { font-size: 13.5px; }
  .service-area .soft-cta {
    padding: 20px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .service-area .soft-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-area .section-header,
  .service-area .map-card,
  .service-area .zones,
  .service-area .soft-cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================================
   TRUST BADGES section — scoped to .trust-badges. Uses both peach (top-right)
   and cyan (bottom-left) radial gradients so the band carries the full Halo
   palette, not just one accent.
   ============================================================================ */
.trust-badges {
  --tb-surface: #FFFFFF;
  --tb-surface-muted: #F8F7F5;
  --tb-text: #151515;
  --tb-text-secondary: #5E5E5E;
  --tb-text-muted: #8A8A8A;
  --tb-border-soft: rgba(0, 0, 0, 0.08);
  --tb-shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.08);
  --tb-easing: cubic-bezier(0.19, 1, 0.22, 1);

  position: relative;
  /* Peach + cyan radial wash — mirrored from .service-area so the trust strip
     reads as the same band family, not a flat panel. */
  background:
    radial-gradient(circle at 92% 8%, rgba(250, 216, 180, 0.28) 0%, transparent 55%),
    radial-gradient(circle at 8% 92%, rgba(120, 235, 253, 0.20) 0%, transparent 55%),
    var(--bg-alt);
  overflow: hidden;
}

/* Peach radial blob — top-right */
.trust-badges::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(237, 217, 196, 0.30) 0%,
    rgba(237, 217, 196, 0.08) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Cyan radial blob — bottom-left (complements the peach) */
.trust-badges::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle,
    rgba(120, 227, 253, 0.16) 0%,
    rgba(120, 227, 253, 0.05) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.trust-badges > .container {
  position: relative;
  z-index: 1;
}

/* --- Section header --- */
.trust-badges .section-header {
  margin-bottom: 36px;
  max-width: 640px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--tb-easing), transform 0.7s var(--tb-easing);
}
.trust-badges .section-header.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow chip removed — Trust Badges inherits the global .eyebrow style. */

.trust-badges .section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--tb-text);
  margin-bottom: 12px;
}

.trust-badges .section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--tb-text-secondary);
  max-width: 520px;
}

/* --- Badges grid --- */
.trust-badges .badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.trust-badges .badge {
  position: relative;
  background: var(--tb-surface);
  border-radius: 14px;
  border: 1px solid rgba(120, 227, 253, 0.32);
  padding: 18px 18px 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--tb-easing),
              transform 0.6s var(--tb-easing),
              border-color 0.3s var(--tb-easing),
              box-shadow 0.3s var(--tb-easing);
}
.trust-badges .badge.in-view {
  opacity: 1;
  transform: translateY(0);
}
.trust-badges .badge:nth-child(1).in-view { transition-delay: 0.10s, 0.10s, 0s, 0s; }
.trust-badges .badge:nth-child(2).in-view { transition-delay: 0.18s, 0.18s, 0s, 0s; }
.trust-badges .badge:nth-child(3).in-view { transition-delay: 0.26s, 0.26s, 0s, 0s; }
.trust-badges .badge:nth-child(4).in-view { transition-delay: 0.34s, 0.34s, 0s, 0s; }
.trust-badges .badge:nth-child(5).in-view { transition-delay: 0.42s, 0.42s, 0s, 0s; }

.trust-badges .badge:hover {
  border-color: rgba(120, 227, 253, 0.55);
  box-shadow: var(--tb-shadow-soft);
  transform: translateY(-2px);
}

/* External link arrow */
.trust-badges .badge-link-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tb-surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tb-text-muted);
  opacity: 0;
  transform: translate(-2px, 2px);
  transition: all 0.3s var(--tb-easing);
}
.trust-badges .badge-link-arrow svg {
  width: 10px;
  height: 10px;
}
.trust-badges .badge:hover .badge-link-arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--accent-blue);
  color: var(--tb-text);
}

/* Logo container with grayscale → color spell */
.trust-badges .badge-logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--tb-text-muted);
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.4s var(--tb-easing), opacity 0.4s var(--tb-easing), color 0.4s var(--tb-easing);
}
.trust-badges .badge:hover .badge-logo {
  filter: grayscale(0%);
  opacity: 1;
}
.trust-badges .badge-logo svg,
.trust-badges .badge-logo img {
  height: 28px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}

/* Badge info row */
.trust-badges .badge-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--tb-border-soft);
}
.trust-badges .badge-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--tb-text);
  line-height: 1.3;
}
.trust-badges .badge-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: var(--tb-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-badges .badge-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
  flex-shrink: 0;
}

/* Star rating column — hidden on desktop, only shown on mobile when Google badge spans full width */
.trust-badges .badge-rating { display: none; }

/* --- Footnote --- */
.trust-badges .trust-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--tb-text-muted);
  letter-spacing: 0.03em;
  padding-top: 16px;
  border-top: 1px dashed var(--tb-border-soft);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--tb-easing) 0.5s,
              transform 0.7s var(--tb-easing) 0.5s;
}
.trust-badges .trust-footnote.in-view {
  opacity: 1;
  transform: translateY(0);
}

.trust-badges .footnote-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
  flex-shrink: 0;
}
.trust-badges .footnote-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-blue-deep);
  opacity: 0;
  animation: trustFootnotePulse 2.6s ease-out infinite;
}
@keyframes trustFootnotePulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

.trust-badges .footnote-text { line-height: 1.5; }
.trust-badges .footnote-divider {
  color: var(--tb-text-muted);
  opacity: 0.4;
  margin: 0 4px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .trust-badges .badges { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .trust-badges .section-header { margin-bottom: 28px; }
  .trust-badges .section-headline { font-size: 26px; }
  .trust-badges .section-sub { font-size: 14px; }
  .trust-badges .badges { grid-template-columns: repeat(2, 1fr); }
  .trust-badges .badge { padding: 16px 16px 14px; }
  .trust-badges .badge-logo { height: 32px; }
  .trust-badges .badge-logo svg,
  .trust-badges .badge-logo img { height: 24px; }
  .trust-badges .badge-name { font-size: 12.5px; }
  .trust-badges .badge-status { font-size: 9px; }
  .trust-badges .trust-footnote { font-size: 10px; gap: 8px; }

  /* Google card spans full width on mobile */
  .trust-badges .badge-google {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
  }
  .trust-badges .badge-google .badge-logo {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    height: auto;
  }
  .trust-badges .badge-google .badge-info {
    grid-column: 1;
    grid-row: 2;
    padding-top: 10px;
    border-top: 1px dashed var(--tb-border-soft);
  }
  .trust-badges .badge-google .badge-rating {
    display: flex;
    grid-column: 2;
    grid-row: 1 / -1;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding-left: 14px;
    border-left: 1px dashed var(--tb-border-soft);
    align-self: stretch;
  }
  .trust-badges .badge-google .badge-stars {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .trust-badges .badge-google .badge-stars svg {
    width: 14px;
    height: 14px;
    color: #FCD34D;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
  }
  .trust-badges .badge-google .badge-rating-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--tb-text-muted);
    letter-spacing: 0.03em;
  }
  .trust-badges .badge-google .badge-rating-meta strong {
    color: var(--tb-text);
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .trust-badges .badges { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-badges .badge { padding: 14px 12px 12px; gap: 10px; }
  .trust-badges .badge-logo { height: 28px; }
  .trust-badges .badge-logo svg,
  .trust-badges .badge-logo img { height: 20px; }
  .trust-badges .badge-google { padding: 14px 14px; }
  .trust-badges .badge-google .badge-stars svg { width: 13px; height: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .trust-badges .section-header,
  .trust-badges .badge,
  .trust-badges .trust-footnote {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .trust-badges .footnote-dot::after { animation: none !important; }
}

/* ============================================================================
   CONTACT v2 section — replaces the old .cta block. Scoped to .contact-v2 so
   it doesn't fight existing .form / .chip styles elsewhere on the page.
   Preserves form-guard wiring: form[action="/api/contact"], #name/#email/
   #message/#need/#budget, .chip[data-group=X], .form__received green check.
   ============================================================================ */
.contact-v2 {
  --cv-surface: #FFFFFF;
  --cv-surface-muted: #F8F7F5;
  --cv-text: #151515;
  --cv-text-secondary: #5E5E5E;
  --cv-text-muted: #8A8A8A;
  --cv-border-soft: rgba(0, 0, 0, 0.08);
  --cv-shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.08);
  --cv-easing: cubic-bezier(0.19, 1, 0.22, 1);

  position: relative;
  /* Cyan + peach radial wash — same family as other marketing bands. */
  background:
    radial-gradient(circle at 12% 8%, rgba(120, 235, 253, 0.24) 0%, transparent 58%),
    radial-gradient(circle at 90% 95%, rgba(250, 216, 180, 0.36) 0%, transparent 56%),
    var(--bg-alt);
  overflow: hidden;
}

/* Cyan radial blob — top-left */
.contact-v2::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
    rgba(120, 227, 253, 0.20) 0%,
    rgba(120, 227, 253, 0.05) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Peach radial blob — bottom-right */
.contact-v2::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
    rgba(237, 217, 196, 0.42) 0%,
    rgba(237, 217, 196, 0.12) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-v2 > .container {
  position: relative;
  z-index: 1;
}

/* --- Two-column layout --- */
.contact-v2 .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

/* --- LEFT — Copy column --- */
.contact-v2 .copy-col {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--cv-easing), transform 0.7s var(--cv-easing);
  padding-top: 8px;
}
.contact-v2 .copy-col.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow chip removed — Contact-v2 inherits the global .eyebrow style. */

.contact-v2 .contact-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cv-text);
  margin-bottom: 20px;
}

.contact-v2 .contact-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cv-text-secondary);
  margin-bottom: 28px;
  max-width: 460px;
}

/* Direct contact CTAs */
.contact-v2 .direct-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.contact-v2 .direct-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--accent-blue);
  color: var(--cv-text);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--cv-easing);
  border: 1px solid transparent;
}
.contact-v2 .direct-cta:hover {
  background: var(--accent-blue-deep);
  color: var(--cv-surface);
  transform: translateY(-1px);
}
.contact-v2 .direct-cta--ghost {
  background: var(--cv-surface);
  color: var(--cv-text);
  border-color: var(--cv-border-soft);
}
.contact-v2 .direct-cta--ghost:hover {
  background: var(--cv-surface);
  color: var(--cv-text);
  border-color: var(--cv-text);
  transform: translateY(-1px);
}
.contact-v2 .direct-cta svg {
  width: 14px;
  height: 14px;
}

/* Trust bullets */
.contact-v2 .trust-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding: 0;
}
.contact-v2 .trust-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--cv-text);
}
.contact-v2 .trust-bullet-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(120, 227, 253, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.contact-v2 .trust-bullet-icon svg {
  width: 10px;
  height: 10px;
  color: var(--accent-blue-deep);
}

.contact-v2 .no-pressure {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cv-text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* --- RIGHT — Form panel --- */
.contact-v2 .form-panel {
  position: relative;
  border-radius: 20px;
  padding: 30px 32px 28px;
  border: 1px solid rgba(120, 227, 253, 0.42);
  background:
    radial-gradient(ellipse 600px 420px at 0% 0%,
      rgba(120, 227, 253, 0.28) 0%,
      rgba(120, 227, 253, 0.10) 40%,
      transparent 70%),
    radial-gradient(ellipse 500px 380px at 100% 100%,
      rgba(237, 217, 196, 0.42) 0%,
      rgba(237, 217, 196, 0.14) 40%,
      transparent 70%),
    var(--cv-surface);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--cv-easing) 0.15s,
              transform 0.7s var(--cv-easing) 0.15s,
              border-color 0.3s var(--cv-easing),
              box-shadow 0.3s var(--cv-easing);
}
.contact-v2 .form-panel.in-view {
  opacity: 1;
  transform: translateY(0);
}
.contact-v2 .form-panel:hover {
  border-color: rgba(120, 227, 253, 0.6);
  box-shadow: var(--cv-shadow-soft);
}

/* Override existing .form (was .form.card) styles so the panel carries the visual */
.contact-v2 .form-panel .form {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  display: block;
}

.contact-v2 .form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px dashed var(--cv-border-soft);
  flex-wrap: wrap;
}
.contact-v2 .form-header-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cv-text);
  line-height: 1.2;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.contact-v2 .form-header-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cv-text-secondary);
}
.contact-v2 .form-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(52, 219, 244, 0.12);
  border: 1px solid rgba(52, 219, 244, 0.32);
  color: #0b6fa4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Form rows */
.contact-v2 .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.contact-v2 .form-row-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-v2 .form-row-pair .form-row {
  margin-bottom: 0;
}
.contact-v2 .form-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cv-text);
}

/* Inputs and textarea */
.contact-v2 .form-input,
.contact-v2 .form-textarea {
  width: 100%;
  background: var(--cv-surface);
  border: 1px solid var(--cv-border-soft);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--cv-text);
  transition: border-color 0.25s var(--cv-easing),
              box-shadow 0.25s var(--cv-easing);
}
.contact-v2 .form-input::placeholder,
.contact-v2 .form-textarea::placeholder {
  color: var(--cv-text-muted);
}
.contact-v2 .form-input:focus,
.contact-v2 .form-textarea:focus {
  outline: none;
  border-color: var(--accent-blue-deep);
  box-shadow: 0 0 0 3px rgba(120, 227, 253, 0.25);
}
.contact-v2 .form-textarea {
  resize: vertical;
  min-height: 96px;
  font-family: 'Inter', sans-serif;
}

/* Chip pickers — dual-classed (.chip for initFormChips, .form-chip for visuals) */
.contact-v2 .form-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-v2 .form-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cv-surface);
  border: 1px solid rgba(52, 219, 244, 0.32);
  color: #0b6fa4;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s var(--cv-easing);
  position: relative;
  overflow: hidden;
  /* override any inherited button styles */
  margin: 0;
  line-height: 1.2;
}
.contact-v2 .form-chip:hover {
  border-color: rgba(120, 227, 253, 0.55);
  background: rgba(120, 227, 253, 0.08);
}
/* Selected state — mint green pulse (initFormChips toggles .is-selected) */
.contact-v2 .form-chip.is-selected {
  background: rgba(167, 243, 208, 0.5);
  color: #064e3b;
  border-color: rgba(52, 211, 153, 0.55);
  animation: contactV2ChipPulse 0.4s var(--cv-easing);
}
.contact-v2 .form-chip.is-selected:hover {
  background: rgba(167, 243, 208, 0.65);
  border-color: rgba(52, 211, 153, 0.7);
}
@keyframes contactV2ChipPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Submit button */
.contact-v2 .form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: var(--accent-blue);
  color: var(--cv-text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--cv-easing);
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.contact-v2 .form-submit:hover {
  background: var(--accent-blue-deep);
  color: var(--cv-surface);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(120, 227, 253, 0.35);
}
.contact-v2 .form-submit svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--cv-easing);
}
.contact-v2 .form-submit:hover svg {
  transform: translateX(3px);
}

/* Shimmer-sweep when form is valid (.ready toggled by JS) */
.contact-v2 .form-submit.ready::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%);
  animation: contactV2SubmitShimmer 2.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  pointer-events: none;
}
@keyframes contactV2SubmitShimmer {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}

/* Reassurance text under submit */
.contact-v2 .form-reassure {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--cv-border-soft);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--cv-text-secondary);
}
.contact-v2 .form-reassure p {
  margin-bottom: 2px;
}
.contact-v2 .form-reassure p:last-child {
  margin-bottom: 0;
  color: var(--cv-text-muted);
}

/* Error text (reuse existing form__error id but restyle for this section) */
.contact-v2 .form__error {
  margin-top: 4px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #b91c1c;
  background: rgba(254, 226, 226, 0.6);
  border: 1px solid rgba(220, 38, 38, 0.25);
  padding: 8px 12px;
  border-radius: 8px;
}
.contact-v2 .form__error[hidden] {
  display: none !important;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .contact-v2 .contact-grid { gap: 36px; }
}
@media (max-width: 900px) {
  .contact-v2 .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-v2 .copy-col {
    padding-top: 0;
    max-width: 600px;
  }
  .contact-v2 .contact-headline { font-size: 32px; }
}
@media (max-width: 768px) {
  .contact-v2 .contact-headline { font-size: 28px; line-height: 1.1; }
  .contact-v2 .contact-sub { font-size: 15px; margin-bottom: 22px; }
  .contact-v2 .direct-contacts { margin-bottom: 22px; }
  .contact-v2 .trust-bullets { gap: 8px; margin-bottom: 14px; }
  .contact-v2 .trust-bullet { font-size: 13.5px; }

  .contact-v2 .form-panel { padding: 22px 20px 20px; }
  .contact-v2 .form-header { padding-bottom: 14px; margin-bottom: 18px; gap: 12px; }
  .contact-v2 .form-header-title { font-size: 18px; }
  .contact-v2 .form-header-sub { font-size: 12.5px; }
  .contact-v2 .form-header-pill { font-size: 10px; padding: 4px 9px; }
  .contact-v2 .form-row,
  .contact-v2 .form-row-pair { margin-bottom: 14px; }
  .contact-v2 .form-label { font-size: 12.5px; }
  .contact-v2 .form-input,
  .contact-v2 .form-textarea { padding: 10px 12px; font-size: 13.5px; }
  .contact-v2 .form-textarea { min-height: 80px; }
  .contact-v2 .form-chip { padding: 7px 12px; font-size: 12px; }
  .contact-v2 .form-submit { padding: 13px 18px; font-size: 14px; }
  .contact-v2 .form-reassure { font-size: 12px; }
}
@media (max-width: 480px) {
  .contact-v2 .form-row-pair {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-v2 .copy-col,
  .contact-v2 .form-panel {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .contact-v2 .form-submit.ready::after {
    animation: none !important;
    opacity: 0;
  }
  .contact-v2 .form-chip.is-selected {
    animation: none !important;
  }
}

/* Honeypot — rendered but hidden from sighted users + keyboard nav.
   Bots that auto-fill every input will fill this and get caught server-side. */
.contact-v2 .hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Cloudflare Turnstile mount — empty until JS injects the widget. */
.contact-v2 .cf-turnstile-mount {
  margin-top: 6px;
  margin-bottom: 6px;
  min-height: 0;
  display: flex;
  justify-content: center;
}
.contact-v2 .cf-turnstile-mount:empty {
  display: none;
}

/* ============================================================================
   HALO MANIFEST LOADER — first-visit overlay. Cyan ring sweeps closed around
   the H, soft glow blooms, mark fades in, overlay exits up + fade.
   Inline <head> script handles skip-on-repeat-visit + prefers-reduced-motion
   so the loader never flashes for returning users.
   ============================================================================ */
html.halo-loader-skip .halo-loader {
  display: none !important;
}

/* Lock body scroll while the loader is up so the page can't scroll behind it. */
html.halo-loading,
html.halo-loading body {
  overflow: hidden;
}

.halo-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--bg, #F7F5F2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: auto;
  /* Exit handled by .is-exiting */
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.42s ease,
    transform 0.46s cubic-bezier(0.19, 1, 0.22, 1),
    visibility 0s linear 0.46s;
}

.halo-loader.is-exiting {
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  pointer-events: none;
}

/* Soft cyan glow bloom behind the H */
.halo-loader__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 227, 253, 0.40) 0%, rgba(120, 227, 253, 0.08) 50%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: haloLoaderGlow 900ms cubic-bezier(0.16, 1, 0.3, 1) 80ms forwards;
}

@keyframes haloLoaderGlow {
  0%   { transform: translate(-50%, -50%) scale(0);    opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.9; }
}

/* The ring that sweeps closed around the H */
.halo-loader__ring {
  position: relative;
  width: 150px;
  height: 150px;
  z-index: 1;
}

.halo-loader__ring-arc {
  stroke: var(--accent-blue, #78E3FD);
  stroke-width: 2.5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 314.16; /* 2 * pi * 50 */
  stroke-dashoffset: 314.16;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  animation: haloLoaderRing 720ms cubic-bezier(0.65, 0, 0.45, 1) 60ms forwards;
  filter: drop-shadow(0 0 8px rgba(120, 227, 253, 0.55));
}

@keyframes haloLoaderRing {
  to { stroke-dashoffset: 0; }
}

/* The H mark fades + scales in once the ring is most of the way around */
.halo-loader__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  animation: haloLoaderMark 520ms cubic-bezier(0.16, 1, 0.3, 1) 380ms forwards;
}

@keyframes haloLoaderMark {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Random verb caption — needs to be readable, not just decorative.
   Appears early (180ms) and stays at full opacity so HOLD_MS can hold it. */
.halo-loader__caption {
  position: absolute;
  top: calc(50% + 110px);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--text, #151515);
  white-space: nowrap;
  opacity: 0;
  animation: haloLoaderCaption 320ms cubic-bezier(0.16, 1, 0.3, 1) 180ms forwards;
}

@keyframes haloLoaderCaption {
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .halo-loader,
  .halo-loader__glow,
  .halo-loader__ring-arc,
  .halo-loader__mark,
  .halo-loader__caption {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================================
   HALO CUSTOM CURSOR — light blue dot that follows the cursor with smooth lerp.
   Grows softly when hovering interactive elements. Hidden on touch / coarse
   pointers (CSS class is only added by JS when (hover: hover) + (pointer: fine)
   match). Native cursor is hidden via body.halo-has-cursor-dot.
   ============================================================================ */
.halo-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--accent-blue, #78E3FD);
  box-shadow:
    0 0 0 4px rgba(120, 227, 253, 0.18),
    0 0 14px rgba(120, 227, 253, 0.55);
  pointer-events: none;
  z-index: 99998;
  /* Position is set via translate3d() by JS each frame; width/height/border
     transitioned on hover. */
  transform: translate3d(-100px, -100px, 0);
  transition: width 0.22s cubic-bezier(0.19, 1, 0.22, 1),
              height 0.22s cubic-bezier(0.19, 1, 0.22, 1),
              margin 0.22s cubic-bezier(0.19, 1, 0.22, 1),
              background 0.18s ease,
              box-shadow 0.18s ease,
              opacity 0.18s ease;
  will-change: transform;
}

.halo-cursor.is-hovering {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  background: rgba(120, 227, 253, 0.18);
  box-shadow:
    inset 0 0 0 2px var(--accent-blue, #78E3FD),
    0 0 22px rgba(120, 227, 253, 0.45);
}

.halo-cursor.is-clicking {
  transform: translate3d(var(--cur-x, 0), var(--cur-y, 0), 0) scale(0.7);
}

.halo-cursor.is-hidden {
  opacity: 0;
}

/* Hide native cursor only when the JS-managed dot is active. Form inputs keep
   the native text caret so typing isn't awkward. */
body.halo-has-cursor-dot,
body.halo-has-cursor-dot a,
body.halo-has-cursor-dot button,
body.halo-has-cursor-dot [role="button"],
body.halo-has-cursor-dot .chip,
body.halo-has-cursor-dot .form-chip,
body.halo-has-cursor-dot .haloNav__trigger,
body.halo-has-cursor-dot .zone-chip {
  cursor: none;
}

body.halo-has-cursor-dot input[type="text"],
body.halo-has-cursor-dot input[type="email"],
body.halo-has-cursor-dot input[type="search"],
body.halo-has-cursor-dot input[type="url"],
body.halo-has-cursor-dot input[type="tel"],
body.halo-has-cursor-dot input[type="password"],
body.halo-has-cursor-dot textarea,
body.halo-has-cursor-dot [contenteditable="true"] {
  cursor: text;
}

@media (prefers-reduced-motion: reduce) {
  .halo-cursor {
    transition: opacity 0.15s ease, background 0.15s ease !important;
  }
}

/* ============================================================================
   CURSOR-FOLLOW GLOW — radial cyan wash that tracks the cursor inside cards.
   JS sets --mx / --my as the cursor moves; CSS paints the gradient via ::after.
   Applied to reviews, stats, principles, pricing tiers, service zones, trust
   badges, and the new blog post cards. The original .service-card already has
   its own glow rule (see earlier in this file) and isn't repeated here.
   ============================================================================ */
.reviews-v2-card,
.stats-v2-card,
.values-v2-principle,
.pricing-v2-tier,
.service-area .zone,
.trust-badges .badge,
.post-card,
.social-band .channel {
  position: relative;
  overflow: hidden;
}

.reviews-v2-card::after,
.stats-v2-card::after,
.values-v2-principle::after,
.pricing-v2-tier::after,
.service-area .zone::after,
.trust-badges .badge::after,
.post-card::after,
.social-band .channel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 240px at var(--mx, 50%) var(--my, 50%),
    rgba(120, 227, 253, 0.20) 0%,
    rgba(120, 227, 253, 0.07) 40%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease-out;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
  mix-blend-mode: multiply;
}

.reviews-v2-card:hover::after,
.stats-v2-card:hover::after,
.values-v2-principle:hover::after,
.pricing-v2-tier:hover::after,
.service-area .zone:hover::after,
.trust-badges .badge:hover::after,
.post-card:hover::after,
.social-band .channel:hover::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-v2-card::after,
  .stats-v2-card::after,
  .values-v2-principle::after,
  .pricing-v2-tier::after,
  .service-area .zone::after,
  .trust-badges .badge::after,
  .post-card::after {
    transition: none;
  }
}

/* ============================================================================
   BLOG section ("Notes from the workshop") — homepage teaser. Sits between
   contact-v2 and studio. Scoped under .blog to avoid leaking eyebrow pill,
   section-header, post-card styles into other sections.
   ============================================================================ */
.blog {
  --bl-easing: cubic-bezier(0.19, 1, 0.22, 1);
  --bl-border-soft: rgba(0, 0, 0, 0.08);

  position: relative;
  /* Cyan + peach radial wash on bg-alt — same family as other marketing bands. */
  background:
    radial-gradient(circle at 92% 8%, rgba(250, 216, 180, 0.30) 0%, transparent 55%),
    radial-gradient(circle at 8% 92%, rgba(120, 235, 253, 0.18) 0%, transparent 55%),
    var(--bg-alt);
  overflow: hidden;
}

.blog > .container {
  position: relative;
  z-index: 1;
}

/* --- Section header (split: copy left, View-all CTA right) --- */
.blog .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--bl-easing), transform 0.7s var(--bl-easing);
}
.blog .section-header.in-view,
.blog .section-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.blog .section-header-text { max-width: 640px; }

/* Eyebrow chip removed — Blog inherits the global .eyebrow style. */

.blog .section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.blog .section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 520px;
}

/* "View all posts" pill (top-right on desktop) */
.blog .archive-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--accent-blue);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s var(--bl-easing);
  white-space: nowrap;
}
.blog .archive-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--bl-easing);
}
.blog .archive-link:hover {
  background: var(--accent-blue-deep);
  color: var(--surface);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(120, 227, 253, 0.35);
}
.blog .archive-link:hover svg { transform: translateX(3px); }

.blog .archive-link-mobile { display: none; }

/* --- Mobile single-card swap component (hidden on desktop) --- */
.blog .post-card-mobile { display: none; }

/* --- Desktop 3-card grid --- */
.blog .posts-wrapper { position: relative; }

.blog .posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog .post-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(120, 227, 253, 0.38);
  padding: 24px 24px 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--bl-easing),
    transform 0.6s var(--bl-easing),
    border-color 0.3s var(--bl-easing),
    box-shadow 0.3s var(--bl-easing);
  min-height: 220px;
}
.blog .post-card.in-view,
.blog .post-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.blog .post-card:nth-child(1).in-view,
.blog .post-card:nth-child(1).is-visible { transition-delay: 0.15s; }
.blog .post-card:nth-child(2).in-view,
.blog .post-card:nth-child(2).is-visible { transition-delay: 0.25s; }
.blog .post-card:nth-child(3).in-view,
.blog .post-card:nth-child(3).is-visible { transition-delay: 0.35s; }

.blog .post-card:hover {
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.blog .post-category {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-muted);
  border: 1px solid var(--bl-border-soft);
  transition: all 0.3s var(--bl-easing);
}
.blog .post-card:hover .post-category {
  color: #0b6fa4;
  background: rgba(52, 219, 244, 0.12);
  border-color: rgba(52, 219, 244, 0.32);
}

.blog .post-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
  flex-grow: 1;
}

.blog .post-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog .post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--bl-border-soft);
}

.blog .post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.blog .post-meta-divider { opacity: 0.45; }

.blog .post-meta-pulse {
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
  flex-shrink: 0;
}
.blog .post-card:hover .post-meta-pulse::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-blue-deep);
  animation: blogPostPulse 1.4s ease-out infinite;
}
@keyframes blogPostPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

.blog .post-arrow {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.3s var(--bl-easing);
  flex-shrink: 0;
}
.blog .post-card:hover .post-arrow { background: var(--accent-blue); }

.blog .post-arrow svg {
  width: 12px;
  height: 12px;
  color: var(--text-muted);
  transition: color 0.3s var(--bl-easing), transform 0.4s var(--bl-easing);
}
.blog .post-card:hover .post-arrow svg {
  color: var(--text);
  animation: blogArrowSlide 0.6s var(--bl-easing) forwards;
}
@keyframes blogArrowSlide {
  0%   { transform: translateX(0);    opacity: 1; }
  49%  { transform: translateX(14px); opacity: 0; }
  50%  { transform: translateX(-14px); opacity: 0; }
  100% { transform: translateX(0);    opacity: 1; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .blog .posts { grid-template-columns: repeat(2, 1fr); }
  .blog .posts > .post-card:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .blog .section-header { margin-bottom: 28px; gap: 18px; align-items: flex-start; }
  .blog .section-headline { font-size: 26px; }
  .blog .section-sub { font-size: 14px; }
  .blog .section-header .archive-link { display: none; }
  .blog .archive-link-mobile {
    display: inline-flex;
    margin: 22px auto 0;
    align-self: center;
    width: fit-content;
  }
  .blog .posts-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .blog .posts { display: none; }

  .blog .post-card-mobile {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
    overflow: hidden;
  }
  .blog .post-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
  }
  .blog .post-slide {
    position: absolute;
    inset: 0;
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transition: opacity 0.5s var(--bl-easing);
    pointer-events: none;
  }
  .blog .post-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  .blog .post-slide .post-hero {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .blog .post-slide .post-hero-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .blog [data-category="seo-local"] .post-hero-pattern {
    background:
      radial-gradient(ellipse 80% 60% at 15% 20%, rgba(120, 227, 253, 0.9) 0%, rgba(120, 227, 253, 0.35) 35%, transparent 70%),
      radial-gradient(ellipse 70% 55% at 90% 85%, rgba(237, 217, 196, 0.95) 0%, rgba(237, 217, 196, 0.40) 40%, transparent 75%),
      radial-gradient(circle 40% at 60% 50%, rgba(57, 166, 232, 0.20) 0%, transparent 60%),
      linear-gradient(135deg, #B8E5F5 0%, #DCEEF7 40%, #FBE9D2 100%);
  }
  .blog [data-category="performance"] .post-hero-pattern {
    background:
      radial-gradient(ellipse 80% 60% at 85% 20%, rgba(237, 217, 196, 1) 0%, rgba(237, 217, 196, 0.45) 40%, transparent 75%),
      radial-gradient(ellipse 70% 55% at 10% 85%, rgba(120, 227, 253, 0.85) 0%, rgba(120, 227, 253, 0.30) 40%, transparent 75%),
      radial-gradient(circle 40% at 45% 50%, rgba(213, 167, 116, 0.22) 0%, transparent 60%),
      linear-gradient(135deg, #FBE9D2 0%, #F5DCB8 40%, #C8E9F5 100%);
  }
  .blog .post-slide .post-hero-pattern::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    box-shadow:
      0 0 0 18px rgba(255, 255, 255, 0.30),
      0 0 0 19px rgba(120, 227, 253, 0.35),
      inset 0 0 0 30px rgba(120, 227, 253, 0.16),
      inset 0 0 0 31px rgba(255, 255, 255, 0.4),
      inset 0 0 0 60px rgba(120, 227, 253, 0.10);
  }
  .blog .post-slide .post-hero-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.08) 1px, transparent 0);
    background-size: 18px 18px;
    opacity: 0.6;
  }
  .blog .post-slide .post-hero::before {
    content: '';
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.32) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
  }
  .blog .post-slide .post-hero-mark {
    position: absolute;
    top: 16px;
    left: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.06em;
    opacity: 0.55;
    z-index: 2;
  }
  .blog .post-slide .post-hero-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 56px;
    left: 0;
    right: 0;
    padding: 0 22px 16px;
    z-index: 3;
  }
  .blog .post-slide .post-category {
    align-self: flex-start;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid transparent;
    color: var(--text);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  }
  .blog .post-slide .post-title {
    margin: 0;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  }
  .blog .post-slide .post-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 12px 20px 12px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    border-top: none;
    z-index: 5;
  }
  .blog .post-card-mobile .post-card-controls {
    display: flex;
    position: absolute;
    bottom: 10px;
    right: 16px;
    align-items: center;
    gap: 12px;
    z-index: 10;
  }
  .blog .post-card-dots {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .blog .post-card-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.3s var(--bl-easing), width 0.3s var(--bl-easing);
    cursor: pointer;
  }
  .blog .post-card-dot.active {
    background: var(--accent-blue-deep);
    width: 16px;
    border-radius: 3px;
  }
  .blog .post-card-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--bl-border-soft);
    background: var(--surface);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s var(--bl-easing);
    padding: 0;
    flex-shrink: 0;
  }
  .blog .post-card-arrow:hover {
    border-color: var(--accent-blue-deep);
    background: var(--accent-blue-soft);
  }
  .blog .post-card-arrow svg { width: 13px; height: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .blog .section-header,
  .blog .post-card,
  .blog .post-arrow svg,
  .blog .post-slide {
    transition: opacity 0.15s ease !important;
    animation: none !important;
  }
  .blog .post-meta-pulse::after { animation: none !important; }
}

/* ============================================================================
   SOCIAL BAND ("Find Halo elsewhere") — sits between the blog teaser and the
   trust strip. Scoped under .social-band so the .channel cards don't bleed
   into other sections. Eyebrow uses the GLOBAL plain .eyebrow (no chip), to
   match Reviews / Pricing / etc.
   ============================================================================ */
.social-band {
  --sb-easing: cubic-bezier(0.19, 1, 0.22, 1);
  --sb-border-soft: rgba(0, 0, 0, 0.08);

  position: relative;
  /* Cyan + peach radial wash — same family as Service Area / Trust / Contact / Blog. */
  background:
    radial-gradient(circle at 8% 10%, rgba(120, 235, 253, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 92% 90%, rgba(250, 216, 180, 0.30) 0%, transparent 55%),
    var(--bg-alt);
  overflow: hidden;
  padding-bottom: 64px;
}

.social-band > .container {
  position: relative;
  z-index: 1;
}

/* --- Section header (left-aligned, max-width-constrained) --- */
.social-band .section-header {
  margin-bottom: 36px;
  max-width: 640px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--sb-easing), transform 0.7s var(--sb-easing);
}
.social-band .section-header.in-view,
.social-band .section-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.social-band .section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.social-band .section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 520px;
}

/* --- Channel grid: 4 cards on desktop --- */
.social-band .channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.social-band .channel {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(120, 227, 253, 0.38);
  padding: 20px 20px 18px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--sb-easing),
    transform 0.6s var(--sb-easing),
    border-color 0.3s var(--sb-easing),
    box-shadow 0.3s var(--sb-easing);
}
.social-band .channel.in-view,
.social-band .channel.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.social-band .channel:nth-child(1).in-view,
.social-band .channel:nth-child(1).is-visible { transition-delay: 0.10s; }
.social-band .channel:nth-child(2).in-view,
.social-band .channel:nth-child(2).is-visible { transition-delay: 0.18s; }
.social-band .channel:nth-child(3).in-view,
.social-band .channel:nth-child(3).is-visible { transition-delay: 0.26s; }
.social-band .channel:nth-child(4).in-view,
.social-band .channel:nth-child(4).is-visible { transition-delay: 0.34s; }

.social-band .channel:hover {
  border-color: rgba(120, 227, 253, 0.6);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

/* Border shimmer trace on hover. Uses mask-composite to render as an outline. */
.social-band .channel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 0%,
    transparent 40%,
    var(--accent-blue) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 250% 250%;
  background-position: -100% -100%;
  -webkit-mask:
    linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  transition: opacity 0.4s var(--sb-easing);
  pointer-events: none;
  z-index: 1;
}
.social-band .channel:hover::before {
  opacity: 1;
  animation: socialBorderTrace 1.4s var(--sb-easing);
}
@keyframes socialBorderTrace {
  0%   { background-position: -100% -100%; }
  100% { background-position: 200% 200%; }
}

/* Threads logo gets a subtle breathing pulse — the lead/priority channel. */
.social-band .channel-threads .channel-logo {
  animation: socialLeadBreathe 3s ease-in-out infinite;
}
.social-band .channel-threads:hover .channel-logo {
  animation: none;
}
@keyframes socialLeadBreathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(120, 227, 253, 0); }
  50%      { box-shadow: 0 0 0 5px rgba(120, 227, 253, 0.25); }
}

/* Slide-through arrow: existing icon flies out top-right, new arrow flies in
   from bottom-left. Same animation vocabulary as Recent Work / Pricing. */
.social-band .channel-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue-deep);
  overflow: hidden;
  z-index: 2;
}
.social-band .channel-arrow svg {
  width: 11px;
  height: 11px;
  transition: transform 0.45s var(--sb-easing);
}
.social-band .channel-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2339A6E8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17L17 7M17 7H7M17 7V17'/></svg>");
  background-size: 11px 11px;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-110%, 110%);
  transition: transform 0.45s var(--sb-easing);
}
.social-band .channel:hover .channel-arrow svg,
.social-band .channel:active .channel-arrow svg {
  transform: translate(110%, -110%);
}
.social-band .channel:hover .channel-arrow::before,
.social-band .channel:active .channel-arrow::before {
  transform: translate(0, 0);
}
@media (hover: none) {
  .social-band .channel-arrow {
    background: var(--accent-blue);
    color: var(--text);
  }
}

/* Logo block — square w/ rounded corners + diagonal ink sweep on hover.
   Brand color sweeps in from bottom-left. */
.social-band .channel-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-muted);
  border: 1px solid var(--sb-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--sb-easing), transform 0.4s var(--sb-easing);
}
.social-band .channel-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translate(-100%, 100%);
  transition: transform 0.5s var(--sb-easing);
  z-index: 0;
}
.social-band .channel-logo svg {
  width: 22px;
  height: 22px;
  color: var(--text-muted);
  filter: grayscale(100%);
  opacity: 0.75;
  position: relative;
  z-index: 1;
  transition: color 0.3s var(--sb-easing) 0.15s,
              filter 0.3s var(--sb-easing) 0.15s,
              opacity 0.3s var(--sb-easing) 0.15s,
              transform 0.4s var(--sb-easing);
}
.social-band .channel:hover .channel-logo {
  transform: scale(1.05);
  border-color: transparent;
}
.social-band .channel:hover .channel-logo::before {
  transform: translate(0, 0);
}
.social-band .channel:hover .channel-logo svg {
  filter: grayscale(0%);
  opacity: 1;
  color: #FFFFFF;
}

/* Per-channel brand color reveal */
.social-band .channel-threads:hover .channel-logo::before { background: #000; }
.social-band .channel-facebook:hover .channel-logo::before { background: #1877F2; }
.social-band .channel-instagram:hover .channel-logo::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-band .channel-google:hover .channel-logo::before {
  background: var(--surface);
}
.social-band .channel-google:hover .channel-logo svg {
  filter: none;
  color: inherit;
}

/* Channel identity (name + handle) */
.social-band .channel-identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}
.social-band .channel-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.social-band .channel-handle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Meta strip + pulse dot */
.social-band .channel-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--sb-border-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.social-band .channel-meta-dot {
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
  flex-shrink: 0;
}
.social-band .channel:hover .channel-meta-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-blue-deep);
  animation: socialChannelPulse 1.4s ease-out infinite;
}
@keyframes socialChannelPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Google rating strip — desktop hidden, mobile shown */
.social-band .channel-rating { display: none; }

/* Footer line */
.social-band .social-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed var(--sb-border-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s var(--sb-easing) 0.5s,
              transform 0.7s var(--sb-easing) 0.5s;
}
.social-band .social-footer.in-view,
.social-band .social-footer.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.social-band .social-footer a {
  color: var(--accent-blue-deep);
  text-decoration: none;
  transition: color 0.2s;
}
.social-band .social-footer a:hover { color: var(--text); }
.social-band .social-footer-divider { opacity: 0.4; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .social-band .channels { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .social-band { padding-bottom: 48px; }
  .social-band .section-header { margin-bottom: 28px; }
  .social-band .section-headline { font-size: 26px; }
  .social-band .section-sub { font-size: 14px; }

  .social-band .channels { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .social-band .channel { padding: 16px 16px 14px; gap: 12px; }
  .social-band .channel-logo { width: 36px; height: 36px; }
  .social-band .channel-logo svg { width: 19px; height: 19px; }
  .social-band .channel-name { font-size: 13px; }
  .social-band .channel-handle { font-size: 10px; }
  .social-band .channel-meta { font-size: 10px; padding-top: 10px; }

  /* Hover arrow doesn't make sense on touch — hide it. */
  .social-band .channel-arrow { display: none; }

  /* Threads spans the full top row — it's the primary referrer. */
  .social-band .channel-threads { grid-column: 1 / -1; }

  /* Google spans the full bottom row with star ratings. */
  .social-band .channel-google { grid-column: 1 / -1; }
  .social-band .channel-google .channel-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--sb-border-soft);
  }
  .social-band .channel-google .channel-meta { display: none; }
  .social-band .channel-google .channel-stars {
    display: flex;
    align-items: center;
    gap: 3px;
  }
  .social-band .channel-google .star {
    width: 15px;
    height: 15px;
    color: #FCD34D;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
    transform: scale(0) rotate(-45deg);
    opacity: 0;
    transition: transform 0.5s var(--sb-easing), opacity 0.4s var(--sb-easing);
    transition-delay: calc(var(--i) * 100ms + 200ms);
  }
  .social-band .channel-google.in-view .star,
  .social-band .channel-google.is-visible .star {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
  .social-band .channel-google .channel-rating-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .social-band .channel-google .channel-rating-meta strong {
    color: var(--text);
    font-weight: 600;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-band .channel,
  .social-band .section-header,
  .social-band .social-footer,
  .social-band .channel::before,
  .social-band .channel-threads .channel-logo,
  .social-band .channel-meta-dot::after {
    transition: opacity 0.15s ease !important;
    animation: none !important;
    transform: none !important;
  }
  .social-band .channel-google .star {
    transform: scale(1) rotate(0) !important;
    opacity: 1 !important;
    transition-delay: 0s !important;
  }
}

/* ============================================================================
   ABOUT BAND ("I'm Abe. I'm the whole agency.") — between Values and Pricing.
   Two-column layout: photo card left, bio copy right; "Currently building"
   strip spans full width below. Eyebrow uses the GLOBAL plain .eyebrow.
   Cyan + peach radial wash on bg-alt — same family as other marketing bands.
   ============================================================================ */
.about-band {
  --ab-status-green: #34D399;
  --ab-easing: cubic-bezier(0.19, 1, 0.22, 1);
  --ab-border-soft: rgba(0, 0, 0, 0.08);

  position: relative;
  background:
    radial-gradient(circle at 8% 8%, rgba(120, 235, 253, 0.20) 0%, transparent 55%),
    radial-gradient(circle at 92% 95%, rgba(250, 216, 180, 0.34) 0%, transparent 55%),
    var(--bg-alt);
  overflow: hidden;
}

.about-band > .container {
  position: relative;
  z-index: 1;
}

/* --- Section header --- */
.about-band .section-header {
  margin-bottom: 56px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ab-easing), transform 0.7s var(--ab-easing);
}
.about-band .section-header.in-view,
.about-band .section-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about-band .section-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.about-band .section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 560px;
}

/* --- Two-column grid: photo card + bio --- */
.about-band .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

/* --- LEFT: Photo card --- */
.about-band .photo-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(120, 227, 253, 0.38);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ab-easing) 0.15s,
              transform 0.7s var(--ab-easing) 0.15s,
              border-color 0.3s var(--ab-easing),
              box-shadow 0.3s var(--ab-easing);
}
.about-band .photo-card.in-view,
.about-band .photo-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about-band .photo-card:hover {
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: var(--shadow-soft);
}

.about-band .photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
}
.about-band .photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
  will-change: transform;
  transition: transform 0.8s var(--ab-easing);
}
.about-band .photo-card:hover .photo-frame img {
  transform: scale(1.02);
}

/* Status pill overlaid on the photo */
.about-band .status-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.about-band .status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ab-status-green);
  flex-shrink: 0;
}
.about-band .status-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--ab-status-green);
  opacity: 0;
  animation: aboutStatusPulse 2.2s ease-out infinite;
}
@keyframes aboutStatusPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Photo card meta */
.about-band .photo-meta {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-band .photo-identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-band .photo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-band .name-asterisk {
  width: 12px;
  height: 12px;
  color: var(--accent-blue-deep);
  opacity: 0.7;
  animation: aboutSpinAsterisk 14s linear infinite;
  flex-shrink: 0;
}
@keyframes aboutSpinAsterisk {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.about-band .photo-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* Tag chips inside the photo card */
.about-band .photo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.about-band .photo-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(120, 227, 253, 0.10);
  border: 1px solid rgba(120, 227, 253, 0.28);
  color: var(--accent-blue-deep);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.3s var(--ab-easing);
}
.about-band .photo-tag:hover {
  background: rgba(120, 227, 253, 0.18);
  border-color: rgba(120, 227, 253, 0.45);
  transform: translateY(-1px);
}

/* Quick-link footer row */
.about-band .photo-links {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--ab-border-soft);
}
.about-band .photo-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.about-band .photo-link:hover { color: var(--accent-blue-deep); }
.about-band .photo-link svg {
  width: 11px;
  height: 11px;
}

/* --- RIGHT: Bio copy --- */
.about-band .bio {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ab-easing) 0.25s,
              transform 0.7s var(--ab-easing) 0.25s;
  padding-top: 8px;
}
.about-band .bio.in-view,
.about-band .bio.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about-band .bio p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.about-band .bio p:last-of-type { margin-bottom: 0; }
.about-band .bio strong {
  color: var(--text);
  font-weight: 600;
}
.about-band .bio a {
  color: var(--accent-blue-deep);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  transition: color 0.2s;
}
.about-band .bio a:hover { color: var(--text); }

.about-band .bio .signature-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  font-style: italic;
  margin-top: 24px;
  padding-left: 18px;
  border-left: 2px solid rgba(120, 227, 253, 0.5);
}

/* --- "Currently building" strip --- */
.about-band .currently-building {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(120, 227, 253, 0.38);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ab-easing) 0.35s,
              transform 0.7s var(--ab-easing) 0.35s,
              border-color 0.3s var(--ab-easing),
              box-shadow 0.3s var(--ab-easing);
  overflow: hidden;
}
.about-band .currently-building.in-view,
.about-band .currently-building.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about-band .currently-building:hover {
  border-color: rgba(120, 227, 253, 0.65);
  box-shadow: var(--shadow-soft);
}

/* Shimmer sweep when the strip enters view */
.about-band .currently-building::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(120, 227, 253, 0.18) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.about-band .currently-building.in-view::after,
.about-band .currently-building.is-visible::after {
  animation: aboutShimmerSweep 1.4s cubic-bezier(0.5, 0, 0.5, 1) 0.7s forwards;
}
@keyframes aboutShimmerSweep {
  0%   { left: -100%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.about-band .building-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.about-band .building-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
  flex-shrink: 0;
}
.about-band .building-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--accent-blue-deep);
  opacity: 0;
  animation: aboutBuildingPulse 2.6s ease-out infinite;
}
@keyframes aboutBuildingPulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

.about-band .building-content {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 1;
  min-width: 200px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.about-band .building-project {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.about-band .building-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.about-band .building-meta .divider {
  margin: 0 6px;
  opacity: 0.5;
}

.about-band .building-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-blue-soft);
  color: var(--accent-blue-deep);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ab-easing);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(120, 227, 253, 0.28);
}
.about-band .building-link:hover {
  background: rgba(120, 227, 253, 0.28);
  border-color: rgba(120, 227, 253, 0.45);
  color: var(--text);
  transform: translateY(-1px);
}
.about-band .building-link svg {
  width: 11px;
  height: 11px;
  transition: transform 0.3s var(--ab-easing);
}
.about-band .building-link:hover svg {
  transform: translateX(2px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-band .about-grid { gap: 40px; }
}
@media (max-width: 900px) {
  .about-band .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-band .photo-card { max-width: 380px; }
  .about-band .bio { padding-top: 0; }
}
@media (max-width: 768px) {
  .about-band .section-header { margin-bottom: 36px; }
  .about-band .section-headline { font-size: 30px; }
  .about-band .section-sub { font-size: 15px; }
  .about-band .bio p { font-size: 15.5px; }
  .about-band .bio .signature-line { font-size: 16px; }
  .about-band .currently-building { padding: 14px 18px; gap: 14px; }
  .about-band .building-project { font-size: 15px; }
  .about-band .building-link { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .about-band .name-asterisk,
  .about-band .status-dot::after,
  .about-band .building-dot::after,
  .about-band .currently-building::after {
    animation: none !important;
  }
  .about-band .section-header,
  .about-band .photo-card,
  .about-band .bio,
  .about-band .currently-building {
    transition: opacity 0.15s ease !important;
    transform: none !important;
  }
}

/* ============================================================================
   SITE FOOTER — applies across the whole site. Static index.html injects it
   directly; Next.js subpages render it via MarketingSiteFooter component.
   Brand mark uses /halo-logo.png (same asset as the header).
   ============================================================================ */
.site-footer {
  --sf-easing: cubic-bezier(0.19, 1, 0.22, 1);
  --sf-border-soft: rgba(0, 0, 0, 0.08);

  position: relative;
  background: var(--bg-alt);
  padding: 64px 0 28px;
  overflow: hidden;
}

/* Cyan + peach whisper-glows — same atmosphere family as the marketing bands. */
.site-footer::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
    rgba(120, 227, 253, 0.16) 0%,
    rgba(120, 227, 253, 0.04) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.site-footer::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle,
    rgba(237, 217, 196, 0.30) 0%,
    rgba(237, 217, 196, 0.08) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* --- 4-column grid --- */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.site-footer .footer-col {
  display: flex;
  flex-direction: column;
}

/* --- Column 1: Brand --- */
.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  text-decoration: none;
  transition: transform 0.4s var(--sf-easing);
}
.site-footer .footer-brand img {
  width: 52px;
  height: 52px;
  display: block;
}
.site-footer .footer-brand:hover {
  transform: rotate(-2deg) scale(1.03);
}
.site-footer .footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 18px;
  max-width: 280px;
}
.site-footer .footer-llc-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.site-footer .footer-llc-stamp-dot {
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
  flex-shrink: 0;
}
.site-footer .footer-llc-stamp-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-blue-deep);
  animation: siteFooterPulse 2s ease-out infinite;
}
@keyframes siteFooterPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* Social icon row */
.site-footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.site-footer .footer-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--sf-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s var(--sf-easing);
  flex-shrink: 0;
}
.site-footer .footer-social svg {
  width: 14px;
  height: 14px;
  transition: color 0.3s var(--sf-easing);
}
.site-footer .footer-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
}
.site-footer .footer-social-threads:hover {
  background: #000;
  border-color: #000;
  color: #FFFFFF;
}
.site-footer .footer-social-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF;
}
.site-footer .footer-social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #FFFFFF;
}
.site-footer .footer-social-google:hover {
  background: var(--surface);
  border-color: var(--accent-blue-deep);
  color: var(--accent-blue-deep);
}

/* --- Column headings --- */
.site-footer .footer-col-heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 500;
}

/* --- Column links --- */
.site-footer .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.site-footer .footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s var(--sf-easing), transform 0.25s var(--sf-easing);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.site-footer .footer-link:hover {
  color: var(--accent-blue-deep);
  transform: translateX(2px);
}
.site-footer .footer-link-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s var(--sf-easing), transform 0.3s var(--sf-easing);
}
.site-footer .footer-link:hover .footer-link-icon {
  color: var(--accent-blue-deep);
  transform: rotate(-4deg) scale(1.1);
}

/* "All N cities" CTA */
.site-footer .footer-cities-cta {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed var(--sf-border-soft);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--accent-blue-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  width: fit-content;
  transition: gap 0.25s var(--sf-easing);
}
.site-footer .footer-cities-cta:hover { gap: 10px; }
.site-footer .footer-cities-cta svg {
  width: 13px;
  height: 13px;
}

/* --- Contact column --- */
.site-footer .footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.site-footer .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s var(--sf-easing);
}
.site-footer .footer-contact-item:hover { color: var(--accent-blue-deep); }
.site-footer .footer-contact-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-blue-deep);
  flex-shrink: 0;
}

/* Response time chip */
.site-footer .footer-response {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-blue-soft);
  border: 1px solid rgba(120, 227, 253, 0.32);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: #0b6fa4;
  letter-spacing: 0.03em;
  width: fit-content;
}
.site-footer .footer-response-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-blue-deep);
}

/* --- Bottom bar --- */
.site-footer .footer-bottom {
  border-top: 1px solid var(--sf-border-soft);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .footer-bottom-contact { display: none; }
.site-footer .footer-bottom-meta { display: contents; }

.site-footer .footer-copyright {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.site-footer .footer-copyright .footer-copyright-divider {
  opacity: 0.4;
  margin: 0 8px;
}
.site-footer .footer-legal {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}
.site-footer .footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s var(--sf-easing);
}
.site-footer .footer-legal a:hover { color: var(--text); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
  .site-footer .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer { padding: 32px 0 18px; }
  .site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
    margin-bottom: 20px;
  }
  .site-footer .footer-col-brand {
    grid-column: 1 / -1;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--sf-border-soft);
  }
  .site-footer .footer-brand {
    margin-bottom: 8px;
  }
  .site-footer .footer-brand img {
    width: 44px;
    height: 44px;
  }
  .site-footer .footer-tagline {
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 12px;
    max-width: none;
  }
  .site-footer .footer-llc-stamp { font-size: 10px; }
  .site-footer .footer-socials {
    margin-top: 14px;
    gap: 6px;
  }
  .site-footer .footer-social {
    width: 30px;
    height: 30px;
  }
  .site-footer .footer-social svg {
    width: 13px;
    height: 13px;
  }
  .site-footer .footer-col-heading {
    font-size: 9.5px;
    margin-bottom: 12px;
  }
  .site-footer .footer-links { gap: 8px; }
  .site-footer .footer-link { font-size: 12.5px; }

  /* Trim coverage list to 3 cities + CTA on mobile */
  .site-footer .footer-col:nth-child(3) .footer-links li:nth-child(n+4) {
    display: none;
  }
  .site-footer .footer-cities-cta {
    font-size: 12px;
    margin-top: 8px;
    padding-top: 8px;
  }

  /* Hide "Get in touch" column on mobile — its content moves to bottom-bar pills */
  .site-footer .footer-col:last-child { display: none; }

  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 16px;
  }
  .site-footer .footer-bottom-contact {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .site-footer .footer-bottom-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--sf-border-soft);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.25s var(--sf-easing);
  }
  .site-footer .footer-bottom-contact a:active {
    border-color: var(--accent-blue-deep);
    background: var(--accent-blue-soft);
  }
  .site-footer .footer-bottom-contact svg {
    width: 12px;
    height: 12px;
    color: var(--accent-blue-deep);
  }
  .site-footer .footer-bottom-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .site-footer .footer-copyright {
    font-size: 10px;
    flex: 1;
    min-width: 0;
  }
  .site-footer .footer-copyright .footer-copyright-divider,
  .site-footer .footer-copyright-extra { display: none; }
  .site-footer .footer-legal {
    gap: 12px;
    font-size: 11px;
    flex-shrink: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer .footer-llc-stamp-dot::after { animation: none !important; }
  .site-footer .footer-brand,
  .site-footer .footer-social,
  .site-footer .footer-link,
  .site-footer .footer-link-icon,
  .site-footer .footer-cities-cta {
    transition: none !important;
    transform: none !important;
  }
}
