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

:root {
  --bg: #fafafa;
  --fg: #18181b;
  --orange: #ff5a00;
  --orange-hover: color-mix(in oklab, var(--orange) 88%, black);
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --surface-cream: #fff7f0;
  --surface-paper: #f3f5f8;
  --surface-slate: #e8ecf2;
  --surface-ivory: #fffdf8;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(88px + var(--safe-bottom));
}

.font-heading {
  font-family: "Outfit", "DM Sans", system-ui, sans-serif;
}

::selection {
  background: color-mix(in oklab, var(--orange) 35%, white);
}

a {
  color: inherit;
  text-underline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgb(228 228 231 / 0.85);
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand__logo {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
}

.brand__text {
  display: none;
  font-family: Outfit, DM Sans, system-ui, sans-serif;
}

@media (min-width: 640px) {
  .brand__text {
    display: block;
    line-height: 1.2;
    font-weight: 700;
    color: var(--zinc-900);
  }

  .brand__text-small {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--zinc-700);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.nav-desktop a:hover {
  background: var(--zinc-100);
  color: var(--zinc-900);
}

.nav-mobile-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--zinc-200);
  border-radius: 0.5rem;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zinc-900);
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-mobile-trigger {
    display: none;
  }
}

.nav-mobile {
  padding: 0.5rem;
  margin-top: 0.75rem;
  border: 1px solid var(--zinc-200);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 10px 30px rgb(15 23 42 / 0.08);
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
}

.nav-mobile a {
  padding: 0.5rem 0.65rem;
  border-radius: 0.45rem;
  font-size: 0.875rem;
  color: var(--zinc-700);
  text-decoration: none;
}

.nav-mobile a:hover {
  background: var(--zinc-50);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--zinc-950);
  color: #fff;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.16) translateX(4%);
  transform-origin: left center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--zinc-950) 0%,
    rgb(9 9 11 / 0.86) 43%,
    rgb(9 9 11 / 0.3) 100%
  );
}

.hero__inner {
  position: relative;
  padding-block: clamp(3.75rem, 10vw, 7rem);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pill-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgb(255 255 255 / 0.15);
  background: rgb(255 255 255 / 0.1);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(228 228 231);
  max-width: 100%;
}

.pill-badge .dim {
  color: rgb(255 255 255 / 0.4);
}

.hero h1 {
  margin: 0;
  font-family: Outfit, DM Sans, system-ui, sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  max-width: 18ch;
}

.text-orange {
  color: var(--orange);
}

.hero__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgb(212 212 216);
  max-width: 42rem;
}

.hero-proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 44rem;
}

@media (min-width: 640px) {
  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero-proof li {
  min-height: 5.25rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 0.85rem;
  background: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  display: block;
  font-family: Outfit, DM Sans, system-ui, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
}

.hero-proof span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgb(212 212 216);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.12);
}

.btn--primary:hover {
  background: var(--orange-hover);
}

.btn--ghost-light {
  border-color: rgb(255 255 255 / 0.28);
  background: rgb(255 255 255 / 0.05);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn--ghost-light:hover {
  background: rgb(255 255 255 / 0.12);
}

.btn--outline {
  border-color: var(--zinc-200);
  background: #fff;
  color: var(--zinc-900);
}

.btn--outline:hover {
  border-color: color-mix(in oklab, var(--orange) 45%, white);
}

.link-soft {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(212 212 216);
  text-decoration: none;
}

.link-soft:hover {
  color: #fff;
}

.section {
  padding-block: clamp(3.25rem, 7vw, 5rem);
}

.section--muted {
  background: var(--zinc-100);
}

.section-band--cream {
  background: linear-gradient(
    165deg,
    var(--surface-ivory) 0%,
    var(--surface-cream) 52%,
    #fff 100%
  );
}

.section-band--paper {
  background: var(--surface-paper);
}

.section-band--slate {
  background: linear-gradient(180deg, var(--surface-slate) 0%, var(--surface-paper) 100%);
}

.section--invert {
  background: var(--zinc-950);
  color: #fff;
}

.section--invert.section-band--ink {
  box-shadow: inset 5px 0 0 0 var(--orange);
  background:
    linear-gradient(95deg, color-mix(in oklab, var(--orange) 12%, var(--zinc-950)) 0%, var(--zinc-950) 28%);
}

.invert-muted {
  color: rgb(212 212 216) !important;
}

.invert-muted-soft {
  color: rgb(161 161 170) !important;
}

.hero .mountain-edge svg {
  color: var(--surface-cream);
}

.card--accent {
  border-left: 4px solid var(--orange);
  background: #fff;
  box-shadow:
    0 1px 3px rgb(0 0 0 / 0.04),
    0 14px 36px rgb(15 23 42 / 0.05);
}

.btn--sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
  border-radius: 0.65rem;
}

