@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&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 */

  /* 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: 72px;
  --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);
}

.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(52, 246, 242, 0.10), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(120, 227, 253, 0.08), 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: #0284c7;
  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: #0284c7;

  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: #f4f0ea;
  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: echo the Websites gradient */
.work__item.card--primary {
  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-color: rgba(52, 148, 255, 0.35);
}

/* Secondary case-study cards: cool-tinted neutrals like Hosting / IT */
.work__item.card--flat:nth-child(2),
.work__item.card--flat:nth-child(3) {
  background: linear-gradient(145deg,
      rgba(240, 245, 255, 0.85),
      #ffffff 60%);
}

/* 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(240, 245, 255, 0.9), rgba(247, 245, 242, 1));
  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);

  /* Same gradient as section-reasons / your original Delivery row (unchanged) */
  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);

  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: #0284c7;
  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: #0284c7;
  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: #0284c7;
  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: #0284c7;
  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;
  }
}

.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: 40px
  }

  .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(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);
  }

  .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 */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  color: var(--text);

  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 400ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 400ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  box-shadow: 0 12px 32px rgba(120, 227, 253, 0.3);
  color: var(--text);
}

.back-to-top svg {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* 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;
  }
}

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

#pricing .pricing-card.service-card {
  padding: 20px 20px 22px;
}

#pricing .pricing-card__range.h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2.6vw, 1.62rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

#pricing .pricing-card .service-cta {
  margin-top: 14px;
}

/* Pricing is not in .services-band — stack on small screens (avoid services mobile carousel rules) */
@media (max-width: 960px) {
  #pricing .pricing-grid.services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

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

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

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

.areas-layout {
  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);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
}

.haloNav__brand.logo {
  flex-shrink: 0;
  margin-right: clamp(4px, 1.5vw, 16px);
}

.haloNav .logo__img {
  width: 56px;
  height: 56px;
}

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

.haloNav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  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;
}

.haloNav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  z-index: 50;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 300px;
  max-width: calc(100vw - 28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: var(--shadow-soft);
}

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

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

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

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

.haloNav__ddItem {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background 0.12s ease;
}

.haloNav__ddItem:hover {
  background: var(--surface-muted);
}

.haloNav__ddTitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);
  margin-bottom: 2px;
}

.haloNav__ddDesc {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.haloNav__ddDivider {
  height: 1px;
  background: var(--border-soft);
  margin: 6px 0;
}

.haloNav__ddFooter {
  padding: 10px 14px 2px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.haloNav__ddFooter a {
  color: var(--accent-blue-deep);
  font-weight: 500;
  text-decoration: none;
}

.haloNav__ddFooter a:hover {
  text-decoration: underline;
}

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

.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 */
  .haloNav {
    justify-content: space-between;
    align-items: center;
  }

  .haloNav__brand.logo {
    margin-right: 0;
  }

  .haloNav__burger.menu {
    flex-shrink: 0;
  }

  .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 {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.halo-mobnav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10005;
  flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
  /* Match Halo marketing cream / ink — same tokens as hero + bands, not imported slate-blues */
  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);
}

.halo-mobnav.is-open {
  display: flex;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
}

.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;
}

.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;
  }
}

/* ============================================
   RECENT WORK v3 — drag carousel
   Tokens reuse the homepage palette; --bg-rw isolates the band background
   so the soft fade-out gradient lands on a known color.
   ============================================ */
.rw-section {
  --bg-rw: #f4f0ea;
  --rw-pad-x: 32px;
  --rw-container: 1200px;
  --rw-easing: cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  background: var(--bg-rw);
  padding: 80px 0 96px;
  overflow: hidden;
}

.rw-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
    rgba(120, 227, 253, 0.22) 0%,
    rgba(120, 227, 253, 0.06) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.rw-section::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    rgba(237, 217, 196, 0.45) 0%,
    rgba(237, 217, 196, 0.15) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.rw-container {
  position: relative;
  z-index: 1;
}

.rw-header {
  margin-bottom: 40px;
  max-width: 720px;
}

.rw-eyebrow {
  display: inline-flex;
  align-items: center;
  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-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.rw-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text, #151515);
  margin: 0 0 16px;
}

.rw-headline em {
  font-style: normal;
  color: var(--text, #151515);
}

.rw-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary, #5e5e5e);
  max-width: 560px;
  margin: 0;
}

.rw-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.rw-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #8a8a8a;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rw-counter {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 16px;
  overflow: hidden;
  color: var(--text, #151515);
  font-weight: 500;
}

.rw-counter-digit {
  position: absolute;
  inset: 0;
  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;
}

.rw-counter-digit.exit { transform: translateY(-100%); opacity: 0; }
.rw-counter-digit.enter { transform: translateY(100%); opacity: 0; }
.rw-counter-digit.enter.active { transform: translateY(0); opacity: 1; }