.header-cta {
  margin-left: 0.35rem;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .header-cta {
    display: none;
  }
}

.hero__tertiary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin-top: 0.25rem;
}

.hero__tertiary a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgb(212 212 216);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__tertiary a:hover {
  color: #fff;
}

.hero__tertiary .dim {
  color: rgb(113 113 122);
  text-decoration: none;
}

.check-grid.is-on-tint li {
  background: #fff;
  border-color: color-mix(in oklab, var(--orange) 18%, var(--zinc-200));
}

.faq-block .section-title {
  margin-bottom: 0.25rem;
}

.faq-list {
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--zinc-200);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgb(15 23 42 / 0.04);
}

.faq-item {
  border-block-end: 1px solid var(--zinc-200);
}

.faq-item:last-child {
  border-block-end: none;
}

.faq-q {
  margin: 0;
  padding: 1rem 1.15rem;
  font-family: Outfit, DM Sans, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 650;
  color: var(--zinc-900);
  background: color-mix(in oklab, var(--surface-paper) 55%, white);
}

.faq-a {
  margin: 0;
  padding: 0.85rem 1.15rem 1.1rem;
  font-size: 0.875rem;
  color: var(--zinc-600);
  line-height: 1.58;
}

.form-response-note {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--zinc-500);
}

.trusted.on-band {
  border-block-color: color-mix(in oklab, var(--orange) 22%, var(--zinc-200));
  background: linear-gradient(180deg, #fff 0%, var(--surface-paper) 100%);
}

.mountain-edge {
  position: relative;
}

.mountain-edge svg {
  display: block;
  width: 100%;
  height: 3rem;
  color: var(--zinc-100);
}

.section--muted + .mountain-edge svg,
.mountain-edge--on-white svg {
  color: #fff;
}

.prose-intro {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--zinc-600);
  max-width: 48rem;
}

.prose-intro strong {
  color: var(--zinc-900);
  font-weight: 650;
}

h2.section-title {
  margin: 0;
  font-family: Outfit, DM Sans, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--zinc-900);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.section--invert h2.section-title {
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.trusted {
  border-block: 1px solid var(--zinc-200);
  background: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.trusted__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.trusted-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trusted-list li {
  border: 1px solid var(--zinc-200);
  border-radius: 999px;
  background: #fff;
  padding: 0.65rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--zinc-800);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.check-grid {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.875rem;
}

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

.check-grid li {
  display: flex;
  gap: 0.625rem;
  padding: 0.95rem 1.1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--zinc-200);
  background: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.03);
}

.check-grid svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--orange);
}

.check-grid span {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--zinc-700);
}

.cards-3up {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.cards-compact {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cards-3up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cards-3up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  border-radius: 1rem;
  border: 1px solid var(--zinc-200);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgb(244 244 245 / 0.55);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.03);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.card:hover {
  border-color: color-mix(in oklab, var(--orange) 35%, var(--zinc-200));
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.06);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--zinc-950);
}

.card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: var(--orange);
  fill: none;
}

.card h3 {
  margin: 1.35rem 0 0;
  font-family: Outfit, DM Sans, sans-serif;
  font-size: 1.125rem;
  font-weight: 650;
}

.card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--zinc-600);
  line-height: 1.6;
}