.rw-total-count { color: var(--text, #151515); font-weight: 500; }

.rw-nav { display: flex; gap: 8px; }

.rw-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: var(--text, #151515);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--rw-easing);
}

.rw-nav-btn:hover:not(:disabled) {
  background: var(--text, #151515);
  color: #ffffff;
  border-color: var(--text, #151515);
  transform: translateY(-1px);
}

.rw-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.rw-nav-btn svg { width: 16px; height: 16px; }

.rw-carousel-wrapper {
  position: relative;
  /* extend the rail past the container's right edge into the gutter */
  margin-right: calc(-1 * max(var(--rw-pad-x), (100vw - var(--rw-container)) / 2 + var(--rw-pad-x)));
}

.rw-carousel-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;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.rw-carousel-track::-webkit-scrollbar { display: none; }

.rw-carousel-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.rw-carousel-track.dragging .rw-card { pointer-events: none; }

.rw-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 8px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--bg-rw) 80%);
  pointer-events: none;
  z-index: 2;
}

.rw-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 340px;
  max-width: 420px;
  scroll-snap-align: start;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.4s var(--rw-easing),
              box-shadow 0.4s var(--rw-easing),
              border-color 0.4s var(--rw-easing);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(120, 227, 253, 0.38);
  display: flex;
  flex-direction: column;
}

.rw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(120, 227, 253, 0.65);
}

.rw-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1f1f1f 0%, #3a3a3a 100%);
}

.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.20) 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;
}

.rw-card:hover .rw-card-image::before { opacity: 1; }

.rw-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--rw-easing);
}

.rw-card:hover .rw-card-image img { transform: scale(1.03); }

.rw-card-image-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: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.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, #151515);
  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;
}

.rw-card:hover .rw-card-tag {
  padding: 7px 16px;
  background: rgba(255, 255, 255, 1);
}

.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, #151515);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}

.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;
}

.rw-card-arrow .rw-arrow-1 { transform: translate(0, 0); }
.rw-card-arrow .rw-arrow-2 { transform: translate(-22px, 22px); }

.rw-card:hover .rw-card-arrow {
  background: #78E3FD;
  color: var(--text, #151515);
}

.rw-card:hover .rw-card-arrow .rw-arrow-1 { transform: translate(22px, -22px); }
.rw-card:hover .rw-card-arrow .rw-arrow-2 { transform: translate(0, 0); }

.rw-card-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.rw-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, #151515);
  margin: 0;
}

.rw-card-outcome {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary, #5e5e5e);
  margin: 0;
  flex-grow: 1;
}

.rw-card-stack {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #8a8a8a;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}

.rw-card-stack span {
  color: #39A6E8;
  margin: 0 6px;
}

.rw-progress {
  margin-top: 32px;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
  max-width: 200px;
  margin-left: auto;
  margin-right: 0;
}

.rw-progress-bar {
  height: 100%;
  background: rgba(57, 166, 232, 0.55);
  border-radius: 2px;
  width: 30%;
  transform-origin: left center;
  transition: width 0.2s ease-out;
}

.rw-progress-bar.bounce-end { animation: rwBounceEnd 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.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); }
}

@media (max-width: 768px) {
  .rw-section { padding: 56px 0 72px; }
  .rw-header { margin-bottom: 28px; }
  .rw-headline { font-size: 32px; }
  .rw-sub { font-size: 15px; }
  .rw-controls { margin-bottom: 18px; }
  .rw-nav { display: none; }
  .rw-carousel-wrapper { margin-right: -20px; margin-left: -20px; }
  .rw-carousel-track { gap: 16px; padding: 0 20px 8px; scroll-padding: 0 20px; }
  .rw-card { flex: 0 0 85%; min-width: unset; max-width: 360px; }
  .rw-card-content { padding: 18px 18px 22px; }
  .rw-card-title { font-size: 19px; }
  .rw-card-outcome { font-size: 14px; }
  .rw-carousel-wrapper::after { display: none; }
  .rw-progress { margin: 24px 20px 0; max-width: none; }
}

/* ============================================
   GLOBAL CURSOR GLOW — opt-in via [data-glow]
   Mouse-following radial highlight at --mx/--my.
   script.js attaches one delegated listener that
   maintains the CSS vars; ::before paints the glow
   behind text but above the element background.
   ============================================ */
[data-glow] {
  position: relative;
  isolation: isolate;
}

[data-glow]::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle 260px at var(--mx, 50%) var(--my, 50%),
    rgba(120, 227, 253, 0.18) 0%,
    rgba(120, 227, 253, 0.06) 35%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease-out;
  pointer-events: none;
  z-index: -1;
}

[data-glow]:hover::before { opacity: 1; }

/*
  RW cards already paint their own image-scoped glow on .rw-card-image::before.
  Suppress the global [data-glow]::before so the two effects don't double up.
*/
.rw-card[data-glow]::before { content: none; }
.rw-card[data-glow] { isolation: auto; }

@media (prefers-reduced-motion: reduce) {
  .rw-counter-digit,
  .rw-card,
  .rw-card-arrow svg,
  .rw-card-image img,
  .rw-nav-btn,
  [data-glow]::before {
    transition: none !important;
    animation: none !important;
  }
}