.split-2 {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 900px) {
  .split-2--wide {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

.section-kicker-grid {
  display: grid;
  gap: 1.25rem;
  align-items: end;
}

@media (min-width: 840px) {
  .section-kicker-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  }
}

.image-strip {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

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

@media (min-width: 1024px) {
  .image-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.image-strip a {
  display: grid;
  min-height: 18rem;
  overflow: hidden;
  border-radius: 1rem;
  color: #fff;
  text-decoration: none;
  background: var(--zinc-900);
  box-shadow: 0 18px 42px rgb(15 23 42 / 0.12);
}

.image-strip img,
.image-strip span {
  grid-area: 1 / 1;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.image-strip span {
  align-self: end;
  padding: 1rem;
  font-family: Outfit, DM Sans, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(0deg, rgb(9 9 11 / 0.88), transparent);
}

.image-strip a:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.mini-checks {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.mini-checks li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--zinc-700);
}

.mini-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--orange);
}

.section--invert .mini-checks li,
.mini-checks.invert-muted li {
  color: rgb(212 212 216);
}

.case-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 840px) {
  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.case-card {
  overflow: hidden;
  border: 1px solid var(--zinc-200);
  border-radius: 1rem;
  background: #fff;
  padding: 0;
  box-shadow: 0 14px 36px rgb(15 23 42 / 0.06);
}

.case-card__media {
  margin: 0;
  padding: 0;
}

.case-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-card__tag,
.case-card h3,
.case-card p:not(.case-card__tag) {
  margin-left: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-right: clamp(1.35rem, 2.5vw, 1.75rem);
}

.case-card__tag {
  margin: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.35rem, 2.5vw, 1.75rem) 0;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-card p:last-child {
  margin-bottom: clamp(1.35rem, 2.5vw, 1.75rem);
}

.case-card h3 {
  margin: 0.45rem clamp(1.35rem, 2.5vw, 1.75rem) 0;
  font-family: Outfit, DM Sans, system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.case-card p:not(.case-card__tag) {
  margin: 0.8rem clamp(1.35rem, 2.5vw, 1.75rem) 0;
  color: var(--zinc-600);
  font-size: 0.9rem;
  line-height: 1.55;
}

.case-card strong {
  color: var(--zinc-900);
}

.quote-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  border: 1px solid color-mix(in oklab, var(--orange) 20%, var(--zinc-200));
  border-radius: 1.25rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  background: #fff;
  box-shadow: 0 18px 44px rgb(15 23 42 / 0.08);
}

@media (min-width: 840px) {
  .quote-panel {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.75fr);
  }
}

.quote-panel__box {
  border-radius: 1rem;
  background: var(--zinc-950);
  color: #fff;
  padding: clamp(1.35rem, 3vw, 1.75rem);
}

.quote-panel__box h3 {
  margin: 0;
  font-family: Outfit, DM Sans, system-ui, sans-serif;
  font-size: 1.1rem;
}

.quote-panel__box .mini-checks li {
  color: rgb(228 228 231);
}

.area-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.area-list li {
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--orange) 24%, var(--zinc-200));
  background: #fff;
  padding: 0.7rem 1rem;
  font-weight: 700;
  color: var(--zinc-800);
}

.center-stage {
  display: grid;
  justify-items: center;
  text-align: center;
}

.center-stage .prose-intro {
  margin-top: 1rem;
  margin-inline: auto;
}

.flow-intro,
.flow-proof,
.flow-case-study,
.flow-area {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.75rem, 9vw, 8rem);
}

.flow-intro {
  background:
    radial-gradient(circle at 85% 10%, rgb(255 90 0 / 0.1), transparent 28rem),
    linear-gradient(180deg, var(--surface-cream) 0%, var(--surface-ivory) 100%);
}

.service-pillars {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.875rem;
  width: min(100%, 56rem);
}

@media (min-width: 760px) {
  .service-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-pillars li {
  min-height: 9.5rem;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--orange) 18%, var(--zinc-200));
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.94), rgb(255 255 255 / 0.74)),
    var(--surface-ivory);
  padding: 0;
  box-shadow: 0 20px 48px rgb(15 23 42 / 0.07);
  text-align: left;
}

.service-pillar__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-pillar__body {
  padding: 1.35rem;
}

.service-pillars strong {
  display: block;
  font-family: Outfit, DM Sans, system-ui, sans-serif;
  font-size: 1.1rem;
  color: var(--zinc-950);
}

.service-pillars span {
  display: block;
  margin-top: 0.55rem;
  color: var(--zinc-600);
  font-size: 0.9rem;
  line-height: 1.55;
}

.flow-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(38rem, 78vw, 50rem);
  padding-block: clamp(5.5rem, 10vw, 8.5rem);
  background:
    linear-gradient(180deg, #fff 0%, var(--surface-paper) 100%);
}

.flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 14% 12%, rgb(255 90 0 / 0.08), transparent 22rem),
    linear-gradient(180deg, var(--surface-ivory), var(--surface-paper));
}

.flow-section--dark {
  background: var(--zinc-950);
}

.flow-section--dark::before {
  background:
    radial-gradient(circle at 18% 20%, rgb(255 90 0 / 0.16), transparent 28rem),
    linear-gradient(180deg, var(--zinc-950), #141416);
}

.flow-bg {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  inset-block: clamp(2.25rem, 6vw, 4.5rem);
  width: min(78vw, 66rem);
  border: 1px solid rgb(255 255 255 / 0.45);
  border-radius: 2.25rem;
  box-shadow:
    0 32px 90px rgb(15 23 42 / 0.18),
    inset 0 1px 0 rgb(255 255 255 / 0.22);
}

.flow-bg__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.flow-section--right .flow-bg::after {
  background: linear-gradient(90deg, rgb(9 9 11 / 0.52), rgb(9 9 11 / 0.06));
}

.flow-section--left .flow-bg::after {
  background: linear-gradient(270deg, rgb(9 9 11 / 0.52), rgb(9 9 11 / 0.06));
}

.flow-section--right .flow-bg {
  right: max(-9vw, -7rem);
}

.flow-section--left .flow-bg {
  left: max(-9vw, -7rem);
}

.flow-section--dark .flow-bg {
  opacity: 0.78;
  border-color: rgb(255 255 255 / 0.12);
}

.zigzag-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  min-height: clamp(26rem, 54vw, 38rem);
}

.flow-panel {
  width: min(100%, 35rem);
  border: 1px solid rgb(255 255 255 / 0.65);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.95), rgb(255 253 248 / 0.9));
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow:
    0 24px 70px rgb(15 23 42 / 0.14),
    inset 0 1px 0 rgb(255 255 255 / 0.85);
}

.flow-panel--right {
  grid-column: 2;
  justify-self: end;
}

.flow-section--dark .flow-panel {
  border-color: rgb(255 255 255 / 0.13);
  background:
    linear-gradient(180deg, rgb(24 24 27 / 0.96), rgb(9 9 11 / 0.94));
  color: #fff;
  box-shadow:
    0 26px 80px rgb(0 0 0 / 0.32),
    inset 0 1px 0 rgb(255 255 255 / 0.12);
}

.flow-panel .section-title,
.flow-panel h2 {
  color: var(--zinc-950);
}

.flow-section--dark .flow-panel .section-title,
.flow-section--dark .flow-panel h2 {
  color: #fff;
}

.flow-panel p {
  margin: 1rem 0 0;
  color: var(--zinc-600);
  font-size: 1rem;
  line-height: 1.7;
}

.flow-section--dark .flow-panel p {
  color: rgb(212 212 216);
}

.flow-link {
  display: inline-flex;
  margin-top: 1.45rem;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
}

.flow-link:hover {
  text-decoration: underline;
}

.flow-proof {
  background:
    linear-gradient(180deg, var(--zinc-950), #161618);
  color: #fff;
}

.flow-proof .section-title {
  color: #fff;
}

.flow-proof .prose-intro {
  color: rgb(212 212 216);
}

.flow-proof__wash {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(180deg, rgb(9 9 11 / 0.7), rgb(9 9 11 / 0.94)),
    url("../../images/gallery/05-office-ud-trucks-wall-graphics.jpg");
  background-size: cover;
  background-position: center;
}

.trusted-list--centered {
  justify-content: center;
}

.flow-proof .trusted-list li {
  border-color: rgb(255 255 255 / 0.16);
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  box-shadow: none;
}

.flow-case-study {
  background:
    radial-gradient(circle at 4% 20%, rgb(255 90 0 / 0.09), transparent 24rem),
    linear-gradient(180deg, var(--surface-ivory), var(--surface-cream));
}

.case-ribbon {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 840px) {
  .case-ribbon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .case-ribbon .case-card:nth-child(2) {
    margin-top: 4rem;
  }

  .case-ribbon .case-card:nth-child(3) {
    margin-top: 1.5rem;
  }
}

.flow-area {
  background:
    linear-gradient(180deg, var(--surface-paper), #fff);
}

.flow-area .area-list {
  justify-content: center;
}

.flow-section--dark .mini-checks li {
  color: rgb(228 228 231);
}

@media (max-width: 839px) {
  .flow-intro,
  .flow-proof,
  .flow-case-study,
  .flow-area {
    padding-block: 4rem;
  }

  .flow-section {
    min-height: 0;
    padding-block: 0 4rem;
  }

  .flow-bg {
    position: relative;
    display: block;
    inset: auto;
    overflow: hidden;
    width: calc(100% - 2rem);
    height: 18rem;
    margin: 1rem auto 0;
    border-radius: 1.35rem;
  }

  .flow-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .flow-section--right .flow-bg,
  .flow-section--left .flow-bg {
    left: auto;
    right: auto;
  }

  .zigzag-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 1.25rem;
  }

  .flow-panel,
  .flow-panel--right {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
  }

  .flow-panel {
    border-radius: 1rem;
  }
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: clamp(2.75rem, 6vw, 3.25rem);
  background: linear-gradient(135deg, var(--orange) 0%, #c2410c 100%);
  text-align: center;
  box-shadow:
    0 16px 50px rgb(255 90 0 / 0.2),
    0 8px 20px rgb(0 0 0 / 0.15);
}

.cta-banner h2 {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
}

.cta-banner p {
  margin: 0.875rem auto 0;
  max-width: 32rem;
  color: rgb(255 237 213);
}

.cta-banner__actions {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.cta-banner .btn-dark-on-orange {
  background: var(--zinc-950);
  color: #fff;
}

.cta-banner .btn-dark-on-orange:hover {
  background: #27272a;
}

.cta-banner .btn-outline-light {
  border-color: rgb(255 255 255 / 0.45);
  background: rgb(255 255 255 / 0);
  color: #fff;
}

.cta-banner .btn-outline-light:hover {
  background: rgb(255 255 255 / 0.12);
}

.site-footer {
  border-top: 1px solid #27272a;
  background: var(--zinc-950);
  color: rgb(212 212 216);
}

.site-footer > .container {
  padding-block: clamp(2.75rem, 5vw, 3.75rem);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: minmax(0, 22rem) 1fr;
    justify-content: space-between;
  }
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  font-size: 0.875rem;
}

.footer-nav h4 {
  margin: 0 0 0.625rem;
  font-family: Outfit, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  color: rgb(209 213 219);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-rule {
  border-top: 1px solid #27272a;
}

.footer-rule .container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-block: 1.5rem;
  font-size: 0.6875rem;
  color: var(--zinc-500);
}

.footer-areas {
  margin: 0;
  width: 100%;
  font-size: 0.75rem;
  color: rgb(161 161 170);
}

@media (min-width: 640px) {
  .footer-rule .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form-card {
  border-radius: 1rem;
  border: 1px solid var(--zinc-200);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.04);
}

.form-card label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zinc-800);
}

.optional {
  font-weight: 400;
  color: var(--zinc-500);
}

.field {
  margin-top: 1.1rem;
}

.field:first-child {
  margin-top: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--zinc-300);
  font: inherit;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

.field select {
  background: #fff;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgb(255 90 0 / 0.2);
}

.field button[type="submit"] {
  border: none;
  cursor: pointer;
}

.form-note {
  margin-top: 0.875rem;
  font-size: 0.6875rem;
  line-height: 1.55;
  color: var(--zinc-600);
}

.form-note a {
  color: var(--orange);
  font-weight: 650;
}

.form-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.form-status {
  margin: 0.75rem 0 0;
  min-height: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--zinc-600);
}

.form-status--pending {
  color: var(--zinc-600);
}

.form-status--success {
  color: #047857;
}

.form-status--error {
  color: #b91c1c;
}

.gallery-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--zinc-200);
  background: #fff;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04);
}

.gallery-item__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--zinc-200);
}

.gallery-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover .gallery-item__thumb img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  padding: 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--zinc-800);
  line-height: 1.4;
}

.article h2 {
  font-family: Outfit, sans-serif;
  font-weight: 700;
  margin-top: 2rem;
  font-size: 1.125rem;
  color: var(--zinc-900);
}

.article p,
.article ul {
  color: var(--zinc-600);
  font-size: 0.9375rem;
}

.article ul {
  padding-left: 1.35rem;
}

.article a {
  color: var(--orange);
  font-weight: 650;
}

.whatsapp-fab {
  position: fixed;
  right: clamp(1rem, 4vw, 1.75rem);
  bottom: calc(1rem + var(--safe-bottom));
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 9999px;
  background: linear-gradient(145deg, #25d366, #128c44);
  color: #fff;
  box-shadow:
    0 10px 30px rgb(18 140 68 / 0.45),
    0 2px 6px rgb(0 0 0 / 0.12);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.02);
}

.whatsapp-fab:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 6px rgb(37 211 102 / 0.55);
}

.whatsapp-fab img {
  width: 1.75rem;
  height: 1.75rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.map-wrap {
  margin-top: 0.875rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--zinc-200);
}

.map-wrap iframe {
  width: 100%;
  height: 17rem;
  border: 0;
}

.page-hero-light {
  border-bottom: 1px solid var(--zinc-200);
  background: #fff;
}

.page-hero-light .container {
  padding-block: clamp(3.25rem, 7vw, 5rem);
}

.page-title {
  margin: 0;
  font-family: Outfit, sans-serif;
  font-size: clamp(2.125rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--zinc-900);
}

.page-lede {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  color: var(--zinc-600);
  max-width: 40rem;
  line-height: 1.65;
}
