:root {
  --srg-blue: #3190e7;
  --srg-green: #c9a227;
  --srg-green-deep: #b58d18;
  --srg-navy: #173f5b;
  --srg-navy-deep: #102f44;
  --srg-slate: #233243;
  --srg-ink: #11222b;
  --srg-muted: #5f6f7b;
  --srg-light: #f3f6f8;
  --srg-line: #dde6ee;
  --srg-white: #ffffff;
  --srg-shadow: 0 22px 58px rgba(17, 34, 43, 0.12);
  --srg-shadow-deep: 0 34px 90px rgba(17, 34, 43, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body.funnel-page {
  margin: 0;
  color: var(--srg-ink);
  background: var(--srg-white);
  font-family: "PT Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

@keyframes funnelFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes funnelHeaderDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes funnelSoftPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.35);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(201, 162, 39, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0);
  }
}

@keyframes funnelFormGlow {
  0%,
  100% {
    border-color: #b9cad8;
    box-shadow: inset 0 0 0 0 rgba(49, 144, 231, 0);
  }

  50% {
    border-color: rgba(49, 144, 231, 0.58);
    box-shadow: inset 0 0 0 1px rgba(49, 144, 231, 0.08);
  }
}

@keyframes funnelIntakeGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  }

  50% {
    border-color: rgba(134, 216, 255, 0.34);
    box-shadow: 0 30px 76px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(49, 144, 231, 0.1);
  }
}

@keyframes funnelImageSettle {
  from {
    transform: scale(1.045);
  }

  to {
    transform: scale(1);
  }
}

@keyframes funnelLineIn {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes funnelDashboardFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes funnelAtmosphereShift {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes funnelButtonFocus {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(181, 141, 24, 0.12), 0 0 0 0 rgba(201, 162, 39, 0);
  }

  45% {
    box-shadow: 0 18px 42px rgba(181, 141, 24, 0.32), 0 0 0 9px rgba(201, 162, 39, 0.14);
  }
}

@keyframes funnelCallFocus {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(49, 144, 231, 0.08), 0 0 0 0 rgba(49, 144, 231, 0);
  }

  45% {
    box-shadow: 0 16px 34px rgba(49, 144, 231, 0.18), 0 0 0 7px rgba(49, 144, 231, 0.12);
  }
}

@keyframes funnelGraphicFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(8px, -16px, 0) rotate(0.45deg);
  }
}

@keyframes funnelHeroCardDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes funnelSoftSheen {
  from {
    transform: translateX(-140%);
  }

  to {
    transform: translateX(140%);
  }
}

@keyframes funnelBarRise {
  from {
    opacity: 0.45;
    transform: scaleY(0.18);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes funnelBarPulse {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes funnelScanLine {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes funnelChipSettle {
  from {
    opacity: 0;
    transform: translate3d(18px, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes funnelRoutePulse {
  0%,
  100% {
    background-position: 0 0;
  }

  50% {
    background-position: 100% 0;
  }
}

@keyframes funnelFormPreviewLine {
  from {
    opacity: 0.42;
    transform: scaleX(0.58);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes funnelFormLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes funnelFormLoaderShimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@keyframes funnelCardGlow {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(17, 34, 43, 0.055);
  }

  50% {
    box-shadow: 0 18px 46px rgba(49, 144, 231, 0.12);
  }
}

.funnel-page img {
  max-width: 100%;
  height: auto;
}

.funnel-page a {
  color: inherit;
}

.funnel-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.funnel-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--srg-line);
  backdrop-filter: blur(12px);
  animation: funnelHeaderDrop 520ms ease both;
  transition: background 220ms ease, box-shadow 220ms ease;
}

.funnel-has-scrolled .funnel-header {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 12px 32px rgba(17, 34, 43, 0.08);
}

.funnel-scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  overflow: hidden;
  background: transparent;
}

.funnel-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
  transform: scaleX(var(--funnel-scroll-progress, 0));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.funnel-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.funnel-logo img {
  width: 250px;
  max-width: 48vw;
}

.funnel-header__actions,
.funnel-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.funnel-phone {
  color: var(--srg-slate);
  text-decoration: none;
  white-space: nowrap;
}

.funnel-call-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  border: 1px solid rgba(49, 144, 231, 0.22);
  border-radius: 8px;
  background: #f7fbff;
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(49, 144, 231, 0.08);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.funnel-call-btn::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--srg-blue);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 2px 2px 4px 2px;
  transform: rotate(18deg);
}

.funnel-call-btn span,
.funnel-call-btn strong {
  display: inline;
}

.funnel-call-btn span {
  color: var(--srg-muted);
}

.funnel-call-btn strong {
  color: var(--srg-slate);
}

.funnel-call-btn:hover,
.funnel-call-btn:focus {
  border-color: rgba(49, 144, 231, 0.42);
  background: var(--srg-white);
  color: var(--srg-blue);
  box-shadow: 0 14px 30px rgba(49, 144, 231, 0.16);
  transform: translateY(-2px);
}

.funnel-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid var(--srg-navy);
  border-radius: 8px;
  background: var(--srg-navy);
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.funnel-btn:hover,
.funnel-btn:focus {
  background: var(--srg-green-deep);
  border-color: var(--srg-green-deep);
  color: var(--srg-white);
  box-shadow: 0 14px 30px rgba(181, 141, 24, 0.26);
  transform: translateY(-2px);
}

.funnel-btn:focus-visible,
.funnel-call-btn:focus-visible,
.funnel-hero-link:focus-visible,
.funnel-service-cta:focus-visible,
.funnel-mobile-cta a:focus-visible {
  outline: 3px solid #86d8ff;
  outline-offset: 3px;
}

.funnel-btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--srg-white);
}

.funnel-btn--secondary:hover,
.funnel-btn--secondary:focus {
  background: var(--srg-white);
  border-color: var(--srg-white);
  color: var(--srg-slate);
}

.funnel-btn--call {
  border-color: rgba(134, 216, 255, 0.48);
  background: rgba(49, 144, 231, 0.14);
  color: var(--srg-white);
}

.funnel-btn--call:hover,
.funnel-btn--call:focus {
  border-color: #86d8ff;
  background: rgba(49, 144, 231, 0.26);
  color: var(--srg-white);
}

.funnel-btn--small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 13px;
}

.funnel-page a.funnel-btn:not(.funnel-btn--secondary):not(.funnel-btn--call):not(.funnel-btn--ghost-light),
.funnel-page a.funnel-btn:not(.funnel-btn--secondary):not(.funnel-btn--call):not(.funnel-btn--ghost-light):visited,
.funnel-page a.funnel-btn:not(.funnel-btn--secondary):not(.funnel-btn--call):not(.funnel-btn--ghost-light):active,
.funnel-page a.funnel-mobile-cta__primary,
.funnel-page a.funnel-mobile-cta__primary:visited,
.funnel-page a.funnel-mobile-cta__primary:active {
  color: var(--srg-white);
}

.funnel-page a.funnel-btn :where(span, i, svg),
.funnel-page a.funnel-mobile-cta__primary :where(span, i, svg) {
  color: inherit;
}

.funnel-page a.funnel-btn:not(.funnel-btn--secondary):not(.funnel-btn--call):not(.funnel-btn--ghost-light):focus-visible,
.funnel-page a.funnel-mobile-cta__primary:focus-visible {
  outline: 3px solid var(--srg-white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--srg-navy-deep);
}

.funnel-motion-ready .funnel-hero .funnel-btn:not(.funnel-btn--secondary),
.funnel-motion-ready .funnel-final-cta .funnel-btn:not(.funnel-btn--secondary),
.funnel-motion-ready .funnel-mobile-cta__primary {
  animation: funnelButtonFocus 5200ms ease-in-out 900ms 2;
}

.funnel-motion-ready .funnel-call-btn,
.funnel-motion-ready .funnel-btn--call,
.funnel-motion-ready .funnel-mobile-cta__secondary {
  animation: funnelCallFocus 5600ms ease-in-out 1300ms 2;
}

.funnel-hero {
  position: relative;
  overflow: hidden;
  min-height: min(620px, calc(100vh - 78px));
  display: flex;
  align-items: center;
  padding: 70px 0 64px;
  border-bottom: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--srg-blue), var(--srg-green)) 1;
  color: var(--srg-white);
  background:
    linear-gradient(90deg, rgba(9, 20, 30, 0.98), rgba(9, 20, 30, 0.9) 50%, rgba(9, 20, 30, 0.68)),
    #132331;
}

.funnel-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center right;
  opacity: 0.43;
  filter: saturate(0.78) contrast(1.04) brightness(0.7);
  pointer-events: none;
  transform: scale(1.02);
  will-change: transform;
}

.funnel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 27, 0.98) 0%, rgba(8, 18, 27, 0.93) 44%, rgba(8, 18, 27, 0.66) 76%, rgba(8, 18, 27, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 18, 27, 0.02), rgba(8, 18, 27, 0.36));
  opacity: 1;
  pointer-events: none;
}

.funnel-motion-ready .funnel-hero::after {
  animation: funnelAtmosphereShift 9000ms ease-in-out infinite;
}

.funnel-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(49, 144, 231, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(8, 18, 27, 0.02), rgba(8, 18, 27, 0.38));
  pointer-events: none;
}

.funnel-hero__copy .funnel-eyebrow,
.funnel-hero__copy h1,
.funnel-hero__lead,
.funnel-hero__actions,
.funnel-hero__proof,
.funnel-hero__advisor,
.funnel-support,
.funnel-hero__visual {
  animation: funnelFadeUp 680ms ease both;
}

.funnel-hero__copy h1 {
  animation-delay: 80ms;
}

.funnel-hero__lead {
  animation-delay: 160ms;
}

.funnel-hero__actions {
  animation-delay: 240ms;
}

.funnel-support {
  animation-delay: 320ms;
}

.funnel-hero__proof {
  animation-delay: 300ms;
}

.funnel-hero__advisor {
  animation-delay: 340ms;
}

.funnel-hero__visual {
  animation-delay: 260ms;
}

.funnel-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.funnel-eyebrow {
  margin: 0 0 12px;
  color: var(--srg-blue);
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.funnel-section--slate .funnel-eyebrow,
.funnel-final-cta .funnel-eyebrow {
  color: #8fd0ff;
}

.funnel-hero .funnel-eyebrow {
  color: #86d8ff;
}

.funnel-page h1,
.funnel-page h2,
.funnel-page h3 {
  margin: 0;
  color: inherit;
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.15;
  letter-spacing: 0;
}

.funnel-page h1 {
  max-width: 710px;
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 900;
}

.funnel-page h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
}

.funnel-page h3 {
  font-size: 20px;
  font-weight: 900;
}

.funnel-hero__lead {
  max-width: 640px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.funnel-support {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.funnel-support a {
  color: var(--srg-white);
  font-weight: 700;
}

.funnel-hero .funnel-btn--secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--srg-white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.funnel-hero .funnel-btn--secondary:hover,
.funnel-hero .funnel-btn--secondary:focus {
  background: var(--srg-slate);
  border-color: var(--srg-slate);
  color: var(--srg-white);
}

.funnel-hero-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: none;
  transition: color 180ms ease, transform 180ms ease;
}

.funnel-hero-link:hover,
.funnel-hero-link:focus {
  color: var(--srg-white);
  transform: translateY(-1px);
}

.funnel-cta-microcopy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.funnel-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 26px;
}

.funnel-hero__proof span {
  position: relative;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding-right: 15px;
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.funnel-hero__proof span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.funnel-hero__advisor {
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.funnel-hero__advisor img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.funnel-hero__advisor strong,
.funnel-hero__advisor span {
  display: block;
}

.funnel-hero__advisor strong {
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.funnel-hero__advisor span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.funnel-hero__visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
}

.funnel-hero-graphic {
  position: absolute;
  top: 0;
  right: 8px;
  left: 38px;
  z-index: 1;
  min-height: 188px;
  pointer-events: none;
}

.funnel-hero-graphic__sheet,
.funnel-hero-graphic__chart,
.funnel-hero-graphic__chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  will-change: transform;
}

.funnel-hero-graphic__sheet {
  top: 0;
  left: 0;
  width: 190px;
  min-height: 128px;
  padding: 22px;
  border-radius: 8px;
  animation: funnelGraphicFloat 5200ms ease-in-out infinite;
}

.funnel-hero-graphic__sheet::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 68px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: funnelScanLine 2600ms ease-in-out 500ms infinite;
}

.funnel-hero-graphic__sheet span {
  display: block;
  height: 8px;
  margin-bottom: 13px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  transform-origin: left center;
}

.funnel-hero-graphic__sheet span:nth-child(2) {
  width: 72%;
  background: rgba(134, 216, 255, 0.72);
}

.funnel-hero-graphic__sheet span:nth-child(3) {
  width: 54%;
  background: rgba(40, 203, 117, 0.72);
}

.funnel-hero-graphic__chart {
  top: 38px;
  right: 0;
  width: 172px;
  height: 118px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  padding: 18px;
  border-radius: 8px;
  animation: funnelGraphicFloat 5600ms ease-in-out 700ms infinite;
}

.funnel-hero-graphic__chart span {
  height: var(--bar-height);
  min-height: 24px;
  border-radius: 99px 99px 4px 4px;
  background: linear-gradient(180deg, #86d8ff, var(--srg-blue));
  transform-origin: bottom center;
  animation:
    funnelBarRise 900ms ease both,
    funnelBarPulse 2800ms ease-in-out 1000ms infinite;
}

.funnel-hero-graphic__chart span:nth-child(2),
.funnel-hero-graphic__chart span:nth-child(4) {
  background: linear-gradient(180deg, #8cf2bf, var(--srg-green-deep));
}

.funnel-hero-graphic__chart span:nth-child(2) {
  animation-delay: 140ms, 1140ms;
}

.funnel-hero-graphic__chart span:nth-child(3) {
  animation-delay: 280ms, 1280ms;
}

.funnel-hero-graphic__chart span:nth-child(4) {
  animation-delay: 420ms, 1420ms;
}

.funnel-hero-graphic__chip {
  right: 72px;
  bottom: 5px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  animation: funnelChipSettle 560ms ease both;
}

.funnel-hero-graphic__chip--blue {
  background: rgba(49, 144, 231, 0.78);
  animation-delay: 480ms;
}

.funnel-hero-graphic__chip--green {
  right: 0;
  bottom: -32px;
  background: rgba(19, 134, 83, 0.82);
  animation-delay: 620ms;
}

.funnel-hero-intake {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(10, 22, 32, 0.78);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  will-change: transform, box-shadow;
}

.funnel-motion-ready .funnel-hero-intake {
  animation: funnelIntakeGlow 6800ms ease-in-out 1200ms 2;
}

.funnel-hero-intake:hover {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(12, 25, 35, 0.84);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.32);
}

.funnel-hero-intake::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
}

.funnel-hero-intake::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42%;
  z-index: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transform: translateX(-140%);
  pointer-events: none;
}

.funnel-motion-ready .funnel-hero-intake::after {
  animation: funnelSoftSheen 5200ms ease-in-out 1100ms 2;
}

.funnel-hero-intake > * {
  position: relative;
  z-index: 1;
}

.funnel-hero-intake .funnel-eyebrow {
  color: #a5e7ff;
}

.funnel-hero-intake h2 {
  max-width: 420px;
  font-size: 26px;
}

.funnel-hero-intake ul {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.funnel-hero-intake li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.funnel-hero-intake li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--srg-green);
  box-shadow: 0 0 0 4px rgba(40, 203, 117, 0.16);
}

.funnel-hero-intake__advisor {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.45;
}

.funnel-hero-intake__advisor img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.funnel-dashboard {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(221, 230, 238, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--srg-shadow-deep);
  backdrop-filter: blur(12px);
}

.funnel-motion-ready .funnel-dashboard {
  animation: funnelDashboardFloat 4200ms ease-in-out infinite alternate;
}

.funnel-dashboard__topbar,
.funnel-dashboard__main,
.funnel-dashboard__cards,
.funnel-dashboard__flow,
.funnel-dashboard__lower {
  position: relative;
  z-index: 1;
}

.funnel-dashboard__topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border-bottom: 1px solid var(--srg-line);
  background:
    linear-gradient(90deg, rgba(49, 144, 231, 0.08), rgba(40, 203, 117, 0.08)),
    var(--srg-white);
  color: var(--srg-muted);
  font-size: 13px;
}

.funnel-dashboard__topbar strong {
  color: var(--srg-blue);
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.funnel-dashboard__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 24px;
}

.funnel-dashboard__main h2 {
  margin: 4px 0 10px;
  color: var(--srg-slate);
  font-size: 28px;
}

.funnel-dashboard__main p:not(.funnel-dashboard__label),
.funnel-dashboard__cards span,
.funnel-dashboard__advisor span {
  color: var(--srg-muted);
}

.funnel-dashboard__label {
  margin: 0;
  color: var(--srg-green-deep);
  font-family: "Lato", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.funnel-dashboard__status {
  min-width: 112px;
  padding: 14px;
  border: 1px solid rgba(49, 144, 231, 0.18);
  border-radius: 6px;
  background: #f7fbff;
  text-align: right;
}

.funnel-dashboard__status span,
.funnel-dashboard__status strong,
.funnel-dashboard__cards span,
.funnel-dashboard__cards strong {
  display: block;
}

.funnel-dashboard__status span {
  color: var(--srg-muted);
  font-size: 12px;
}

.funnel-dashboard__status strong {
  color: var(--srg-blue);
  font-family: "Lato", Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
}

.funnel-dashboard__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 24px 20px;
}

.funnel-dashboard__cards > div {
  min-height: 90px;
  padding: 15px;
  border: 1px solid var(--srg-line);
  border-radius: 6px;
  background: var(--srg-white);
  box-shadow: 0 12px 28px rgba(17, 34, 43, 0.07);
}

.funnel-dashboard__cards span {
  margin-bottom: 8px;
  font-size: 12px;
}

.funnel-dashboard__cards strong {
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.28;
}

.funnel-dashboard__flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 24px 20px;
  overflow: hidden;
  border: 1px solid var(--srg-line);
  border-radius: 6px;
  background: var(--srg-line);
}

.funnel-dashboard__flow span {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  background: #f8fbfd;
  color: var(--srg-muted);
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.funnel-dashboard__flow .is-active {
  color: var(--srg-white);
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green-deep));
}

.funnel-dashboard__lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--srg-line);
  background: #fbfdff;
}

.funnel-dashboard__lower ul {
  display: grid;
  gap: 13px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.funnel-dashboard__lower li {
  position: relative;
  padding-top: 13px;
  color: var(--srg-slate);
  font-weight: 700;
}

.funnel-dashboard__lower li::before,
.funnel-dashboard__lower li span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  border-radius: 99px;
}

.funnel-dashboard__lower li::before {
  right: 0;
  background: #e6eef4;
}

.funnel-dashboard__lower li span {
  width: var(--bar);
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
}

.funnel-dashboard__advisor {
  padding: 16px;
  border: 1px solid rgba(49, 144, 231, 0.16);
  border-radius: 6px;
  background: var(--srg-white);
  box-shadow: 0 12px 28px rgba(17, 34, 43, 0.07);
}

.funnel-dashboard__advisor img {
  width: 54px;
  height: 54px;
  display: block;
  margin-bottom: 13px;
  border-radius: 50%;
  object-fit: cover;
}

.funnel-dashboard__advisor strong {
  display: block;
  margin-bottom: 7px;
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.25;
}

.funnel-checklist {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.funnel-checklist li {
  position: relative;
  padding-left: 28px;
}

.funnel-checklist li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--srg-green);
  box-shadow: 0 0 0 4px rgba(40, 203, 117, 0.18);
}

.funnel-panel__note {
  margin: 0;
  font-size: 14px;
}

.funnel-trust-strip {
  background: var(--srg-white);
  border-bottom: 1px solid var(--srg-line);
}

.funnel-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.funnel-trust-strip__grid > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 28px;
  border-left: 1px solid var(--srg-line);
}

.funnel-trust-strip__grid > div:last-child {
  border-right: 1px solid var(--srg-line);
}

.funnel-trust-strip strong,
.funnel-trust-strip span {
  display: block;
}

.funnel-trust-strip img,
.funnel-trust-strip__mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #f7fbff;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(17, 34, 43, 0.08);
}

.funnel-trust-strip img[src$="aicpa.jpg"] {
  width: 74px;
  height: 48px;
  padding: 9px;
  border-radius: 6px;
  object-fit: contain;
}

.funnel-trust-strip__mark {
  color: var(--srg-blue);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
}

.funnel-trust-strip strong {
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.funnel-trust-strip span {
  margin-top: 6px;
  color: var(--srg-muted);
  font-size: 14px;
  line-height: 1.5;
}

.funnel-proof-section {
  padding: 76px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border-bottom: 1px solid var(--srg-line);
}

.funnel-proof-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px 46px;
  align-items: end;
  margin-bottom: 34px;
}

.funnel-proof-head .funnel-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.funnel-proof-head p:not(.funnel-eyebrow) {
  margin: 0;
  color: var(--srg-muted);
}

.funnel-proof-grid,
.funnel-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.funnel-scope-grid--services article {
  display: flex;
  flex-direction: column;
}

.funnel-scope-grid--services article p {
  margin-bottom: 22px;
}

.funnel-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--srg-navy);
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.funnel-service-cta::after {
  content: "\2192";
  color: var(--srg-green-deep);
  font-size: 18px;
  line-height: 1;
}

.funnel-service-cta:hover,
.funnel-service-cta:focus {
  color: var(--srg-green-deep);
  transform: translateX(2px);
}

.funnel-proof-grid article,
.funnel-scope-grid article {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--srg-line);
  border-radius: 6px;
  background: var(--srg-white);
  box-shadow: 0 12px 30px rgba(17, 34, 43, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.funnel-proof-grid article::before,
.funnel-scope-grid article::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.funnel-proof-grid article:hover,
.funnel-scope-grid article:hover {
  border-color: rgba(49, 144, 231, 0.24);
  box-shadow: 0 16px 38px rgba(17, 34, 43, 0.09);
  transform: translateY(-1px);
}

.funnel-proof-grid article:hover::before,
.funnel-scope-grid article:hover::before {
  transform: scaleX(1);
}

.funnel-proof-grid h3,
.funnel-scope-grid h3,
.funnel-card h3 {
  position: relative;
  padding-top: 18px;
}

.funnel-proof-grid h3::before,
.funnel-scope-grid h3::before,
.funnel-card h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
}

.funnel-proof-grid p,
.funnel-scope-grid p {
  margin-bottom: 0;
  color: var(--srg-muted);
}

.funnel-authority {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 8% 6%, rgba(49, 144, 231, 0.09), transparent 30%),
    radial-gradient(circle at 94% 92%, rgba(40, 203, 117, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
  border-top: 1px solid rgba(25, 48, 64, 0.06);
  border-bottom: 1px solid var(--srg-line);
}

.funnel-authority .funnel-container {
  width: min(1180px, calc(100% - 48px));
}

.funnel-authority__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(24px, 3.2vw, 44px);
  align-items: stretch;
}

.funnel-authority__intro-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(32px, 3vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(19, 35, 49, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 68px rgba(18, 33, 48, 0.09);
}

.funnel-authority__intro-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--srg-blue), var(--srg-green));
}

.funnel-authority__intro-card h2 {
  max-width: 12ch;
  margin: 10px 0 20px;
  font-size: clamp(36px, 3.3vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.funnel-authority__intro-card p:not(.funnel-eyebrow) {
  max-width: 47ch;
  margin-bottom: 0;
  color: var(--srg-muted);
  font-size: 16px;
  line-height: 1.72;
}

.funnel-authority__points {
  counter-reset: srg-review-point;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.funnel-authority__points li {
  counter-increment: srg-review-point;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(19, 35, 49, 0.1);
}

.funnel-authority__points li::before {
  content: "0" counter(srg-review-point);
  grid-row: 1 / span 2;
  padding-top: 2px;
  color: var(--srg-blue);
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.funnel-authority__points strong {
  color: var(--srg-slate);
  font-size: 16px;
  line-height: 1.25;
}

.funnel-authority__points span {
  margin-top: 4px;
  color: var(--srg-muted);
  font-size: 14px;
  line-height: 1.55;
}

.funnel-authority__note {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding: 20px 22px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-left: 3px solid var(--srg-green);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.1), rgba(49, 144, 231, 0.04));
  color: var(--srg-slate);
}

.funnel-authority__note strong {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.funnel-authority__note span {
  color: var(--srg-muted);
  font-size: 14px;
  line-height: 1.6;
}

.funnel-authority__panel {
  min-width: 0;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  color: var(--srg-white);
  background:
    radial-gradient(circle at 94% 8%, rgba(49, 144, 231, 0.18), transparent 28%),
    linear-gradient(145deg, #173f5b 0%, #102f44 52%, #0c2637 100%);
  box-shadow: 0 30px 76px rgba(16, 47, 68, 0.2);
}

.funnel-authority__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 2px 2px 0;
}

.funnel-authority__panel-head h3 {
  max-width: 16ch;
  margin: 7px 0 0;
  color: var(--srg-white);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.funnel-authority__panel-kicker {
  margin: 0;
  color: #9dd8ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.funnel-authority__panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.36);
  background: rgba(201, 162, 39, 0.14);
  color: #f7e7a9;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.funnel-advisor-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.funnel-advisor-cards article {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #dfeaf0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.funnel-advisor-cards img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #dfeaf0;
  filter: none;
  transform: none;
}

.funnel-advisor-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 42px 18px 17px;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 29, 43, 0.88) 58%, rgba(8, 29, 43, 0.97) 100%);
}

.funnel-advisor-cards strong,
.funnel-advisor-cards span {
  display: block;
}

.funnel-advisor-cards strong {
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.funnel-advisor-cards span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .funnel-advisor-cards article:hover {
    border-color: rgba(157, 216, 255, 0.52);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
  }
}

.funnel-section {
  padding: 88px 0;
}

.funnel-section--light {
  background: var(--srg-light);
}

.funnel-section--slate,
.funnel-final-cta {
  color: var(--srg-white);
  background: var(--srg-slate);
}

.funnel-section--apply {
  background:
    radial-gradient(circle at 14% 16%, rgba(49, 144, 231, 0.16), transparent 28%),
    radial-gradient(circle at 86% 74%, rgba(40, 203, 117, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(49, 144, 231, 0.09), rgba(40, 203, 117, 0.07)),
    var(--srg-light);
  border-top: 1px solid rgba(205, 220, 231, 0.72);
  border-bottom: 1px solid rgba(205, 220, 231, 0.72);
}

.funnel-section--apply .funnel-container {
  width: min(1240px, calc(100% - 48px));
}

.funnel-section--fit,
.funnel-section--after-apply {
  background: var(--srg-white);
}

.funnel-section--decision {
  background:
    linear-gradient(180deg, var(--srg-white), #f7fafc);
  border-top: 1px solid var(--srg-line);
  border-bottom: 1px solid var(--srg-line);
}

.funnel-decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.funnel-decision-grid p:not(.funnel-eyebrow) {
  max-width: 610px;
  color: var(--srg-muted);
}

.funnel-decision-list {
  display: grid;
  gap: 14px;
}

.funnel-decision-list > div {
  position: relative;
  padding: 22px 24px 22px 28px;
  border: 1px solid var(--srg-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(17, 34, 43, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.funnel-decision-list > div::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 4px;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(180deg, var(--srg-blue), var(--srg-green));
}

.funnel-decision-list > div:hover {
  border-color: rgba(49, 144, 231, 0.22);
  box-shadow: 0 16px 38px rgba(17, 34, 43, 0.09);
  transform: translateY(-1px);
}

.funnel-decision-list strong,
.funnel-decision-list span {
  display: block;
}

.funnel-decision-list strong {
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
}

.funnel-decision-list span {
  margin-top: 6px;
  color: var(--srg-muted);
}

.funnel-section--review-scope {
  background:
    radial-gradient(circle at top left, rgba(49, 144, 231, 0.11), transparent 32%),
    radial-gradient(circle at bottom right, rgba(40, 203, 117, 0.09), transparent 30%),
    #f8fbfd;
}

.funnel-section__intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.funnel-section__intro .funnel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.funnel-section__intro .funnel-eyebrow::after {
  content: "";
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
  transform: scaleX(0);
  transform-origin: left center;
}

.funnel-section__intro.funnel-reveal--visible .funnel-eyebrow::after {
  animation: funnelLineIn 520ms ease 180ms both;
}

.funnel-card-grid {
  display: grid;
  gap: 22px;
}

.funnel-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.funnel-card,
.funnel-risk-list > div,
.funnel-fit-panel,
.funnel-form-shell,
.funnel-after-list > div,
.funnel-testimonials figure,
.funnel-process > div,
.funnel-faq-list details {
  border: 1px solid var(--srg-line);
  border-radius: 6px;
  background: var(--srg-white);
  box-shadow: 0 12px 30px rgba(17, 34, 43, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.funnel-card:hover,
.funnel-risk-list > div:hover,
.funnel-fit-panel:hover,
.funnel-after-list > div:hover,
.funnel-testimonials figure:hover,
.funnel-process > div:hover {
  border-color: rgba(49, 144, 231, 0.22);
  box-shadow: 0 16px 38px rgba(17, 34, 43, 0.085);
  transform: translateY(-1px);
}

.funnel-card {
  padding: 26px;
}

.funnel-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.funnel-fit-panel {
  padding: 30px;
}

.funnel-fit-panel--good {
  border-color: rgba(19, 134, 83, 0.22);
  background:
    linear-gradient(180deg, rgba(40, 203, 117, 0.08), rgba(255, 255, 255, 0) 52%),
    var(--srg-white);
}

.funnel-card p,
.funnel-risk-list span,
.funnel-mini-grid span,
.funnel-process p,
.funnel-faq-list p,
.funnel-review-note,
.funnel-consent,
.funnel-footer p {
  color: var(--srg-muted);
}

.funnel-split,
.funnel-video-grid,
.funnel-apply-grid,
.funnel-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.funnel-split--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.funnel-risk-list {
  display: grid;
  gap: 16px;
}

.funnel-risk-list > div {
  padding: 22px;
}

.funnel-risk-list strong,
.funnel-risk-list span,
.funnel-mini-grid strong,
.funnel-mini-grid span {
  display: block;
}

.funnel-image-panel {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.funnel-image-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.045);
}

.funnel-motion-ready .funnel-image-panel.funnel-reveal--visible img {
  animation: funnelImageSettle 1200ms ease both;
}

.funnel-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.funnel-mini-grid > div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.funnel-video-placeholder {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  border: 1px solid var(--srg-line);
  border-radius: 6px;
  background:
    linear-gradient(rgba(17, 34, 43, 0.72), rgba(17, 34, 43, 0.72)),
    url("../images/page-media/ln-01-long-nurture-hero-desktop.webp") center / cover no-repeat;
  color: var(--srg-white);
  text-align: center;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.funnel-video-placeholder:hover {
  box-shadow: 0 22px 56px rgba(17, 34, 43, 0.16);
  transform: translateY(-2px);
}

.funnel-video-placeholder span {
  color: rgba(255, 255, 255, 0.75);
}

.funnel-section--media {
  background:
    linear-gradient(180deg, var(--srg-white), #f7fbfd);
}

.funnel-media-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(221, 230, 238, 0.94);
  border-radius: 8px;
  background: var(--srg-slate);
  box-shadow: var(--srg-shadow-deep);
}

.funnel-media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.9) contrast(1.04);
}

.funnel-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 34, 43, 0.68), rgba(17, 34, 43, 0.2)),
    linear-gradient(180deg, rgba(17, 34, 43, 0.08), rgba(17, 34, 43, 0.62));
}

.funnel-media-card__overlay {
  position: absolute;
  inset: auto 28px 28px 28px;
  z-index: 1;
  color: var(--srg-white);
}

.funnel-media-card__overlay strong,
.funnel-media-card__overlay span {
  display: block;
}

.funnel-media-card__overlay strong {
  margin-top: 16px;
  font-family: "Lato", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.funnel-media-card__overlay span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.funnel-play {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding-left: 5px;
  border-radius: 50%;
  background: var(--srg-green);
  color: var(--srg-white);
  font-size: 28px;
}

.funnel-apply-grid {
  align-items: start;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.44fr);
  gap: 30px;
}

.funnel-apply-panel {
  position: sticky;
  top: 94px;
  align-self: start;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(49, 144, 231, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(49, 144, 231, 0.14), transparent 35%),
    linear-gradient(180deg, #112b42 0%, #0f1f2e 100%);
  color: var(--srg-white);
  box-shadow: 0 28px 76px rgba(15, 31, 46, 0.24);
}

.funnel-apply-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
}

.funnel-apply-panel h1,
.funnel-apply-panel h2 {
  color: var(--srg-white);
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.04;
}

.funnel-apply-panel p:not(.funnel-eyebrow),
.funnel-apply-panel li,
.funnel-apply-panel .funnel-consent {
  color: rgba(255, 255, 255, 0.78);
}

.funnel-apply-panel .funnel-eyebrow {
  color: #85d9ff;
}

.funnel-apply-card {
  margin-top: 18px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.funnel-apply-card strong {
  display: block;
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.funnel-apply-card .funnel-checklist--compact {
  margin: 14px 0 0;
}

.funnel-apply-panel .funnel-checklist li::before {
  background: var(--srg-green);
  box-shadow: 0 0 0 6px rgba(40, 203, 117, 0.12);
}

.funnel-review-path {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.funnel-review-path > div {
  position: relative;
  padding: 12px 13px 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.funnel-review-path > div::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 3px;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(180deg, var(--srg-blue), var(--srg-green));
}

.funnel-review-path span {
  display: block;
  color: var(--srg-white);
  font-weight: 900;
}

.funnel-review-path p {
  margin: 4px 0 0;
  font-size: 13px;
}

.funnel-checklist--compact {
  margin: 24px 0;
}

.funnel-consent {
  max-width: 560px;
  font-size: 14px;
}

.funnel-form-note {
  max-width: 560px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-left: 4px solid var(--srg-blue);
  border-radius: 4px;
  background: rgba(49, 144, 231, 0.07);
  color: var(--srg-muted);
  font-size: 14px;
}

.funnel-apply-panel .funnel-form-note {
  max-width: none;
  margin: 12px 0 0;
  border-left-color: #85d9ff;
  background: rgba(49, 144, 231, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.funnel-consent a {
  color: var(--srg-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.funnel-apply-panel .funnel-consent a {
  color: #85d9ff;
}

.funnel-call-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 14px 15px;
  border: 1px solid rgba(40, 203, 117, 0.36);
  border-radius: 8px;
  background: rgba(40, 203, 117, 0.1);
  color: var(--srg-white);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.funnel-call-card:hover {
  border-color: rgba(40, 203, 117, 0.58);
  background: rgba(40, 203, 117, 0.14);
  transform: translateY(-1px);
}

.funnel-call-card span,
.funnel-call-card strong {
  display: block;
}

.funnel-call-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.funnel-call-card strong {
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.funnel-form-shell {
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98));
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.funnel-form-shell--live {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: var(--srg-white);
  box-shadow: 0 30px 86px rgba(15, 31, 46, 0.13);
}

.funnel-form-live {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.funnel-form-live iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-width: 0;
  background: #ffffff;
}

.funnel-form-live--step-one {
  min-height: 811px;
}

.funnel-form-live--step-two {
  min-height: 1263px;
}

.funnel-form-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 620px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--srg-slate);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98));
  transition: opacity 260ms ease, visibility 260ms ease;
}

.funnel-form-loader[hidden] {
  display: none;
}

.funnel-form-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.funnel-form-loader__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 560px;
}

.funnel-form-loader__head strong {
  display: block;
  margin-bottom: 6px;
  color: var(--srg-navy);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.16;
}

.funnel-form-loader__head p,
.funnel-form-loader__fallback {
  margin: 0;
  color: var(--srg-muted);
  font-size: 15px;
  line-height: 1.6;
}

.funnel-form-loader__spinner {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 4px solid rgba(49, 144, 231, 0.16);
  border-top-color: var(--srg-blue);
  border-radius: 999px;
  animation: funnelFormLoaderSpin 900ms linear infinite;
}

.funnel-form-loader__preview {
  display: grid;
  gap: 14px;
  width: min(100%, 620px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(136, 154, 171, 0.22);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 56px rgba(15, 31, 46, 0.08);
}

.funnel-form-loader__preview span {
  display: block;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #e6eef5 0%, #f5f9fc 42%, #e6eef5 78%);
  background-size: 220% 100%;
  animation: funnelFormLoaderShimmer 1500ms ease-in-out infinite;
}

.funnel-form-loader__preview span:nth-child(1) {
  width: 48%;
  height: 22px;
}

.funnel-form-loader__preview span:nth-child(2) {
  width: 86%;
}

.funnel-form-loader__preview span:nth-child(3) {
  width: 78%;
}

.funnel-form-loader__preview span:nth-child(4) {
  width: 92%;
  height: 46px;
  border-radius: 8px;
}

.funnel-form-loader__preview span:nth-child(5) {
  width: 34%;
  height: 42px;
  background: linear-gradient(90deg, rgba(40, 203, 117, 0.16), rgba(49, 144, 231, 0.14));
}

.funnel-form-loader__fallback {
  max-width: 620px;
  padding: 14px 16px;
  border: 1px solid rgba(49, 144, 231, 0.18);
  border-radius: 8px;
  background: rgba(49, 144, 231, 0.06);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.funnel-form-loader--slow .funnel-form-loader__fallback {
  opacity: 1;
  transform: translateY(0);
}

.funnel-form-loader__fallback a {
  color: var(--srg-blue);
  font-weight: 900;
  text-decoration: none;
}

.funnel-form-loader__fallback a:hover {
  text-decoration: underline;
}

.funnel-form-shell:hover {
  box-shadow: 0 16px 42px rgba(17, 34, 43, 0.08);
}

.funnel-form-shell--live:hover {
  box-shadow: 0 30px 86px rgba(15, 31, 46, 0.18);
}

.funnel-form-placeholder {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid #cfdce6;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbfd);
  text-align: center;
}

.funnel-form-preview {
  position: relative;
  width: min(250px, 100%);
  margin: 0 auto 22px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(49, 144, 231, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 144, 231, 0.08), rgba(40, 203, 117, 0.08)),
    var(--srg-white);
  box-shadow: 0 16px 36px rgba(17, 34, 43, 0.08);
}

.funnel-form-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 78px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  opacity: 0.86;
  animation: funnelScanLine 4200ms ease-in-out infinite;
}

.funnel-form-preview span {
  position: relative;
  display: block;
  height: 10px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: #dbe7f0;
  transform-origin: left center;
  animation: funnelFormPreviewLine 720ms ease both;
}

.funnel-form-preview span:nth-child(1) {
  width: 84%;
}

.funnel-form-preview span:nth-child(2) {
  width: 64%;
  animation-delay: 120ms;
}

.funnel-form-preview span:nth-child(3) {
  width: 74%;
  margin-bottom: 0;
  animation-delay: 240ms;
}

.funnel-form-preview strong {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--srg-green);
  box-shadow: 0 0 0 6px rgba(40, 203, 117, 0.14);
  animation: funnelSoftPulse 2200ms ease-in-out infinite;
}

.funnel-form-preview strong::before,
.funnel-form-preview strong::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 99px;
  background: var(--srg-white);
}

.funnel-form-preview strong::before {
  width: 10px;
  left: 8px;
  top: 18px;
  transform: rotate(42deg);
}

.funnel-form-preview strong::after {
  width: 16px;
  right: 7px;
  top: 16px;
  transform: rotate(-48deg);
}

.funnel-form-placeholder h3 {
  max-width: 430px;
  margin: 0 auto 12px;
}

.funnel-form-placeholder p:not(.funnel-eyebrow) {
  max-width: 500px;
  margin: 0 auto;
  color: var(--srg-muted);
}

.funnel-after-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}

.funnel-after-list {
  display: grid;
  gap: 14px;
}

.funnel-after-list > div {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
}

.funnel-risk-list > div {
  position: relative;
  overflow: hidden;
}

.funnel-risk-list > div::after,
.funnel-after-list > div::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
  transform: scaleX(0);
  transform-origin: left center;
}

.funnel-motion-ready .funnel-risk-list > div.funnel-reveal--visible::after,
.funnel-motion-ready .funnel-after-list > div.funnel-reveal--visible::after {
  animation: funnelLineIn 620ms ease 120ms both;
}

.funnel-route-graphic {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 440px;
  margin-top: 28px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--srg-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 144, 231, 0.08), rgba(40, 203, 117, 0.08)),
    var(--srg-white);
  box-shadow: 0 16px 38px rgba(17, 34, 43, 0.08);
}

.funnel-route-graphic::before {
  content: "";
  position: absolute;
  top: 36px;
  bottom: 44px;
  left: 32px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--srg-blue), var(--srg-green), var(--srg-blue));
  background-size: 100% 220%;
  animation: funnelRoutePulse 2800ms ease-in-out infinite;
}

.funnel-route-graphic__card,
.funnel-route-graphic__branches span {
  position: relative;
  z-index: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(221, 230, 238, 0.88);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(17, 34, 43, 0.055);
}

.funnel-route-graphic__card::before,
.funnel-route-graphic__branches span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--srg-green);
  box-shadow: 0 0 0 5px rgba(40, 203, 117, 0.14);
  transform: translateY(-50%);
}

.funnel-route-graphic__branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.funnel-route-graphic__branches span {
  min-height: 58px;
  padding-left: 34px;
}

.funnel-after-list strong,
.funnel-after-list span {
  display: block;
}

.funnel-after-list strong {
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
}

.funnel-after-list span {
  margin-top: 5px;
  color: var(--srg-muted);
}

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

.funnel-testimonials figure {
  margin: 0;
  padding: 26px;
}

.funnel-testimonials blockquote {
  margin: 0 0 20px;
  color: var(--srg-ink);
  font-family: "Lato", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.funnel-testimonials figcaption {
  color: var(--srg-muted);
  font-weight: 700;
}

.funnel-review-note {
  margin: 22px 0 0;
  font-size: 14px;
}

.funnel-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.funnel-process > div {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.funnel-process > div::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
  transform: scaleX(0);
  transform-origin: left center;
}

.funnel-motion-ready .funnel-process > div.funnel-reveal--visible::before {
  animation: funnelLineIn 650ms ease 180ms both;
}

.funnel-process__mark {
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
}

.funnel-section--faq {
  background: #fbfcfd;
}

.funnel-faq-grid {
  align-items: start;
}

.funnel-faq-list {
  display: grid;
  gap: 14px;
}

.funnel-faq-list details {
  padding: 0;
  overflow: hidden;
}

.funnel-faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
  list-style: none;
  transition: color 180ms ease, background 180ms ease;
}

.funnel-faq-list summary:hover,
.funnel-faq-list summary:focus {
  background: rgba(49, 144, 231, 0.05);
  color: var(--srg-blue);
}

.funnel-faq-list summary::-webkit-details-marker {
  display: none;
}

.funnel-faq-list summary::after {
  content: "+";
  float: right;
  color: var(--srg-blue);
  font-size: 22px;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.funnel-faq-list details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.funnel-faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  animation: funnelFadeUp 220ms ease both;
}

.funnel-motion-ready .funnel-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.funnel-motion-ready .funnel-reveal[data-reveal-variant="left"] {
  transform: translateX(-38px);
}

.funnel-motion-ready .funnel-reveal[data-reveal-variant="right"] {
  transform: translateX(38px);
}

.funnel-motion-ready .funnel-reveal[data-reveal-variant="scale"] {
  transform: translateY(22px) scale(0.94);
}

.funnel-motion-ready .funnel-reveal[data-reveal-variant="rise"] {
  transform: translateY(38px);
}

.funnel-motion-ready .funnel-reveal--visible,
.funnel-motion-ready .funnel-reveal--visible[data-reveal-variant] {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.funnel-motion-ready .funnel-advisor-cards article.funnel-reveal[data-reveal-variant="scale"] {
  transform: translateY(18px);
}

.funnel-motion-ready .funnel-advisor-cards article.funnel-reveal--visible[data-reveal-variant="scale"] {
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .funnel-motion-ready .funnel-reveal[data-reveal-variant="left"],
  .funnel-motion-ready .funnel-reveal[data-reveal-variant="right"] {
    transform: translateY(22px);
  }
}

.funnel-motion-ready .funnel-reveal[data-reveal-group="priority"] {
  transform: translateY(10px);
}

.funnel-motion-ready .funnel-reveal--visible[data-reveal-group="priority"] {
  transform: translateY(0);
}

.funnel-motion-ready .funnel-proof-grid article.funnel-reveal--visible::before,
.funnel-motion-ready .funnel-scope-grid article.funnel-reveal--visible::before {
  animation: funnelLineIn 650ms ease 160ms both;
}

.funnel-motion-ready .funnel-card.funnel-reveal--visible,
.funnel-motion-ready .funnel-fit-panel.funnel-reveal--visible,
.funnel-motion-ready .funnel-form-shell.funnel-reveal--visible {
  animation: funnelCardGlow 4200ms ease-in-out 800ms 1;
}

.funnel-motion-ready .funnel-reveal--visible .funnel-checklist li::before {
  animation: funnelSoftPulse 2200ms ease-in-out 600ms 1;
}

.funnel-final-cta {
  padding: 86px 0;
  text-align: center;
}

.funnel-final-cta p:not(.funnel-eyebrow) {
  max-width: 680px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.78);
}

.funnel-final-cta .funnel-cta-microcopy {
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.funnel-hero__actions--center {
  justify-content: center;
}

.funnel-thank-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 0 42px;
  color: var(--srg-white);
  background:
    linear-gradient(90deg, rgba(12, 25, 35, 0.96), rgba(12, 25, 35, 0.76)),
    url("../images/page-media/ln-01-long-nurture-hero-desktop.webp") center right / cover no-repeat,
    var(--srg-slate);
  border-bottom: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--srg-blue), var(--srg-green)) 1;
}

.funnel-thank-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 18, 27, 0.91) 0%, rgba(8, 18, 27, 0.78) 48%, rgba(8, 18, 27, 0.66) 100%),
    radial-gradient(circle at 18% 22%, rgba(49, 144, 231, 0.24), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(40, 203, 117, 0.14), transparent 30%);
  pointer-events: none;
}

.funnel-thank-hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
}

.funnel-thank-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 34px;
  align-items: stretch;
  min-height: 390px;
}

.funnel-thank-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.funnel-thank-hero__copy,
.funnel-thank-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
}

.funnel-thank-hero h1 {
  max-width: 720px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.03;
}

.funnel-thank-hero .funnel-eyebrow {
  color: #8fd0ff;
}

.funnel-thank-hero .funnel-hero__lead {
  max-width: 620px;
  margin-top: 18px;
}

.funnel-thank-hero .funnel-hero__actions {
  margin-top: 24px;
}

.funnel-booking-cue {
  position: relative;
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.funnel-booking-cue::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--srg-green);
  box-shadow: 0 0 0 4px rgba(40, 203, 117, 0.18);
}

.funnel-thank-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(12, 25, 35, 0.78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.funnel-thank-panel__status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(40, 203, 117, 0.15);
  color: #a9f1cf;
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.funnel-status-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.funnel-status-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.82);
}

.funnel-status-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--srg-green);
  box-shadow: 0 0 0 4px rgba(40, 203, 117, 0.16);
}

.funnel-thank-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.funnel-thank-steps article,
.funnel-thank-list > div,
.funnel-thank-outcomes > div {
  border: 1px solid var(--srg-line);
  border-radius: 6px;
  background: var(--srg-white);
  box-shadow: 0 12px 30px rgba(17, 34, 43, 0.055);
}

.funnel-thank-steps article {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.funnel-thank-steps article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
}

.funnel-thank-steps p,
.funnel-thank-split p,
.funnel-thank-list span,
.funnel-thank-outcomes span {
  color: var(--srg-muted);
}

.funnel-thank-list,
.funnel-thank-outcomes {
  display: grid;
  gap: 14px;
}

.funnel-thank-list > div,
.funnel-thank-outcomes > div {
  padding: 22px 24px;
}

.funnel-thank-list strong,
.funnel-thank-list span,
.funnel-thank-outcomes strong,
.funnel-thank-outcomes span {
  display: block;
}

.funnel-thank-list strong,
.funnel-thank-outcomes strong {
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
}

.funnel-thank-list span,
.funnel-thank-outcomes span {
  margin-top: 6px;
}

.funnel-thank-list a {
  color: var(--srg-blue);
  font-weight: 700;
}

.funnel-section--slate .funnel-thank-split p,
.funnel-section--slate .funnel-thank-outcomes span {
  color: rgba(255, 255, 255, 0.74);
}

.funnel-section--slate .funnel-thank-outcomes > div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.funnel-section--slate .funnel-thank-outcomes strong {
  color: var(--srg-white);
}

.funnel-disclaimer {
  padding: 36px 0;
  background: #eef3f6;
}

.funnel-disclaimer h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.funnel-disclaimer p {
  margin: 0;
  color: var(--srg-muted);
  font-size: 14px;
}

.funnel-booking-grid {
  display: grid;
  gap: 28px;
}

.funnel-booking-intro {
  max-width: 760px;
}

.funnel-booking-intro a {
  color: var(--srg-blue);
  font-weight: 800;
  text-decoration: none;
}

.funnel-booking-intro a:hover {
  text-decoration: underline;
}

.funnel-calendar-shell {
  background: var(--srg-white);
  border: 1px solid var(--srg-line);
  border-radius: 8px;
  box-shadow: var(--srg-shadow);
  overflow: hidden;
}

.funnel-calendar-shell iframe {
  border: 0;
  display: block;
  min-height: 760px;
  width: 100%;
}

.funnel-calendar-placeholder {
  align-items: center;
  background: linear-gradient(135deg, rgba(49, 144, 231, 0.08), rgba(40, 203, 117, 0.08)), var(--srg-white);
  color: var(--srg-slate);
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 620px;
  padding: 42px 24px;
  text-align: center;
}

.funnel-calendar-placeholder strong {
  color: var(--srg-ink);
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.funnel-calendar-placeholder span {
  color: var(--srg-muted);
  max-width: 520px;
}

.funnel-qualified-booking {
  scroll-margin-top: 88px;
  padding-top: 50px;
  background: linear-gradient(180deg, #f7fbff 0%, var(--srg-white) 100%);
}

.funnel-qualified-booking__inner {
  display: grid;
  gap: 20px;
  max-width: 1100px;
}

.funnel-qualified-booking__header {
  max-width: 860px;
}

.funnel-qualified-booking__header h2 {
  max-width: 760px;
}

.funnel-qualified-booking__header p:not(.funnel-eyebrow) {
  color: var(--srg-muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 16px 0 0;
}

.funnel-calendar-shell--booking {
  border-color: rgba(49, 144, 231, 0.2);
  position: relative;
  scroll-margin-top: 88px;
}

.funnel-calendar-shell--booking::before {
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
  content: "";
  display: block;
  height: 5px;
}

.funnel-calendar-shell--booking iframe {
  min-height: 820px;
}

.funnel-qualified-booking__actions {
  align-items: center;
  background: var(--srg-white);
  border: 1px solid rgba(221, 230, 238, 0.95);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 18px 20px;
}

.funnel-qualified-booking__actions p {
  color: var(--srg-muted);
  flex: 1 1 520px;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.funnel-btn--booking-fallback {
  min-width: 220px;
}

.funnel-footer {
  padding: 44px 0;
  background: var(--srg-white);
  border-top: 1px solid var(--srg-line);
}

.funnel-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: start;
}

.funnel-footer img {
  width: 240px;
  margin-bottom: 14px;
}

.funnel-footer address {
  margin: 0;
  color: var(--srg-muted);
  font-style: normal;
}

.funnel-footer a {
  color: var(--srg-blue);
  text-decoration: none;
}

.funnel-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .funnel-hero__grid,
  .funnel-proof-head,
  .funnel-authority__grid,
  .funnel-decision-grid,
  .funnel-split,
  .funnel-split--reverse,
  .funnel-video-grid,
  .funnel-apply-grid,
  .funnel-after-grid,
  .funnel-thank-hero__grid,
  .funnel-thank-split,
  .funnel-faq-grid {
    grid-template-columns: 1fr;
  }

  .funnel-apply-grid {
    gap: 30px;
  }

  .funnel-apply-panel {
    position: relative;
    top: auto;
  }

  .funnel-card-grid--four,
  .funnel-proof-grid,
  .funnel-scope-grid,
  .funnel-advisor-cards,
  .funnel-thank-steps,
  .funnel-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .funnel-scope-grid--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .funnel-hero {
    min-height: auto;
    padding: 62px 0 54px;
  }

  .funnel-thank-hero {
    padding: 48px 0 34px;
  }

  .funnel-thank-hero__grid {
    gap: 24px;
    min-height: auto;
  }

  .funnel-thank-hero__copy,
  .funnel-thank-panel {
    min-height: auto;
  }

  .funnel-thank-panel {
    max-width: 680px;
  }

  .funnel-hero__visual {
    max-width: 640px;
    min-height: 400px;
    margin: 0 auto;
  }

  .funnel-hero-graphic {
    right: 22px;
    left: 22px;
  }

  .funnel-hero-intake {
    max-width: 640px;
    margin: 0 auto;
  }

  .funnel-section {
    padding: 72px 0;
  }
}

@media (max-width: 740px) {
  body.funnel-page {
    padding-bottom: 84px;
  }

  .funnel-container {
    width: min(100% - 28px, 1120px);
  }

  .funnel-header {
    position: relative;
  }

  .funnel-scroll-progress {
    display: none;
  }

  .funnel-header__inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .funnel-logo img {
    max-width: 260px;
  }

  .funnel-header__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
  }

  .funnel-call-btn {
    width: 100%;
    min-height: 46px;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px;
    text-align: center;
  }

  .funnel-call-btn::before {
    display: none;
  }

  .funnel-call-btn span {
    font-size: 10px;
    text-transform: uppercase;
  }

  .funnel-call-btn strong {
    font-size: 12px;
  }

  .funnel-btn {
    width: 100%;
  }

  .funnel-calendar-shell iframe {
    min-height: 680px;
  }

  .funnel-calendar-shell--booking iframe {
    min-height: 760px;
  }

  .funnel-qualified-booking__header p:not(.funnel-eyebrow) {
    font-size: 16px;
  }

  .funnel-qualified-booking__actions {
    align-items: flex-start;
    padding: 16px;
  }

  .funnel-btn--booking-fallback {
    min-width: 0;
  }

  .funnel-calendar-placeholder {
    min-height: 520px;
    padding: 30px 18px;
  }

  .funnel-header .funnel-btn--small {
    min-height: 46px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 11px;
  }

  .funnel-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .funnel-hero__actions .funnel-btn:first-child {
    grid-column: 1 / -1;
  }

  .funnel-support {
    display: none;
  }

  .funnel-hero {
    padding: 52px 0 48px;
  }

  .funnel-hero::before {
    background:
      linear-gradient(180deg, rgba(8, 18, 27, 0.96) 0%, rgba(8, 18, 27, 0.9) 58%, rgba(8, 18, 27, 0.86) 100%),
      linear-gradient(90deg, rgba(8, 18, 27, 0.78), rgba(8, 18, 27, 0.44));
  }

  .funnel-hero__video {
    object-position: center center;
    opacity: 0.72;
  }

  .funnel-hero__proof {
    flex-direction: column;
  }

  .funnel-hero__proof span {
    width: 100%;
  }

  .funnel-hero__lead {
    font-size: 17px;
  }

  .funnel-card,
  .funnel-process > div,
  .funnel-form-placeholder {
    padding: 22px;
  }

  .funnel-apply-panel {
    padding: 24px;
  }

  .funnel-apply-card,
  .funnel-review-path > div,
  .funnel-call-card {
    border-radius: 7px;
  }

  .funnel-hero__visual {
    display: none;
  }

  .funnel-dashboard__main,
  .funnel-dashboard__lower {
    grid-template-columns: 1fr;
  }

  .funnel-dashboard__main,
  .funnel-dashboard__cards,
  .funnel-dashboard__lower {
    padding-right: 20px;
    padding-left: 20px;
  }

  .funnel-dashboard__cards {
    grid-template-columns: 1fr;
  }

  .funnel-dashboard__cards,
  .funnel-dashboard__lower {
    display: none;
  }

  .funnel-dashboard__main {
    gap: 16px;
  }

  .funnel-dashboard__main > div:first-child p:not(.funnel-dashboard__label) {
    display: none;
  }

  .funnel-dashboard__status {
    min-width: auto;
  }

  .funnel-dashboard__main h2 {
    font-size: 23px;
  }

  .funnel-dashboard__main p:not(.funnel-dashboard__label) {
    margin-bottom: 0;
  }

  .funnel-dashboard__flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }

  .funnel-dashboard__flow span {
    min-height: 40px;
    font-size: 11px;
  }

  .funnel-dashboard__status {
    text-align: left;
  }

  .funnel-card-grid--four,
  .funnel-proof-grid,
  .funnel-scope-grid,
  .funnel-thank-steps,
  .funnel-trust-strip__grid,
  .funnel-advisor-cards,
  .funnel-fit-grid,
  .funnel-mini-grid,
  .funnel-testimonials,
  .funnel-process,
  .funnel-footer__grid {
    grid-template-columns: 1fr;
  }

  .funnel-video-placeholder {
    min-height: 260px;
  }

  .funnel-authority {
    padding: 58px 0;
  }

  .funnel-media-card,
  .funnel-media-card img {
    min-height: 280px;
  }

  .funnel-media-card__overlay {
    inset: auto 22px 22px 22px;
  }

  .funnel-media-card__overlay strong {
    font-size: 21px;
  }

  .funnel-route-graphic__branches {
    grid-template-columns: 1fr;
  }

  .funnel-final-cta {
    padding: 68px 0;
  }

  .funnel-thank-hero {
    padding: 38px 0 30px;
  }

  .funnel-thank-hero::before {
    background:
      linear-gradient(180deg, rgba(8, 18, 27, 0.92), rgba(8, 18, 27, 0.82)),
      radial-gradient(circle at 24% 18%, rgba(49, 144, 231, 0.18), transparent 32%);
  }

  .funnel-thank-hero__video {
    opacity: 0.48;
  }

  .funnel-thank-hero h1 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .funnel-booking-cue {
    margin-top: 12px;
  }

  .funnel-qualified-booking {
    padding-top: 38px;
  }

  .funnel-trust-strip__grid > div,
  .funnel-trust-strip__grid > div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--srg-line);
  }

  .funnel-mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(221, 230, 238, 0.9);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 44px rgba(17, 34, 43, 0.2);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 240ms ease, transform 240ms ease;
  }

  .funnel-show-mobile-cta .funnel-mobile-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .funnel-mobile-cta a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: "Lato", Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .funnel-mobile-cta__primary {
    border: 1px solid var(--srg-navy);
    background: var(--srg-navy);
    color: var(--srg-white);
  }

  .funnel-mobile-cta__primary:hover,
  .funnel-mobile-cta__primary:focus {
    border-color: var(--srg-green-deep);
    background: var(--srg-green-deep);
    color: var(--srg-white);
    transform: translateY(-1px);
  }

  .funnel-mobile-cta__secondary {
    border: 1px solid var(--srg-line);
    color: var(--srg-slate);
    background: var(--srg-white);
  }

  .funnel-motion-ready .funnel-reveal[data-reveal-variant="left"],
  .funnel-motion-ready .funnel-reveal[data-reveal-variant="right"],
  .funnel-motion-ready .funnel-reveal[data-reveal-variant="scale"],
  .funnel-motion-ready .funnel-reveal[data-reveal-variant="rise"] {
    transform: translateY(28px);
  }
}

@media (max-width: 420px) {
  .funnel-page h1 {
    font-size: 34px;
  }

  .funnel-page h2 {
    font-size: 27px;
  }

  .funnel-dashboard__topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .funnel-apply-panel {
    padding: 22px 18px;
  }

  .funnel-call-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .funnel-call-card strong {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .funnel-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .funnel-hero__video,
  .funnel-thank-hero__video,
  .funnel-dashboard,
  .funnel-hero-intake {
    animation: none !important;
  }

  .funnel-hero__video,
  .funnel-thank-hero__video {
    display: none;
  }
}

/* 2026-08-14 conversion refinement: compact proof, consolidated flow, and safe mobile CTA. */
.funnel-page--strategy .funnel-section--client-proof {
  padding-block: clamp(54px, 5vw, 72px);
  border-top: 1px solid rgba(199, 220, 230, .72);
  border-bottom: 1px solid rgba(199, 220, 230, .78);
  background:
    radial-gradient(circle at 8% 18%, rgba(49, 144, 231, .08), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(201, 162, 39, .08), transparent 30%),
    linear-gradient(135deg, #f7fafc 0%, #ffffff 58%, #fbfaf5 100%);
}

.funnel-client-proof-layout {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.funnel-client-proof-intro h2 {
  max-width: 18ch;
  margin-bottom: 16px;
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.funnel-client-proof-intro > p:last-child {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--srg-muted);
}

.funnel-testimonials--compact {
  gap: 14px;
}

.funnel-testimonials--compact figure {
  display: flex;
  min-height: 184px;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(16, 47, 68, .075);
}

.funnel-testimonials--compact blockquote {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.5;
}

.funnel-fit-grid--embedded {
  margin-top: 30px;
}

.funnel-fit-grid--embedded .funnel-fit-panel {
  padding: 26px;
}

.funnel-process-shell {
  margin-top: clamp(38px, 5vw, 58px);
  padding-top: clamp(38px, 5vw, 58px);
  border-top: 1px solid rgba(199, 220, 230, .8);
}

.funnel-anchor-alias {
  position: relative;
  top: -82px;
  display: block;
  width: 1px;
  height: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 980px) {
  .funnel-client-proof-layout {
    grid-template-columns: 1fr;
  }

  .funnel-client-proof-intro {
    max-width: 660px;
  }
}

@media (max-width: 720px) {
  .funnel-page--strategy .funnel-section--client-proof {
    padding-block: 48px;
  }

  .funnel-testimonials--compact {
    grid-template-columns: 1fr;
  }

  .funnel-testimonials--compact figure {
    min-height: 0;
  }

  .funnel-fit-grid--embedded {
    margin-top: 22px;
  }

  .funnel-process-shell {
    margin-top: 34px;
    padding-top: 34px;
  }

  .funnel-mobile-cta {
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .funnel-mobile-cta-suppressed .funnel-mobile-cta,
  .funnel-bio-modal-open .funnel-mobile-cta {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(20px) !important;
  }
}

/* Video-only hero loading state: no legacy portrait flash before playback. */
.funnel-page--strategy .funnel-hero__video {
  opacity: 0;
  transition: opacity 760ms cubic-bezier(.22, 1, .36, 1);
}

.funnel-page--strategy .funnel-hero__video.funnel-hero__video--ready {
  opacity: .43;
}

@media (max-width: 720px) {
  .funnel-page--strategy .funnel-hero__video.funnel-hero__video--ready {
    opacity: .72;
  }
}

/* Outcome routing pages */
.funnel-outcome-page {
  background: #f6f9fc;
}

.funnel-outcome-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--srg-white);
  background:
    linear-gradient(110deg, rgba(8, 18, 27, 0.96), rgba(8, 18, 27, 0.84)),
    url("../images/page-media/ln-01-long-nurture-hero-desktop.webp") center / cover no-repeat,
    var(--srg-slate);
  border-bottom: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--srg-blue), var(--srg-green)) 1;
}

.funnel-outcome-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(49, 144, 231, 0.28), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(40, 203, 117, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(8, 18, 27, 0.94), rgba(8, 18, 27, 0.72));
}

.funnel-outcome-hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}

.funnel-outcome-grid,
.funnel-booking-layout,
.funnel-outcome-split {
  display: grid;
  gap: 42px;
  align-items: center;
}

.funnel-outcome-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  min-height: calc(100vh - 86px);
  padding: 76px 0;
}

.funnel-booking-layout {
  grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1.18fr);
  min-height: calc(100vh - 86px);
  padding: 42px 0;
}

.funnel-outcome-hero__copy h1 {
  max-width: 720px;
  color: var(--srg-white);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.funnel-outcome-hero__copy .funnel-hero__lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.7vw, 22px);
}

.funnel-outcome-panel,
.funnel-booking-card,
.funnel-outcome-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(12, 25, 35, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.funnel-outcome-panel {
  padding: 34px;
}

.funnel-outcome-panel__label,
.funnel-booking-card__head .funnel-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(40, 203, 117, 0.16);
  color: #a9f1cf;
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.funnel-outcome-panel h2,
.funnel-booking-card h2 {
  color: var(--srg-white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.funnel-outcome-status {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.funnel-outcome-status > div {
  position: relative;
  padding: 18px 18px 18px 46px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.funnel-outcome-status > div::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--srg-green);
  box-shadow: 0 0 0 5px rgba(40, 203, 117, 0.16);
}

.funnel-outcome-status strong,
.funnel-outcome-status span {
  display: block;
}

.funnel-outcome-status strong {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
}

.funnel-outcome-status span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.funnel-btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--srg-white);
}

.funnel-booking-card {
  display: grid;
  overflow: hidden;
  background: rgba(250, 253, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.48);
}

.funnel-booking-card__head {
  padding: 24px 26px 20px;
  background: linear-gradient(135deg, #102432, #19364a);
}

.funnel-booking-card__head h2 {
  margin: 0;
}

.funnel-booking-card__head p:not(.funnel-eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.funnel-calendar-shell--route {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.funnel-calendar-shell--route iframe {
  min-height: min(760px, calc(100vh - 260px));
  background: var(--srg-white);
}

.funnel-booking-card__foot {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--srg-line);
  background: var(--srg-white);
}

.funnel-booking-card__foot p {
  margin: 0;
  color: var(--srg-muted);
  font-size: 14px;
}

.funnel-booking-card__foot a {
  color: var(--srg-blue);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

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

.funnel-next-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--srg-line);
  border-radius: 12px;
  background: var(--srg-white);
  box-shadow: 0 14px 34px rgba(17, 34, 43, 0.06);
}

.funnel-next-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green));
}

.funnel-next-grid span {
  color: var(--srg-blue);
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.funnel-next-grid p,
.funnel-outcome-split p,
.funnel-outcome-card p {
  color: var(--srg-muted);
}

.funnel-outcome-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.funnel-outcome-card {
  padding: 30px;
  border-color: var(--srg-line);
  background: var(--srg-white);
  box-shadow: var(--srg-shadow);
}

.funnel-outcome-card h3 {
  color: var(--srg-slate);
}

.funnel-outcome-card a {
  color: var(--srg-blue);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .funnel-booking-layout {
    grid-template-columns: 1fr;
    padding: 52px 0;
  }

  .funnel-booking-card {
    max-width: 920px;
  }

  .funnel-calendar-shell--route iframe {
    min-height: 760px;
  }
}

@media (max-width: 980px) {
  .funnel-outcome-grid,
  .funnel-outcome-split {
    grid-template-columns: 1fr;
  }

  .funnel-outcome-grid {
    min-height: auto;
    padding: 60px 0;
  }

  .funnel-next-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  .funnel-booking-layout,
  .funnel-outcome-grid {
    padding: 36px 0;
  }

  .funnel-outcome-hero__copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .funnel-outcome-panel,
  .funnel-booking-card__head,
  .funnel-next-grid article,
  .funnel-outcome-card {
    padding: 22px;
  }

  .funnel-calendar-shell--route iframe {
    min-height: 720px;
  }

  .funnel-booking-card__foot {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .funnel-outcome-hero__video {
    display: none;
  }
}

/* Route page safeguards and first-viewport polish */
.funnel-outcome-page.funnel-motion-ready .funnel-outcome-hero .funnel-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.funnel-outcome-page .funnel-outcome-hero {
  background:
    linear-gradient(115deg, rgba(8, 18, 27, 0.97), rgba(16, 36, 50, 0.9)),
    url("../images/page-media/ln-01-long-nurture-hero-desktop.webp") center right / cover no-repeat,
    var(--srg-slate);
}

.funnel-outcome-page .funnel-outcome-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 18, 27, 0.96) 0%, rgba(8, 18, 27, 0.84) 58%, rgba(8, 18, 27, 0.76) 100%),
    radial-gradient(circle at 16% 24%, rgba(49, 144, 231, 0.22), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(40, 203, 117, 0.13), transparent 30%);
}

.funnel-outcome-page .funnel-outcome-hero__video {
  opacity: 0.18;
  filter: saturate(0.85) contrast(0.95);
}

.funnel-outcome-page .funnel-outcome-grid {
  min-height: auto;
  padding: 62px 0 58px;
}

.funnel-outcome-page .funnel-booking-layout {
  grid-template-columns: minmax(290px, 0.55fr) minmax(560px, 1.45fr);
  gap: 28px;
  align-items: start;
  min-height: auto;
  padding: 34px 0 42px;
}

.funnel-outcome-page .funnel-outcome-hero__copy h1 {
  color: var(--srg-white);
  font-size: 50px;
  line-height: 1.04;
  letter-spacing: 0;
}

.funnel-outcome-page .funnel-outcome-hero--booking .funnel-outcome-hero__copy h1 {
  font-size: 42px;
}

.funnel-outcome-page .funnel-outcome-hero__copy .funnel-hero__lead {
  font-size: 18px;
  line-height: 1.62;
}

.funnel-outcome-status--compact {
  gap: 10px;
  margin-top: 22px;
}

.funnel-outcome-status--compact > div {
  padding: 14px 14px 14px 40px;
}

.funnel-outcome-status--compact > div::before {
  top: 20px;
  left: 17px;
}

.funnel-outcome-page .funnel-outcome-panel,
.funnel-outcome-page .funnel-booking-card {
  border-radius: 8px;
}

.funnel-outcome-page .funnel-booking-card {
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
}

.funnel-outcome-page .funnel-booking-card__head {
  padding: 20px 22px 16px;
}

.funnel-outcome-page .funnel-booking-card__head h2 {
  font-size: 30px;
}

.funnel-outcome-page .funnel-calendar-shell--route iframe {
  min-height: 680px;
}

.funnel-outcome-page .funnel-next-grid article {
  border-radius: 8px;
}

@media (max-width: 1120px) {
  .funnel-outcome-page .funnel-booking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .funnel-outcome-page .funnel-outcome-grid {
    padding: 52px 0;
  }
}

@media (max-width: 740px) {
  .funnel-outcome-page .funnel-outcome-grid,
  .funnel-outcome-page .funnel-booking-layout {
    padding: 30px 0;
  }

  .funnel-outcome-page .funnel-booking-card {
    order: -1;
  }

  .funnel-outcome-page .funnel-outcome-hero__copy h1,
  .funnel-outcome-page .funnel-outcome-hero--booking .funnel-outcome-hero__copy h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .funnel-outcome-page .funnel-outcome-hero__copy .funnel-hero__lead {
    font-size: 17px;
  }

  .funnel-outcome-page .funnel-calendar-shell--route iframe {
    min-height: 700px;
  }
}


/* ==========================================================================\n   SRG premium Step 1 host alignment — 2026-07-20\n   Keeps the same GHL form and workflow. This only refines the original\n   strategy-consultation page so the shared form also feels premium there.\n   ========================================================================== */
.funnel-page .funnel-section--apply {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 78px 0;
  color: var(--srg-white);
  background:
    linear-gradient(90deg, rgba(5, 25, 37, 0.98) 0%, rgba(7, 31, 45, 0.94) 46%, rgba(7, 31, 45, 0.82) 100%),
    url("../images/page-media/sf-04-final-form-cta-desktop.webp") 68% center / cover no-repeat;
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.funnel-page .funnel-section--apply::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 38%, rgba(201, 162, 39, 0.10), transparent 23%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 34%);
}

.funnel-page .funnel-section--apply .funnel-container {
  width: min(1180px, calc(100% - 48px));
}

.funnel-page .funnel-section--apply .funnel-apply-grid {
  grid-template-columns: minmax(330px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(36px, 4.5vw, 64px);
  align-items: center;
}

.funnel-page .funnel-section--apply .funnel-apply-panel {
  position: relative;
  top: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(7, 30, 44, 0.78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.funnel-page .funnel-section--apply .funnel-apply-panel::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a227 18%, #e0c24b 52%, #c9a227 82%, transparent);
}

.funnel-page .funnel-section--apply .funnel-apply-panel h2 {
  max-width: 12ch;
  font-size: clamp(36px, 3.35vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.funnel-page .funnel-section--apply .funnel-form-shell--live {
  width: min(100%, 620px);
  justify-self: end;
  align-self: center;
  border: 1px solid rgba(220, 236, 244, 0.82);
  border-top: 3px solid #c9a227;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.27), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* The live GHL embed already reports its actual height. The previous 811px
   minimum created the large empty white block visible on the old page. */
.funnel-page .funnel-section--apply .funnel-form-live--step-one {
  min-height: 0;
}

.funnel-page .funnel-section--apply .funnel-form-live,
.funnel-page .funnel-section--apply .funnel-form-live iframe {
  border-radius: 0 0 10px 10px;
}

@media (max-width: 980px) {
  .funnel-page .funnel-section--apply {
    padding: 64px 0;
    background-position: 72% center;
  }

  .funnel-page .funnel-section--apply .funnel-apply-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .funnel-page .funnel-section--apply .funnel-apply-panel,
  .funnel-page .funnel-section--apply .funnel-form-shell--live {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    justify-self: center;
  }

  .funnel-page .funnel-section--apply .funnel-apply-panel h2 {
    max-width: 14ch;
  }
}

@media (max-width: 740px) {
  .funnel-page .funnel-section--apply {
    padding: 48px 0;
    background:
      linear-gradient(180deg, rgba(5, 25, 37, 0.98), rgba(7, 31, 45, 0.94)),
      url("../images/page-media/sf-04-final-form-cta-mobile.webp") 70% center / cover no-repeat;
  }

  .funnel-page .funnel-section--apply .funnel-container {
    width: min(100% - 28px, 1120px);
  }

  .funnel-page .funnel-section--apply .funnel-apply-panel {
    padding: 24px 20px;
  }

  .funnel-page .funnel-section--apply .funnel-apply-panel h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .funnel-page .funnel-section--apply .funnel-form-shell--live {
    border-radius: 10px;
  }
}


/* ==========================================================================
   SRG V4 final application-section polish
   ========================================================================== */
.funnel-section--apply {
  position: relative;
  overflow: hidden;
  background: #0a2739;
}
.funnel-section--apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,25,37,.97), rgba(8,34,49,.82) 48%, rgba(8,34,49,.72)),
    url("../images/page-media/sf-04-final-form-cta-desktop.webp") 68% center / cover no-repeat;
  opacity: .96;
}
.funnel-section--apply::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 76% 26%, rgba(220,236,244,.11), transparent 30%);
}
.funnel-section--apply .funnel-container { position: relative; z-index: 1; }
.funnel-apply-grid {
  grid-template-columns: minmax(330px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.funnel-apply-panel {
  top: 108px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.funnel-apply-panel::before { display: none; }
.funnel-apply-panel h2 {
  max-width: 540px;
  margin-bottom: 17px;
  font-size: clamp(39px, 3.7vw, 58px);
  line-height: .98;
  letter-spacing: -.035em;
}
.funnel-apply-panel .funnel-eyebrow { color: #e2c34d; }
.funnel-apply-intro { max-width: 560px; font-size: 16px; line-height: 1.65; }
.funnel-review-path {
  margin-top: 27px;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.funnel-review-path > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 15px;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  background: transparent;
}
.funnel-review-path > div::before { display: none; }
.funnel-review-path span {
  grid-row: 1 / span 2;
  padding-top: 2px;
  color: #e2c34d;
  font-size: 11px;
  letter-spacing: .12em;
}
.funnel-review-path strong { color: #fff; font-size: 15px; }
.funnel-review-path p { margin-top: 5px; font-size: 13px; line-height: 1.5; }
.funnel-apply-panel .funnel-form-note {
  margin-top: 20px;
  padding: 15px 17px;
  border-left: 2px solid #e2c34d;
  background: rgba(220,236,244,.07);
  color: rgba(255,255,255,.72);
}
.funnel-call-card {
  margin-top: 14px;
  border-color: rgba(201,162,39,.34);
  background: rgba(201,162,39,.08);
}
.funnel-call-card:hover { border-color: rgba(201,162,39,.58); background: rgba(201,162,39,.12); }
.funnel-form-shell--live {
  max-width: 640px;
  width: 100%;
  justify-self: end;
  border: 1px solid rgba(220,236,244,.48);
  border-top: 4px solid #c9a227;
  border-radius: 10px;
  box-shadow: 0 28px 74px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.06);
}
.funnel-form-live--step-one { min-height: 690px; }
.funnel-form-live iframe { border-radius: 0 !important; }

@media (max-width: 1023px) {
  .funnel-apply-grid { grid-template-columns: 1fr; }
  .funnel-apply-panel { position: relative; top: auto; }
  .funnel-form-shell--live { max-width: 760px; justify-self: start; }
}


@media (max-width: 980px) {
  .funnel-authority .funnel-container {
    width: min(760px, calc(100% - 40px));
  }

  .funnel-authority__panel-head {
    align-items: center;
  }

  .funnel-authority__intro-card,
  .funnel-authority__panel {
    padding: 30px;
  }

  .funnel-authority__intro-card h2 {
    max-width: 14ch;
  }

  .funnel-authority__note {
    margin-top: 26px;
  }
}

@media (max-width: 640px) {
  .funnel-authority {
    padding: 58px 0;
  }

  .funnel-authority .funnel-container {
    width: min(100% - 28px, 760px);
  }

  .funnel-authority__intro-card,
  .funnel-authority__panel {
    padding: 20px;
    border-radius: 20px;
  }

  .funnel-authority__intro-card h2 {
    margin-top: 8px;
    font-size: clamp(32px, 10vw, 40px);
  }

  .funnel-authority__panel-head {
    align-items: flex-start;
  }

  .funnel-authority__panel-head h3 {
    font-size: 22px;
  }

  .funnel-authority__panel-badge {
    min-height: 34px;
    padding: 7px 11px;
  }

  .funnel-authority__points li {
    grid-template-columns: 36px minmax(0, 1fr);
    column-gap: 10px;
  }

  .funnel-authority__note {
    padding: 17px 18px;
  }

  .funnel-advisor-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .funnel-advisor-cards article {
    border-radius: 12px;
  }

  .funnel-advisor-card__body {
    padding: 34px 12px 12px;
  }

  .funnel-advisor-cards strong {
    font-size: clamp(14px, 4vw, 17px);
  }

  .funnel-advisor-cards span {
    font-size: 12px;
  }
}

/* ==========================================================================
   Long nurture landing page — design pass A
   Scoped to strategy-consultation.html so route pages and the short funnel
   retain their approved layouts, forms, and motion behavior.
   ========================================================================== */

.funnel-page--strategy {
  --strategy-gold: #c9a227;
  --strategy-gold-deep: #9b7613;
  --strategy-gold-soft: #f7f1dc;
  --strategy-surface: #f5f8fa;
  --strategy-border: rgba(23, 63, 91, 0.14);
}

.funnel-page--strategy #qualify,
.funnel-page--strategy .funnel-section--decision,
.funnel-page--strategy .funnel-section--fit,
.funnel-page--strategy .funnel-section--review-scope,
.funnel-page--strategy .funnel-section--risk,
.funnel-page--strategy .funnel-section--advisory-positioning,
.funnel-page--strategy .funnel-section--review-approach {
  padding: 76px 0;
}

.funnel-page--strategy #qualify > .funnel-container,
.funnel-page--strategy .funnel-section--decision > .funnel-container,
.funnel-page--strategy .funnel-section--fit > .funnel-container,
.funnel-page--strategy .funnel-section--review-scope > .funnel-container,
.funnel-page--strategy .funnel-section--risk > .funnel-container,
.funnel-page--strategy .funnel-section--advisory-positioning > .funnel-container,
.funnel-page--strategy .funnel-section--review-approach > .funnel-container {
  width: min(1180px, calc(100% - 48px));
}

.funnel-page--strategy #qualify h2,
.funnel-page--strategy .funnel-section--decision h2,
.funnel-page--strategy .funnel-section--fit h2,
.funnel-page--strategy .funnel-section--review-scope h2,
.funnel-page--strategy .funnel-section--risk h2,
.funnel-page--strategy .funnel-section--advisory-positioning h2,
.funnel-page--strategy .funnel-section--review-approach h2 {
  font-size: clamp(31px, 3.2vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.funnel-page--strategy #qualify,
.funnel-page--strategy .funnel-section--fit {
  background: var(--strategy-surface);
}

.funnel-page--strategy .funnel-section--decision,
.funnel-page--strategy .funnel-section--risk {
  background: var(--srg-white);
}

.funnel-page--strategy .funnel-section--review-scope {
  background:
    radial-gradient(circle at 10% 8%, rgba(49, 144, 231, 0.08), transparent 30%),
    linear-gradient(180deg, #eef6f9 0%, #f7fafc 100%);
}

.funnel-page--strategy .funnel-section__intro {
  max-width: 850px;
  margin-bottom: 32px;
}

.funnel-page--strategy .funnel-section__intro .funnel-eyebrow::after,
.funnel-page--strategy .funnel-proof-grid article::before,
.funnel-page--strategy .funnel-scope-grid article::before,
.funnel-page--strategy .funnel-proof-grid h3::before,
.funnel-page--strategy .funnel-scope-grid h3::before,
.funnel-page--strategy .funnel-card h3::before,
.funnel-page--strategy .funnel-decision-list > div::before {
  background: linear-gradient(90deg, var(--srg-blue), var(--strategy-gold));
}

.funnel-page--strategy .funnel-card,
.funnel-page--strategy .funnel-fit-panel,
.funnel-page--strategy .funnel-risk-list > div,
.funnel-page--strategy .funnel-decision-list > div,
.funnel-page--strategy .funnel-scope-grid article {
  border-color: var(--strategy-border);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(17, 34, 43, 0.065);
}

.funnel-page--strategy .funnel-card,
.funnel-page--strategy .funnel-scope-grid article {
  height: 100%;
  padding: 27px;
}

.funnel-page--strategy .funnel-fit-panel {
  padding: 30px;
}

.funnel-page--strategy .funnel-fit-panel--good {
  border-color: rgba(201, 162, 39, 0.32);
  background:
    linear-gradient(180deg, rgba(247, 241, 220, 0.92), rgba(255, 255, 255, 0) 56%),
    var(--srg-white);
}

.funnel-page--strategy .funnel-section--review-scope .funnel-service-cta::after {
  color: var(--strategy-gold-deep);
}

.funnel-page--strategy .funnel-section--review-scope .funnel-service-cta:hover,
.funnel-page--strategy .funnel-section--review-scope .funnel-service-cta:focus {
  color: var(--srg-navy-deep);
}

.funnel-page--strategy .funnel-section--fit .funnel-checklist li::before,
.funnel-page--strategy .funnel-section--review-approach .funnel-checklist li::before {
  background: var(--strategy-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.17);
}

.funnel-page--strategy .funnel-decision-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
}

.funnel-page--strategy .funnel-decision-list {
  gap: 12px;
}

.funnel-page--strategy .funnel-decision-list > div {
  padding: 20px 22px 20px 27px;
}

.funnel-page--strategy .funnel-section--risk .funnel-split {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
}

.funnel-page--strategy .funnel-section--risk h2 {
  max-width: 14ch;
}

.funnel-page--strategy .funnel-section--risk p:not(.funnel-eyebrow) {
  max-width: 510px;
  color: var(--srg-muted);
}

.funnel-page--strategy .funnel-risk-intro {
  min-width: 0;
}

.funnel-page--strategy .funnel-risk-visual {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  margin: 28px 0 0;
  border: 1px solid rgba(23, 63, 91, 0.14);
  border-radius: 16px;
  aspect-ratio: 16 / 6.6;
  background: var(--srg-navy-deep);
  box-shadow: 0 20px 44px rgba(16, 47, 68, 0.15);
}

.funnel-page--strategy .funnel-risk-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 20, 31, 0.88), transparent 62%);
  content: "";
  pointer-events: none;
}

.funnel-page--strategy .funnel-risk-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 54%;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.funnel-page--strategy .funnel-risk-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.funnel-page--strategy .funnel-risk-visual figcaption span {
  color: #f2d86f;
  font-family: "Lato", Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.funnel-page--strategy .funnel-risk-visual figcaption strong {
  max-width: 36ch;
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.funnel-page--strategy .funnel-section--risk .funnel-risk-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.funnel-page--strategy .funnel-section--risk .funnel-risk-list > div {
  min-height: 150px;
  padding: 22px;
}

.funnel-page--strategy .funnel-section--risk .funnel-risk-list strong {
  color: var(--srg-navy-deep);
  font-family: "Lato", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.3;
}

.funnel-page--strategy .funnel-section--risk .funnel-risk-list span {
  margin-top: 7px;
  line-height: 1.55;
}

.funnel-page--strategy .funnel-section--advisory-positioning {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(49, 144, 231, 0.16), transparent 31%),
    radial-gradient(circle at 92% 86%, rgba(201, 162, 39, 0.1), transparent 26%),
    linear-gradient(135deg, #102f44 0%, #173f5b 56%, #102f44 100%);
}

.funnel-page--strategy .funnel-section--advisory-positioning .funnel-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: stretch;
}

.funnel-page--strategy .funnel-review-map {
  position: relative;
  min-height: 600px;
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 48%, rgba(49, 144, 231, 0.18), transparent 30%),
    radial-gradient(circle at 92% 4%, rgba(226, 195, 77, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(6, 28, 43, 0.92), rgba(10, 42, 62, 0.76));
  box-shadow: 0 28px 72px rgba(4, 18, 29, 0.3);
}

.funnel-page--strategy .funnel-review-map::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}

.funnel-page--strategy .funnel-review-map > * {
  position: relative;
  z-index: 1;
}

.funnel-page--strategy .funnel-review-map__head h3 {
  max-width: 15ch;
  color: var(--srg-white);
  font-size: clamp(25px, 2.2vw, 31px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.funnel-page--strategy .funnel-review-map__head > p:last-child {
  max-width: 46ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.58;
}

.funnel-page--strategy .funnel-review-orbit {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(170px, 0.85fr);
  gap: 12px;
  min-height: 276px;
  margin: 18px 0 16px;
}

.funnel-page--strategy .funnel-review-orbit__image {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 276px;
  margin: 0;
  border: 1px solid rgba(157, 216, 255, 0.18);
  border-radius: 16px;
  background: #0b2638;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.funnel-page--strategy .funnel-review-orbit__image::after,
.funnel-page--strategy .funnel-review-standard__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 20, 31, 0.92), transparent 58%);
  content: "";
  pointer-events: none;
}

.funnel-page--strategy .funnel-review-orbit__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 40% center;
  filter: saturate(0.9) contrast(1.02) brightness(0.9);
  transform: scale(1.04);
  transform-origin: 40% 56%;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.funnel-page--strategy .funnel-review-orbit__image figcaption,
.funnel-page--strategy .funnel-review-standard__image figcaption {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.funnel-page--strategy .funnel-review-orbit__image figcaption span,
.funnel-page--strategy .funnel-review-standard__image figcaption span {
  color: #f2d86f;
  font-family: "Lato", Arial, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.funnel-page--strategy .funnel-review-orbit__image figcaption strong,
.funnel-page--strategy .funnel-review-standard__image figcaption strong {
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.funnel-page--strategy .funnel-review-map__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.funnel-page--strategy .funnel-review-node {
  position: relative;
  width: auto;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(157, 216, 255, 0.16);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(8px);
  transition: border-color 220ms ease, transform 260ms ease, background-color 220ms ease;
}

.funnel-page--strategy .funnel-review-node__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226, 195, 77, 0.28);
  border-radius: 11px;
  background: rgba(201, 162, 39, 0.09);
  color: #f2d86f;
}

.funnel-page--strategy .funnel-review-node__icon svg,
.funnel-page--strategy .funnel-review-standard__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.funnel-page--strategy .funnel-review-node strong {
  display: block;
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
}

.funnel-page--strategy .funnel-review-node div > span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.funnel-page--strategy .funnel-review-map__output {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid rgba(226, 195, 77, 0.2);
  border-left: 3px solid #e2c34d;
  border-radius: 0 12px 12px 0;
  background: rgba(201, 162, 39, 0.08);
}

.funnel-page--strategy .funnel-review-map__output span {
  color: #f2d86f;
  font-family: "Lato", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.funnel-page--strategy .funnel-review-map__output > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  text-align: right;
}

.funnel-page--strategy .funnel-review-map__output strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  line-height: 1.35;
}

.funnel-page--strategy .funnel-review-map__output i {
  color: #e2c34d;
  font-size: 13px;
  font-style: normal;
}

.funnel-page--strategy .funnel-section--advisory-positioning .funnel-split > div:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.funnel-page--strategy .funnel-section--advisory-positioning .funnel-eyebrow {
  color: #9dd8ff;
}

.funnel-page--strategy .funnel-section--advisory-positioning h2 {
  max-width: 16ch;
  color: var(--srg-white);
  font-size: clamp(34px, 3.35vw, 46px);
}

.funnel-page--strategy .funnel-section--advisory-positioning h2 + p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: 17px;
  line-height: 1.65;
}

.funnel-page--strategy .funnel-section--advisory-positioning .funnel-mini-grid {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.funnel-page--strategy .funnel-section--advisory-positioning .funnel-mini-grid > div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  column-gap: 12px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
}

.funnel-page--strategy .funnel-section--advisory-positioning .funnel-mini-grid > div:last-child {
  border-bottom: 0;
}

.funnel-page--strategy .funnel-section--advisory-positioning .funnel-mini-grid > div::before {
  grid-row: 1 / span 2;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border: 2px solid #e2c34d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(226, 195, 77, 0.08);
  content: "";
}

.funnel-page--strategy .funnel-section--advisory-positioning .funnel-mini-grid strong {
  color: var(--srg-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.funnel-page--strategy .funnel-section--advisory-positioning .funnel-mini-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.funnel-page--strategy .funnel-section--review-approach {
  background:
    radial-gradient(circle at 86% 18%, rgba(49, 144, 231, 0.09), transparent 29%),
    linear-gradient(180deg, #f8fbfd 0%, #eef6f9 100%);
  border-bottom: 1px solid var(--strategy-border);
}

.funnel-page--strategy .funnel-section--review-approach .funnel-video-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
}

.funnel-page--strategy .funnel-section--review-approach .funnel-video-grid > div:first-child {
  max-width: 540px;
}

.funnel-page--strategy .funnel-section--review-approach h2 + p {
  margin-top: 19px;
  color: var(--srg-muted);
  font-size: 17px;
}

.funnel-page--strategy .funnel-review-standard {
  position: relative;
  min-height: 438px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(23, 63, 91, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 68px rgba(16, 47, 68, 0.18);
}

.funnel-page--strategy .funnel-review-standard::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--strategy-gold), #3190e7 52%, #173f5b);
  content: "";
}

.funnel-page--strategy .funnel-review-standard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 27px 28px 24px;
  border-bottom: 1px solid rgba(23, 63, 91, 0.12);
  background:
    linear-gradient(135deg, rgba(220, 236, 244, 0.72), rgba(247, 241, 220, 0.46));
}

.funnel-page--strategy .funnel-review-standard__head .funnel-eyebrow {
  margin-bottom: 9px;
  color: var(--srg-blue);
}

.funnel-page--strategy .funnel-review-standard__head h3 {
  max-width: 18ch;
  color: var(--srg-navy-deep);
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.funnel-page--strategy .funnel-review-standard__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-radius: 999px;
  background: rgba(247, 241, 220, 0.84);
  color: var(--strategy-gold-deep);
  font-family: "Lato", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.funnel-page--strategy .funnel-review-standard__body {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 236px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(49, 144, 231, 0.08), transparent 45%),
    #ffffff;
}

.funnel-page--strategy .funnel-review-standard__image {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 236px;
  margin: 0;
  border-radius: 14px;
  background: var(--srg-navy-deep);
  box-shadow: 0 16px 34px rgba(16, 47, 68, 0.16);
}

.funnel-page--strategy .funnel-review-standard__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 47% center;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.funnel-page--strategy .funnel-review-standard__flow {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  padding-left: 14px;
}

.funnel-page--strategy .funnel-review-standard__flow article {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  min-width: 0;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(23, 63, 91, 0.1);
  transition: background-color 220ms ease, transform 260ms ease;
}

.funnel-page--strategy .funnel-review-standard__flow article:last-child {
  border-bottom: 0;
}

.funnel-page--strategy .funnel-review-standard__flow article:not(:last-child)::after {
  position: absolute;
  bottom: -10px;
  left: 22px;
  z-index: 2;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, 0.26);
  border-radius: 50%;
  background: #ffffff;
  color: var(--strategy-gold-deep);
  content: "\2192";
  font-family: Arial, sans-serif;
  font-size: 10px;
  box-shadow: 0 5px 14px rgba(16, 47, 68, 0.11);
  transform: rotate(90deg);
}

.funnel-page--strategy .funnel-review-standard__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  border: 1px solid rgba(49, 144, 231, 0.2);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(220, 236, 244, 0.85), rgba(255, 255, 255, 0.96));
  color: var(--srg-blue);
  box-shadow: 0 12px 28px rgba(23, 63, 91, 0.11);
}

.funnel-page--strategy .funnel-review-standard__flow article:nth-child(2) .funnel-review-standard__icon {
  border-color: rgba(201, 162, 39, 0.24);
  background: linear-gradient(145deg, rgba(247, 241, 220, 0.9), #ffffff);
  color: var(--strategy-gold-deep);
}

.funnel-page--strategy .funnel-review-standard__flow strong {
  grid-column: 2;
  display: block;
  color: var(--srg-navy-deep);
  font-family: "Lato", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.funnel-page--strategy .funnel-review-standard__flow p {
  grid-column: 2;
  margin: 3px 0 0;
  color: var(--srg-muted);
  font-size: 13px;
  line-height: 1.45;
}

.funnel-page--strategy .funnel-review-standard__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--srg-navy-deep);
}

.funnel-page--strategy .funnel-review-standard__footer span {
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Lato", Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .funnel-page--strategy .funnel-review-node:hover {
    border-color: rgba(226, 195, 77, 0.42);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
  }

  .funnel-page--strategy .funnel-review-standard__flow article:hover {
    background-color: rgba(238, 246, 249, 0.72);
    transform: translateY(-2px);
  }

  .funnel-page--strategy .funnel-review-orbit__image:hover img,
  .funnel-page--strategy .funnel-review-standard__image:hover img {
    transform: scale(1.2);
  }

  .funnel-page--strategy .funnel-review-standard__image:hover img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .funnel-page--strategy .funnel-review-node,
  .funnel-page--strategy .funnel-review-standard__flow article,
  .funnel-page--strategy .funnel-review-orbit__image img,
  .funnel-page--strategy .funnel-review-standard__image img {
    transition: none;
  }
}

/* Faster, quieter reveals keep content visible during natural scrolling. */
.funnel-page--strategy.funnel-motion-ready .funnel-reveal {
  transform: translateY(14px);
  transition: opacity 720ms ease-out, transform 880ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: 0ms;
}

.funnel-page--strategy.funnel-motion-ready .funnel-reveal[data-reveal-variant="left"] {
  transform: translateX(-18px);
}

.funnel-page--strategy.funnel-motion-ready .funnel-reveal[data-reveal-variant="right"] {
  transform: translateX(18px);
}

.funnel-page--strategy.funnel-motion-ready .funnel-reveal[data-reveal-variant="scale"] {
  transform: translateY(12px) scale(0.982);
}

.funnel-page--strategy.funnel-motion-ready .funnel-reveal[data-reveal-variant="rise"] {
  transform: translateY(18px);
}

.funnel-page--strategy.funnel-motion-ready .funnel-reveal--visible,
.funnel-page--strategy.funnel-motion-ready .funnel-reveal--visible[data-reveal-variant] {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.funnel-page--strategy.funnel-motion-ready .funnel-card.funnel-reveal--visible,
.funnel-page--strategy.funnel-motion-ready .funnel-fit-panel.funnel-reveal--visible,
.funnel-page--strategy.funnel-motion-ready .funnel-form-shell.funnel-reveal--visible,
.funnel-page--strategy.funnel-motion-ready .funnel-reveal--visible .funnel-checklist li::before {
  animation: none;
}

.funnel-page--strategy.funnel-motion-ready .funnel-card-grid > :nth-child(2),
.funnel-page--strategy.funnel-motion-ready .funnel-scope-grid > :nth-child(2),
.funnel-page--strategy.funnel-motion-ready .funnel-risk-list > :nth-child(2),
.funnel-page--strategy.funnel-motion-ready .funnel-decision-list > :nth-child(2) {
  transition-delay: 45ms;
}

.funnel-page--strategy.funnel-motion-ready .funnel-card-grid > :nth-child(3),
.funnel-page--strategy.funnel-motion-ready .funnel-scope-grid > :nth-child(3),
.funnel-page--strategy.funnel-motion-ready .funnel-risk-list > :nth-child(3),
.funnel-page--strategy.funnel-motion-ready .funnel-decision-list > :nth-child(3) {
  transition-delay: 90ms;
}

.funnel-page--strategy.funnel-motion-ready .funnel-card-grid > :nth-child(4),
.funnel-page--strategy.funnel-motion-ready .funnel-risk-list > :nth-child(4) {
  transition-delay: 135ms;
}

@media (max-width: 980px) {
  .funnel-page--strategy #qualify,
  .funnel-page--strategy .funnel-section--decision,
  .funnel-page--strategy .funnel-section--fit,
  .funnel-page--strategy .funnel-section--review-scope,
  .funnel-page--strategy .funnel-section--risk,
  .funnel-page--strategy .funnel-section--advisory-positioning,
  .funnel-page--strategy .funnel-section--review-approach {
    padding: 64px 0;
  }

  .funnel-page--strategy #qualify > .funnel-container,
  .funnel-page--strategy .funnel-section--decision > .funnel-container,
  .funnel-page--strategy .funnel-section--fit > .funnel-container,
  .funnel-page--strategy .funnel-section--review-scope > .funnel-container,
  .funnel-page--strategy .funnel-section--risk > .funnel-container,
  .funnel-page--strategy .funnel-section--advisory-positioning > .funnel-container,
  .funnel-page--strategy .funnel-section--review-approach > .funnel-container {
    width: min(760px, calc(100% - 40px));
  }

  .funnel-page--strategy .funnel-decision-grid,
  .funnel-page--strategy .funnel-section--risk .funnel-split,
  .funnel-page--strategy .funnel-section--advisory-positioning .funnel-split,
  .funnel-page--strategy .funnel-section--review-approach .funnel-video-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .funnel-page--strategy .funnel-section--advisory-positioning .funnel-split > div:last-child {
    order: 1;
    padding: 0;
  }

  .funnel-page--strategy .funnel-section--advisory-positioning .funnel-review-map {
    order: 2;
    min-height: 0;
  }

  .funnel-page--strategy .funnel-section--review-approach .funnel-video-grid > div:first-child {
    max-width: 680px;
  }
}

@media (max-width: 740px) {
  .funnel-page--strategy #qualify,
  .funnel-page--strategy .funnel-section--decision,
  .funnel-page--strategy .funnel-section--fit,
  .funnel-page--strategy .funnel-section--review-scope,
  .funnel-page--strategy .funnel-section--risk,
  .funnel-page--strategy .funnel-section--advisory-positioning,
  .funnel-page--strategy .funnel-section--review-approach {
    padding: 52px 0;
  }

  .funnel-page--strategy #qualify > .funnel-container,
  .funnel-page--strategy .funnel-section--decision > .funnel-container,
  .funnel-page--strategy .funnel-section--fit > .funnel-container,
  .funnel-page--strategy .funnel-section--review-scope > .funnel-container,
  .funnel-page--strategy .funnel-section--risk > .funnel-container,
  .funnel-page--strategy .funnel-section--advisory-positioning > .funnel-container,
  .funnel-page--strategy .funnel-section--review-approach > .funnel-container {
    width: min(100% - 28px, 760px);
  }

  .funnel-page--strategy #qualify h2,
  .funnel-page--strategy .funnel-section--decision h2,
  .funnel-page--strategy .funnel-section--fit h2,
  .funnel-page--strategy .funnel-section--review-scope h2,
  .funnel-page--strategy .funnel-section--risk h2,
  .funnel-page--strategy .funnel-section--advisory-positioning h2,
  .funnel-page--strategy .funnel-section--review-approach h2 {
    font-size: clamp(29px, 8.6vw, 36px);
  }

  .funnel-page--strategy .funnel-section__intro {
    margin-bottom: 26px;
  }

  .funnel-page--strategy .funnel-card,
  .funnel-page--strategy .funnel-fit-panel,
  .funnel-page--strategy .funnel-risk-list > div,
  .funnel-page--strategy .funnel-decision-list > div,
  .funnel-page--strategy .funnel-scope-grid article {
    border-radius: 12px;
  }

  .funnel-page--strategy .funnel-card,
  .funnel-page--strategy .funnel-fit-panel,
  .funnel-page--strategy .funnel-scope-grid article {
    padding: 22px;
  }

  .funnel-page--strategy .funnel-section--risk .funnel-risk-list {
    grid-template-columns: 1fr;
  }

  .funnel-page--strategy .funnel-section--risk .funnel-risk-list > div {
    min-height: 0;
    padding: 20px;
  }

  .funnel-page--strategy .funnel-risk-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .funnel-page--strategy .funnel-section--advisory-positioning .funnel-review-map {
    padding: 22px;
    border-radius: 14px;
  }

  .funnel-page--strategy .funnel-review-orbit {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    margin: 26px 0 18px;
  }

  .funnel-page--strategy .funnel-review-orbit__image {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .funnel-page--strategy .funnel-review-map__items {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .funnel-page--strategy .funnel-review-node {
    position: relative;
    inset: auto;
    width: auto;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 12px;
  }

  .funnel-page--strategy .funnel-review-node__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .funnel-page--strategy .funnel-review-node__icon svg {
    width: 18px;
    height: 18px;
  }

  .funnel-page--strategy .funnel-review-map__output {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .funnel-page--strategy .funnel-review-map__output > div {
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
  }

  .funnel-page--strategy .funnel-section--advisory-positioning h2 + p,
  .funnel-page--strategy .funnel-section--review-approach h2 + p {
    font-size: 16px;
  }

  .funnel-page--strategy .funnel-section--advisory-positioning .funnel-mini-grid > div {
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 10px;
    padding: 14px 0;
  }

  .funnel-page--strategy .funnel-review-standard {
    border-radius: 14px;
  }

  .funnel-page--strategy .funnel-review-standard__head {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .funnel-page--strategy .funnel-review-standard__body {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .funnel-page--strategy .funnel-review-standard__image {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .funnel-page--strategy .funnel-review-standard__flow {
    padding-left: 0;
  }

  .funnel-page--strategy .funnel-review-standard__flow article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 13px;
    padding: 17px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 63, 91, 0.1);
  }

  .funnel-page--strategy .funnel-review-standard__flow article:last-child {
    border-bottom: 0;
  }

  .funnel-page--strategy .funnel-review-standard__flow article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 34px;
    transform: rotate(90deg);
  }

  .funnel-page--strategy .funnel-review-standard__icon {
    width: 44px;
    height: 44px;
    grid-row: 1 / span 3;
    margin: 0;
    border-radius: 13px;
  }

  .funnel-page--strategy .funnel-review-standard__flow strong,
  .funnel-page--strategy .funnel-review-standard__flow p {
    grid-column: 2;
  }

  .funnel-page--strategy.funnel-motion-ready .funnel-reveal[data-reveal-variant="left"],
  .funnel-page--strategy.funnel-motion-ready .funnel-reveal[data-reveal-variant="right"],
  .funnel-page--strategy.funnel-motion-ready .funnel-reveal[data-reveal-variant="scale"],
  .funnel-page--strategy.funnel-motion-ready .funnel-reveal[data-reveal-variant="rise"] {
    transform: translateY(12px);
  }

  .funnel-page--strategy.funnel-motion-ready .funnel-reveal--visible,
  .funnel-page--strategy.funnel-motion-ready .funnel-reveal--visible[data-reveal-variant] {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 460px) {
  .funnel-page--strategy .funnel-review-map__items {
    grid-template-columns: 1fr;
  }

  .funnel-page--strategy .funnel-review-map__output > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .funnel-page--strategy .funnel-review-map__output i {
    display: none;
  }
}

/* ==========================================================================
   2026-08-13 Phase 1 team presentation
   Approved source portraits only. No sharpening or generative retouching.
   ========================================================================== */

.funnel-advisor-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  outline-offset: -3px;
}

.funnel-advisor-card__link:focus-visible {
  outline: 3px solid #9dd8ff;
  border-radius: 14px;
}

.funnel-advisor-card__action {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 9px !important;
  color: #b9f4d4 !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.funnel-advisor-card__action::after {
  content: "  →";
}

.funnel-advisor-cards img,
.funnel-bio-modal img {
  filter: none !important;
  -webkit-filter: none !important;
  image-rendering: auto;
}

/* Compact non-photo review cue in the hero keeps the top of the page from repeating the partner portraits. */
.funnel-team-cue__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 216, 255, 0.36);
  border-radius: 50%;
  background: rgba(49, 144, 231, 0.14);
  color: #ccecff;
  font-family: "Lato", Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.funnel-team-cue > span:last-child {
  min-width: 0;
}

.funnel-team-cue strong {
  display: block;
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 13px;
}


/* Accessible partner-bio modal. */
body.funnel-bio-modal-open {
  overflow: hidden;
}

.funnel-bio-modal[hidden] {
  display: none !important;
}

.funnel-bio-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 24px;
}

.funnel-bio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 22, 33, 0.74);
  backdrop-filter: blur(8px);
}

.funnel-bio-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  width: min(860px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.funnel-bio-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(19, 35, 49, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--srg-slate);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 39, 55, 0.1);
}

.funnel-bio-modal__close:hover {
  color: var(--srg-blue);
  border-color: rgba(49, 144, 231, 0.42);
}

.funnel-bio-modal__close:focus-visible {
  color: var(--srg-navy-deep);
  border-color: var(--srg-green);
  outline: 3px solid var(--srg-green);
  outline-offset: 3px;
}

.funnel-bio-modal__media {
  min-height: 430px;
  background: linear-gradient(180deg, #e8eef2 0%, #d5e0e7 100%);
  overflow: hidden;
}

.funnel-bio-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.funnel-bio-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 54px 48px;
}

.funnel-bio-modal__eyebrow {
  margin: 0 0 10px;
  color: var(--srg-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.funnel-bio-modal__content h2 {
  margin: 0;
  color: var(--srg-slate);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.funnel-bio-modal__role {
  margin: 10px 0 22px;
  color: var(--srg-blue);
  font-weight: 900;
}

.funnel-bio-modal__content > p:not(.funnel-bio-modal__eyebrow):not(.funnel-bio-modal__role):not(.funnel-bio-modal__note) {
  margin: 0;
  color: var(--srg-muted);
  font-size: 16px;
  line-height: 1.72;
}

.funnel-bio-modal__note {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--srg-line);
  color: #667781;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .funnel-bio-modal {
    padding: 14px;
  }

  .funnel-bio-modal__dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
    border-radius: 18px;
  }

  .funnel-bio-modal__media {
    min-height: 250px;
    max-height: 42vh;
  }

  .funnel-bio-modal__media img {
    min-height: 250px;
    max-height: 42vh;
    object-position: center 16%;
  }

  .funnel-bio-modal__content {
    padding: 30px 26px 28px;
  }

  .funnel-bio-modal__close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 560px) {
  .funnel-team-cue {
    align-items: flex-start;
  }
}

/* ==========================================================================
   2026-08-13 Phase 2 polish
   Balanced partner framing, cleaner typography, stronger team-led hierarchy.
   ========================================================================== */

.funnel-authority__panel-kicker {
  letter-spacing: 0.075em;
  font-weight: 800;
}

.funnel-authority__panel-head h3 {
  max-width: 15ch;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.funnel-advisor-card__body {
  padding: 46px 18px 18px;
}

.funnel-advisor-cards strong {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.funnel-advisor-cards span {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.35;
}

.funnel-advisor-card__action {
  margin-top: 10px !important;
  color: #f7e7a9 !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: none;
}

.funnel-advisor-card__action::after {
  content: "  →";
  font-size: 0.95em;
}



@media (max-width: 760px) {
  .funnel-authority__panel-head h3 {
    max-width: none;
  }

  .funnel-advisor-card__body {
    padding: 40px 15px 15px;
  }
}

/* ==========================================================================
   2026-08-13 contextual team imagery pass
   Normalized card crops + non-repetitive collaborative review visual.
   ========================================================================== */

.funnel-trust-strip__mark--team {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.funnel-advisor-cards img[src*="/cards/"] {
  object-position: center top;
  filter: none !important;
  -webkit-filter: none !important;
}

.funnel-page--strategy .funnel-review-orbit__image img.funnel-review-orbit__meeting {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(1.02) brightness(0.86);
  transform: scale(1.015);
  transform-origin: center center;
}

@media (max-width: 760px) {
  .funnel-page--strategy .funnel-review-orbit__image img.funnel-review-orbit__meeting {
    object-position: 47% center;
  }
}


/* 2026-08-13 locked team-led long-funnel refinement */
.funnel-page--strategy .funnel-advisor-cards img {
  object-position: center 18%;
}

.funnel-page--strategy .funnel-advisor-cards strong {
  font-size: 17px;
  letter-spacing: -.01em;
}

.funnel-page--strategy .funnel-advisor-card__action {
  margin-top: 10px !important;
  color: #f7e7a9 !important;
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Replace the small collage feel with a full collaborative review visual. */
.funnel-page--strategy .funnel-review-orbit {
  grid-template-columns: 1fr;
  min-height: 0;
  gap: 12px;
}

.funnel-page--strategy .funnel-review-orbit__image {
  min-height: 248px;
  aspect-ratio: 16 / 9;
}

.funnel-page--strategy .funnel-review-orbit__image img {
  object-position: center 52%;
  transform: none;
}

.funnel-page--strategy .funnel-review-map__items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.funnel-page--strategy .funnel-review-map {
  min-height: 0;
}

/* Partner perspectives give the long funnel a firm/team identity without repeating the headshot grid. */
.funnel-page--strategy .funnel-section--partner-perspectives {
  background:
    radial-gradient(circle at 8% 18%, rgba(49,144,231,.08), transparent 27%),
    radial-gradient(circle at 92% 78%, rgba(201,162,39,.07), transparent 28%),
    #fff;
  border-top: 1px solid var(--srg-line);
  border-bottom: 1px solid var(--srg-line);
}

.funnel-page--strategy .funnel-section__intro--centered {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.funnel-page--strategy .funnel-section__intro--centered > p:last-child {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--srg-muted);
  line-height: 1.68;
}

.funnel-page--strategy .funnel-partner-perspective-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.funnel-page--strategy .funnel-partner-perspective {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  min-height: 330px;
  border: 1px solid var(--srg-line);
  border-radius: 18px;
  background: #f8fbfd;
  box-shadow: 0 20px 48px rgba(17,34,43,.07);
}

.funnel-page--strategy .funnel-partner-perspective figure {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #dfeaf0;
}

.funnel-page--strategy .funnel-partner-perspective figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.funnel-page--strategy .funnel-partner-perspective > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 28px;
}

.funnel-page--strategy .funnel-partner-perspective h3 {
  margin: 0;
  color: var(--srg-slate);
  font-family: "Lato", Arial, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.16;
}

.funnel-page--strategy .funnel-partner-perspective h3 + p {
  margin: 12px 0 0;
  color: var(--srg-muted);
  line-height: 1.62;
}

.funnel-page--strategy .funnel-inline-bio {
  align-self: flex-start;
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--srg-blue);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.funnel-page--strategy .funnel-inline-bio:hover,
.funnel-page--strategy .funnel-inline-bio:focus-visible {
  color: var(--srg-green-deep);
}

@media (max-width: 980px) {
  .funnel-page--strategy .funnel-partner-perspective-grid { grid-template-columns: 1fr; }
  .funnel-page--strategy .funnel-partner-perspective { min-height: 300px; }
}

@media (max-width: 720px) {
  .funnel-page--strategy .funnel-review-map__items { grid-template-columns: 1fr; }
  .funnel-page--strategy .funnel-review-map { padding: 24px 20px; }
  .funnel-page--strategy .funnel-partner-perspective { grid-template-columns: 1fr; }
  .funnel-page--strategy .funnel-partner-perspective figure { aspect-ratio: 16 / 10; min-height: 0; }
  .funnel-page--strategy .funnel-partner-perspective > div { padding: 24px 22px 26px; }
}

/* ===========================================================================
   2026-08-13 premium alignment and continuous motion pass
   Restrained motion, real team artwork, and consistent long-page geometry.
   =========================================================================== */

@keyframes srgAmbientDrift {
  0%,
  100% {
    opacity: .52;
    transform: translate3d(-3%, -2%, 0) scale(1);
  }

  50% {
    opacity: .88;
    transform: translate3d(8%, 7%, 0) scale(1.12);
  }
}

@keyframes srgAmbientDriftReverse {
  0%,
  100% {
    opacity: .38;
    transform: translate3d(4%, 6%, 0) scale(1.08);
  }

  50% {
    opacity: .72;
    transform: translate3d(-8%, -5%, 0) scale(.96);
  }
}

@keyframes srgImageBreathe {
  0%,
  100% {
    transform: scale(1.018) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.055) translate3d(-.7%, -.45%, 0);
  }
}

@keyframes srgPortraitBreathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.026);
  }
}

@keyframes srgTeamFloat {
  0%,
  100% {
    transform: translate3d(0, 1px, 0) scale(.98);
  }

  50% {
    transform: translate3d(0, -4px, 0) scale(1.015);
  }
}

@keyframes srgAccentSweep {
  0%,
  16% {
    background-position: 100% 50%;
  }

  58%,
  100% {
    background-position: -100% 50%;
  }
}

@keyframes srgTextSignal {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(49, 144, 231, 0);
  }

  50% {
    text-shadow: 0 0 18px rgba(49, 144, 231, .24);
  }
}

@keyframes srgCardSheen {
  0%,
  72% {
    transform: translateX(-160%) skewX(-18deg);
  }

  100% {
    transform: translateX(230%) skewX(-18deg);
  }
}

.funnel-page--strategy main > section:not(.funnel-section--apply) > .funnel-container {
  width: min(1180px, calc(100% - 48px));
}

.funnel-page--strategy main > .funnel-section {
  padding-block: clamp(78px, 7vw, 100px);
}

.funnel-page--strategy .funnel-section__intro {
  max-width: 800px;
  margin-bottom: 42px;
}

.funnel-page--strategy .funnel-section__intro h2 {
  max-width: 18ch;
  text-wrap: balance;
}

.funnel-page--strategy .funnel-section__intro > p:last-child {
  max-width: 690px;
}

.funnel-page--strategy .funnel-card-grid,
.funnel-page--strategy .funnel-fit-grid,
.funnel-page--strategy .funnel-proof-grid {
  align-items: stretch;
}

.funnel-page--strategy .funnel-card,
.funnel-page--strategy .funnel-fit-panel,
.funnel-page--strategy .funnel-proof-grid article {
  height: 100%;
}

.funnel-page--strategy .funnel-card {
  display: flex;
  flex-direction: column;
}

.funnel-page--strategy .funnel-card p {
  margin-bottom: 0;
}

.funnel-page--strategy .funnel-trust-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(238, 246, 249, .72), rgba(255, 255, 255, .96) 28%, rgba(255, 255, 255, .96) 72%, rgba(247, 241, 220, .56));
}

.funnel-page--strategy .funnel-trust-strip::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 35%;
  width: 420px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 144, 231, .11), transparent 68%);
  animation: srgAmbientDrift 22s ease-in-out infinite;
  pointer-events: none;
}

.funnel-page--strategy .funnel-trust-strip__grid {
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.funnel-page--strategy .funnel-trust-strip__grid > div {
  min-height: 214px;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 30px 26px;
  text-align: center;
}

.funnel-page--strategy .funnel-trust-strip__visual {
  position: relative;
  width: 126px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 1px solid rgba(49, 144, 231, .16);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #eef6f9);
  box-shadow: 0 14px 32px rgba(17, 34, 43, .1);
  transform: translateZ(0);
}

.funnel-page--strategy .funnel-trust-strip__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
  pointer-events: none;
}

.funnel-page--strategy .funnel-trust-strip__visual img,
.funnel-page--strategy .funnel-trust-strip img[src$="aicpa.jpg"] {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.funnel-page--strategy .funnel-trust-strip__visual--location img {
  object-fit: cover;
}

.funnel-page--strategy .funnel-trust-strip__visual--team {
  width: 138px;
  background:
    radial-gradient(circle at 50% 110%, rgba(49, 144, 231, .22), transparent 54%),
    linear-gradient(145deg, #102f44, #173f5b);
}

.funnel-page--strategy .funnel-trust-strip__visual--team img {
  padding: 2px 7px 0;
  object-position: center bottom;
  animation: srgTeamFloat 10s ease-in-out infinite;
  transform-origin: center bottom;
}

.funnel-page--strategy .funnel-trust-strip__visual--peer-review img {
  padding: 14px 18px;
}

.funnel-page--strategy .funnel-trust-strip strong {
  min-height: 22px;
  font-size: 17px;
}

.funnel-page--strategy .funnel-trust-strip__item > span:last-child {
  max-width: 31ch;
  min-height: 44px;
  margin: 7px auto 0;
}

.funnel-page--strategy .funnel-proof-section,
.funnel-page--strategy .funnel-authority,
.funnel-page--strategy .funnel-section--partner-perspectives,
.funnel-page--strategy .funnel-section--decision,
.funnel-page--strategy .funnel-section--review-scope,
.funnel-page--strategy .funnel-section--media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.funnel-page--strategy .funnel-proof-section > .funnel-container,
.funnel-page--strategy .funnel-authority > .funnel-container,
.funnel-page--strategy .funnel-section--partner-perspectives > .funnel-container,
.funnel-page--strategy .funnel-section--decision > .funnel-container,
.funnel-page--strategy .funnel-section--review-scope > .funnel-container,
.funnel-page--strategy .funnel-section--media > .funnel-container {
  position: relative;
  z-index: 1;
}

.funnel-page--strategy .funnel-proof-section::before,
.funnel-page--strategy .funnel-section--decision::before,
.funnel-page--strategy .funnel-section--media::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 144, 231, .12), rgba(49, 144, 231, .035) 45%, transparent 70%);
  filter: blur(2px);
  pointer-events: none;
  animation: srgAmbientDrift 24s ease-in-out infinite;
}

.funnel-page--strategy .funnel-proof-section::before {
  top: -34%;
  right: -10%;
}

.funnel-page--strategy .funnel-section--decision::before {
  bottom: -44%;
  left: -12%;
  animation-delay: -9s;
}

.funnel-page--strategy .funnel-section--media::before {
  top: -42%;
  right: 8%;
  animation-delay: -15s;
}

.funnel-page--strategy .funnel-authority::after,
.funnel-page--strategy .funnel-section--review-scope::after,
.funnel-page--strategy .funnel-section--partner-perspectives::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(40vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, .12), rgba(201, 162, 39, .035) 46%, transparent 72%);
  pointer-events: none;
  animation: srgAmbientDriftReverse 28s ease-in-out infinite;
}

.funnel-page--strategy .funnel-authority::after {
  right: -12%;
  bottom: -28%;
}

.funnel-page--strategy .funnel-section--review-scope::after {
  top: -34%;
  left: -10%;
  animation-delay: -12s;
}

.funnel-page--strategy .funnel-section--partner-perspectives::before {
  content: "";
  position: absolute;
  top: -36%;
  left: -12%;
  z-index: 0;
  width: min(48vw, 700px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 144, 231, .13), transparent 69%);
  pointer-events: none;
  animation: srgAmbientDrift 26s ease-in-out infinite;
}

.funnel-page--strategy .funnel-section--partner-perspectives::after {
  right: -8%;
  bottom: -42%;
  animation-delay: -8s;
}

.funnel-page--strategy .funnel-section__intro .funnel-eyebrow,
.funnel-page--strategy .funnel-authority .funnel-eyebrow {
  animation: srgTextSignal 8s ease-in-out infinite;
}

.funnel-page--strategy .funnel-section__intro.funnel-reveal--visible .funnel-eyebrow::after {
  background: linear-gradient(90deg, var(--srg-blue), var(--srg-green), #8fd0ff, var(--srg-blue));
  background-size: 220% 100%;
  animation:
    funnelLineIn 520ms ease 180ms both,
    srgAccentSweep 7s linear 900ms infinite;
}

.funnel-page--strategy .funnel-section--partner-perspectives .funnel-section__intro {
  max-width: 850px;
  margin-bottom: 46px;
}

.funnel-page--strategy .funnel-section--partner-perspectives .funnel-section__intro h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.funnel-page--strategy .funnel-partner-perspective-grid {
  width: min(1100px, 100%);
  margin-inline: auto;
  gap: 24px;
}

.funnel-page--strategy .funnel-partner-perspective {
  position: relative;
  min-height: 350px;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  border-color: rgba(199, 220, 230, .95);
  box-shadow: 0 24px 58px rgba(17, 34, 43, .09);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.funnel-page--strategy .funnel-partner-perspective::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -28%;
  width: 32%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  pointer-events: none;
  animation: srgCardSheen 11s ease-in-out infinite;
}

.funnel-page--strategy .funnel-partner-perspective:nth-child(2)::after {
  animation-delay: -5.5s;
}

.funnel-page--strategy .funnel-partner-perspective:hover {
  border-color: rgba(49, 144, 231, .28);
  box-shadow: 0 30px 70px rgba(17, 34, 43, .14);
  transform: translateY(-4px);
}

.funnel-page--strategy .funnel-partner-perspective figure img,
.funnel-page--strategy .funnel-media-card img,
.funnel-page--strategy .funnel-review-orbit__image img {
  animation: srgImageBreathe 20s ease-in-out infinite;
  will-change: transform;
}

.funnel-page--strategy .funnel-partner-perspective:nth-child(2) figure img,
.funnel-page--strategy .funnel-review-orbit__image img {
  animation-delay: -9s;
}

.funnel-page--strategy .funnel-partner-perspective > div {
  min-width: 0;
  padding: 30px 30px 32px;
}

.funnel-page--strategy .funnel-partner-perspective .funnel-eyebrow {
  line-height: 1.45;
}

.funnel-page--strategy .funnel-partner-perspective h3 + p {
  max-width: 32ch;
}

.funnel-page--strategy .funnel-advisor-card {
  height: 100%;
}

.funnel-page--strategy .funnel-advisor-card__link {
  height: 100%;
}

.funnel-page--strategy .funnel-advisor-card img {
  animation: srgPortraitBreathe 14s ease-in-out infinite;
  transform-origin: center 18%;
  will-change: transform;
}

.funnel-page--strategy .funnel-advisor-card:nth-child(2) img {
  animation-delay: -3.5s;
}

.funnel-page--strategy .funnel-advisor-card:nth-child(3) img {
  animation-delay: -7s;
}

.funnel-page--strategy .funnel-advisor-card:nth-child(4) img {
  animation-delay: -10.5s;
}

@media (max-width: 980px) {
  .funnel-page--strategy main > section:not(.funnel-section--apply) > .funnel-container {
    width: min(100% - 40px, 760px);
  }

  .funnel-page--strategy .funnel-trust-strip__grid > div {
    min-height: 204px;
    padding-inline: 22px;
  }

  .funnel-page--strategy .funnel-partner-perspective-grid {
    width: min(720px, 100%);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .funnel-page--strategy main > section:not(.funnel-section--apply) > .funnel-container {
    width: calc(100% - 32px);
  }

  .funnel-page--strategy main > .funnel-section {
    padding-block: 68px;
  }

  .funnel-page--strategy .funnel-section__intro {
    margin-bottom: 32px;
  }

  .funnel-page--strategy .funnel-trust-strip__grid > div {
    min-height: 0;
    padding: 26px 18px 28px;
  }

  .funnel-page--strategy .funnel-trust-strip__item > span:last-child {
    min-height: 0;
  }

  .funnel-page--strategy .funnel-partner-perspective {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .funnel-page--strategy .funnel-partner-perspective figure {
    aspect-ratio: 4 / 3;
  }

  .funnel-page--strategy .funnel-partner-perspective > div {
    padding: 26px 22px 28px;
  }

  .funnel-page--strategy .funnel-partner-perspective h3 + p {
    max-width: none;
  }
}

/* ===========================================================================
   Premium motion prototype: hero + trust strip + partner perspectives only.
   The page remains fully readable when JavaScript or motion is unavailable.
   =========================================================================== */

@keyframes srgPrototypeLineReveal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 118%, 0) rotate(.6deg);
  }

  58% {
    opacity: 1;
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@keyframes srgPrototypeKickerReveal {
  from {
    opacity: 0;
    letter-spacing: .22em;
    transform: translate3d(-18px, 0, 0);
  }

  to {
    opacity: 1;
    letter-spacing: .045em;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes srgPrototypeCopyReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(0, 22px, 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes srgPrototypePanelEnter {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(54px, 10px, 0) scale(.965);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes srgPrototypePanelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 30px 82px rgba(0, 0, 0, .34), 0 0 0 1px rgba(49, 144, 231, .05);
  }

  50% {
    transform: translate3d(0, -7px, 0);
    box-shadow: 0 40px 96px rgba(0, 0, 0, .42), 0 0 34px rgba(49, 144, 231, .12);
  }
}

@keyframes srgPrototypeHeroVideo {
  0%,
  100% {
    transform: scale(1.025) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.075) translate3d(-1.1%, -.6%, 0);
  }
}

@keyframes srgPrototypeAurora {
  0%,
  100% {
    background-position: 0% 50%, 100% 50%, 0 0;
    opacity: .68;
  }

  50% {
    background-position: 100% 50%, 0% 50%, 0 0;
    opacity: 1;
  }
}

@keyframes srgPrototypeAccentFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes srgPrototypeButtonSurface {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 18px 44px rgba(7, 24, 35, .34), inset 0 1px 0 rgba(255, 255, 255, .14);
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 22px 52px rgba(7, 24, 35, .42), 0 0 0 1px rgba(201, 162, 39, .2), inset 0 1px 0 rgba(255, 255, 255, .18);
  }
}

@keyframes srgPrototypeTrustArrival {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes srgPrototypeTrustBeam {
  0%,
  66% {
    transform: translateX(-160%);
  }

  100% {
    transform: translateX(260%);
  }
}

@keyframes srgPrototypeCardEntrance {
  from {
    opacity: 0;
    transform: translate3d(0, 32px, 0) scale(.975);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.funnel-page--strategy .srg-prototype-heading {
  text-wrap: balance;
}

.funnel-page--strategy .srg-prototype-line {
  display: block;
  overflow: hidden;
  padding: .04em .06em .08em 0;
  margin: -.04em 0 -.08em;
}

.funnel-page--strategy .srg-prototype-line > span {
  display: block;
  transform-origin: left bottom;
}

.funnel-page--strategy .srg-prototype-accent {
  display: inline-block;
  color: #fff;
  background: linear-gradient(90deg, #fff 0%, #8fd0ff 28%, #f7e7a9 52%, #fff 78%);
  background-size: 260% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: srgPrototypeAccentFlow 8s cubic-bezier(.45, 0, .55, 1) 1.8s infinite;
}

.funnel-page--strategy .srg-prototype-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  animation: none;
}

.funnel-page--strategy .srg-prototype-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--srg-blue), #8fd0ff, #c9a227);
  background-size: 220% 100%;
  animation: srgPrototypeAccentFlow 5.5s ease-in-out infinite;
}

.funnel-page--strategy .srg-prototype-kicker > span {
  display: inline-block;
}

.funnel-page--strategy .funnel-hero {
  isolation: isolate;
  background: #071923;
}

.funnel-page--strategy .funnel-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 17, 25, .99) 0%, rgba(5, 17, 25, .93) 43%, rgba(5, 17, 25, .58) 78%, rgba(5, 17, 25, .42) 100%),
    linear-gradient(180deg, rgba(7, 25, 35, .04), rgba(7, 25, 35, .48));
}

.funnel-page--strategy .funnel-hero::after {
  background:
    radial-gradient(circle at 18% 28%, rgba(49, 144, 231, .22), transparent 34%),
    radial-gradient(circle at 76% 72%, rgba(201, 162, 39, .15), transparent 30%),
    linear-gradient(120deg, rgba(49, 144, 231, .09), transparent 40%);
  background-size: 150% 150%, 140% 140%, 100% 100%;
}

.funnel-page--strategy.funnel-motion-ready .funnel-hero::after {
  animation: srgPrototypeAurora 18s cubic-bezier(.45, 0, .55, 1) infinite;
}

.funnel-page--strategy.funnel-motion-ready .funnel-hero__video {
  animation: srgPrototypeHeroVideo 26s cubic-bezier(.45, 0, .55, 1) infinite;
}

.funnel-page--strategy .srg-prototype-hero-copy .funnel-eyebrow,
.funnel-page--strategy .srg-prototype-heading--hero,
.funnel-page--strategy .srg-prototype-lead,
.funnel-page--strategy .srg-prototype-actions,
.funnel-page--strategy .funnel-hero__visual {
  animation: none;
}

.funnel-page--strategy.funnel-motion-ready .srg-prototype-heading--hero .srg-prototype-line > span,
.funnel-page--strategy.funnel-motion-ready .srg-prototype-section-intro .srg-prototype-line > span {
  opacity: 0;
  transform: translate3d(0, 118%, 0);
}

.funnel-page--strategy.srg-prototype-ready .srg-prototype-heading--hero .srg-prototype-line > span {
  animation: srgPrototypeLineReveal 1.18s cubic-bezier(.22, 1, .36, 1) calc(.22s + var(--srg-line-index) * .21s) both;
}

.funnel-page--strategy.srg-prototype-ready .srg-prototype-hero-copy .srg-prototype-kicker > span {
  animation: srgPrototypeKickerReveal .86s cubic-bezier(.22, 1, .36, 1) .08s both;
}

.funnel-page--strategy.funnel-motion-ready .srg-prototype-lead,
.funnel-page--strategy.funnel-motion-ready .srg-prototype-actions,
.funnel-page--strategy.funnel-motion-ready .funnel-cta-microcopy,
.funnel-page--strategy.funnel-motion-ready .funnel-hero__proof {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.funnel-page--strategy.srg-prototype-ready .srg-prototype-lead {
  animation: srgPrototypeCopyReveal 1.02s cubic-bezier(.22, 1, .36, 1) 1.04s both;
}

.funnel-page--strategy.srg-prototype-ready .srg-prototype-actions {
  animation: srgPrototypeCopyReveal .96s cubic-bezier(.22, 1, .36, 1) 1.22s both;
}

.funnel-page--strategy.srg-prototype-ready .funnel-cta-microcopy {
  animation: srgPrototypeCopyReveal .84s cubic-bezier(.22, 1, .36, 1) 1.42s both;
}

.funnel-page--strategy.srg-prototype-ready .funnel-hero__proof {
  animation: srgPrototypeCopyReveal .84s cubic-bezier(.22, 1, .36, 1) 1.58s both;
}

.funnel-page--strategy.srg-prototype-ready .funnel-hero__visual {
  animation: srgPrototypePanelEnter 1.3s cubic-bezier(.22, 1, .36, 1) .58s both;
}

.funnel-page--strategy.srg-prototype-ready .funnel-hero-intake {
  animation: srgPrototypePanelFloat 10s cubic-bezier(.45, 0, .55, 1) 2s infinite;
}

.funnel-page--strategy .srg-prototype-actions .funnel-btn,
.funnel-page--strategy.funnel-motion-ready .srg-prototype-actions .funnel-btn {
  animation: none;
}

.funnel-page--strategy .srg-prototype-actions .funnel-btn:first-child {
  border-color: rgba(143, 208, 255, .26);
  background: linear-gradient(110deg, #173f5b, #1c587c 38%, #173f5b 72%, #102f44);
  background-size: 240% 100%;
  box-shadow: 0 18px 44px rgba(7, 24, 35, .34), inset 0 1px 0 rgba(255, 255, 255, .14);
  animation: srgPrototypeButtonSurface 9s cubic-bezier(.45, 0, .55, 1) 2s infinite;
}

.funnel-page--strategy .srg-prototype-actions .funnel-btn--call {
  border-color: rgba(143, 208, 255, .58);
  background: rgba(7, 25, 35, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.funnel-page--strategy .funnel-trust-strip {
  background:
    radial-gradient(circle at 34% 12%, rgba(49, 144, 231, .08), transparent 28%),
    linear-gradient(90deg, #f7fafc 0%, #ffffff 50%, #f7fafc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96), inset 0 -1px 0 rgba(16, 47, 68, .1);
}

.funnel-page--strategy .funnel-trust-strip__item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 20px;
  min-height: 166px;
  padding: 28px 30px;
  text-align: left;
}

.funnel-page--strategy .funnel-trust-strip__grid > .funnel-trust-strip__item {
  min-height: 180px;
  align-items: normal;
  justify-content: normal;
  padding: 28px 30px;
  text-align: left;
}

.funnel-page--strategy .funnel-trust-strip__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(49, 144, 231, .72), rgba(201, 162, 39, .58));
  opacity: .52;
  pointer-events: none;
}

.funnel-page--strategy.srg-prototype-ready .funnel-trust-strip__item.funnel-reveal--visible .funnel-trust-strip__visual {
  animation: srgPrototypeTrustArrival 1.08s cubic-bezier(.22, 1, .36, 1) calc(var(--reveal-delay, 0ms) + .08s) both;
}

.funnel-page--strategy .funnel-trust-strip__visual {
  grid-row: 1 / 3;
  width: 118px;
  height: 82px;
  margin: 0;
  border-color: rgba(49, 144, 231, .18);
  border-radius: 13px;
  box-shadow: 0 16px 34px rgba(17, 34, 43, .11), inset 0 1px 0 rgba(255, 255, 255, .78);
}

.funnel-page--strategy .funnel-trust-strip__visual--team {
  width: 118px;
  background: #102f44;
}

.funnel-page--strategy .funnel-trust-strip__visual--team img {
  padding: 0;
  object-fit: cover;
  object-position: center 42%;
  animation: srgCredentialImageDrift 24s cubic-bezier(.45, 0, .55, 1) infinite;
}

.funnel-page--strategy .funnel-trust-strip__visual--location img {
  animation: srgCredentialMarkFloat 16s cubic-bezier(.45, 0, .55, 1) infinite;
}

.funnel-page--strategy .funnel-trust-strip__visual--peer-review img {
  animation: srgCredentialMarkFloat 18s cubic-bezier(.45, 0, .55, 1) -7s infinite;
}

.funnel-page--strategy .funnel-trust-strip strong {
  align-self: end;
  min-height: 0;
  font-size: 16px;
  letter-spacing: -.012em;
}

.funnel-page--strategy .funnel-trust-strip__item > span:last-child {
  align-self: start;
  max-width: 29ch;
  min-height: 0;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.funnel-page--strategy .funnel-section--partner-perspectives {
  color: #fff;
  background:
    radial-gradient(ellipse at 14% 10%, rgba(49, 144, 231, .18), transparent 36%),
    radial-gradient(ellipse at 88% 84%, rgba(201, 162, 39, .1), transparent 36%),
    linear-gradient(135deg, #081c29 0%, #102f44 54%, #0b293a 100%);
  border-color: rgba(143, 208, 255, .16);
}

.funnel-page--strategy .funnel-section--partner-perspectives .funnel-eyebrow {
  color: #8fd0ff;
}

.funnel-page--strategy .funnel-section--partner-perspectives .funnel-section__intro h2 {
  max-width: 21ch;
  color: #fff;
  font-size: clamp(43px, 4.25vw, 62px);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.funnel-page--strategy .funnel-section--partner-perspectives .funnel-section__intro > p:last-child {
  color: rgba(238, 246, 249, .76);
  font-size: 17px;
}

.funnel-page--strategy .srg-prototype-heading--section .srg-prototype-accent {
  background-image: linear-gradient(90deg, #f7f1dc 0%, #f7e7a9 46%, #ffffff 78%);
}

.funnel-page--strategy.srg-prototype-ready .srg-prototype-section-intro.funnel-reveal--visible .srg-prototype-line > span {
  animation: srgPrototypeLineReveal 1.16s cubic-bezier(.22, 1, .36, 1) calc(.1s + var(--srg-line-index) * .2s) both;
}

.funnel-page--strategy.funnel-motion-ready .srg-prototype-section-copy {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.funnel-page--strategy.srg-prototype-ready .srg-prototype-section-intro.funnel-reveal--visible .srg-prototype-section-copy {
  animation: srgPrototypeCopyReveal 1s cubic-bezier(.22, 1, .36, 1) .7s both;
}

.funnel-page--strategy .funnel-partner-perspective-grid {
  width: min(1160px, 100%);
  gap: 24px;
  perspective: 1200px;
}

.funnel-page--strategy .funnel-partner-perspective {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: 420px;
  border-color: rgba(199, 220, 230, .72);
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8fa 100%);
  box-shadow: 0 34px 88px rgba(0, 0, 0, .3), inset 0 1px 0 #fff;
  transition: border-color 480ms ease, box-shadow 560ms cubic-bezier(.22, 1, .36, 1), transform 560ms cubic-bezier(.22, 1, .36, 1);
}

.funnel-page--strategy.srg-prototype-ready .funnel-partner-perspective.funnel-reveal--visible {
  animation: srgPrototypeCardEntrance 1.18s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms) both;
}

.funnel-page--strategy .funnel-partner-perspective::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: auto;
  height: 3px;
  background: linear-gradient(90deg, #3190e7 0%, #8fd0ff 48%, #c9a227 100%);
  opacity: .74;
  animation: none;
  pointer-events: none;
}

.funnel-page--strategy .funnel-partner-perspective:hover {
  border-color: rgba(143, 208, 255, .42);
  box-shadow: 0 40px 98px rgba(0, 0, 0, .38), 0 0 0 1px rgba(201, 162, 39, .08);
  transform: translateY(-5px);
}

.funnel-page--strategy .funnel-partner-perspective .funnel-eyebrow {
  color: var(--srg-blue);
}

.funnel-page--strategy .funnel-partner-perspective h3 {
  letter-spacing: -.025em;
}

.funnel-page--strategy .funnel-partner-perspective figure {
  position: relative;
  background: #102f44;
}

.funnel-page--strategy .funnel-partner-perspective figure img {
  object-position: center;
  animation: srgEditorialPortrait 28s cubic-bezier(.45, 0, .55, 1) infinite;
  will-change: transform;
}

.funnel-page--strategy .funnel-partner-perspective:nth-child(2) figure img {
  animation-delay: -14s;
}

.funnel-page--strategy .funnel-partner-perspective > div {
  padding: 34px 32px 36px;
}

.funnel-page--strategy .funnel-partner-perspective figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 68%, rgba(8, 28, 41, .2)),
    linear-gradient(135deg, transparent 62%, rgba(201, 162, 39, .08));
  pointer-events: none;
}

.funnel-page--strategy .funnel-inline-bio:hover,
.funnel-page--strategy .funnel-inline-bio:focus-visible {
  color: #173f5b;
}

@keyframes srgEditorialPortrait {
  0%,
  100% {
    transform: scale(1.018) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.052) translate3d(0, -1.1%, 0);
  }
}

@keyframes srgCredentialImageDrift {
  0%,
  100% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.09) translate3d(-1.2%, -.5%, 0);
  }
}

@keyframes srgCredentialMarkFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -3px, 0) scale(1.018);
  }
}

@media (max-width: 1120px) {
  .funnel-page--strategy .funnel-partner-perspective-grid {
    width: min(760px, 100%);
    grid-template-columns: 1fr;
  }

  .funnel-page--strategy .funnel-partner-perspective {
    min-height: 390px;
  }
}

@media (max-width: 980px) {
  .funnel-page--strategy .funnel-section--partner-perspectives .funnel-section__intro h2 {
    font-size: clamp(40px, 6vw, 54px);
  }

  .funnel-page--strategy .funnel-trust-strip__item {
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 154px;
    padding: 24px 18px;
  }

  .funnel-page--strategy .funnel-trust-strip__grid > .funnel-trust-strip__item {
    min-height: 164px;
    padding: 24px 18px;
  }

  .funnel-page--strategy .funnel-trust-strip__visual,
  .funnel-page--strategy .funnel-trust-strip__visual--team {
    width: 92px;
    height: 70px;
  }

}

@media (max-width: 720px) {
  .funnel-page--strategy .srg-prototype-heading--hero .srg-prototype-line {
    overflow: visible;
  }

  .funnel-page--strategy .srg-prototype-heading--hero .srg-prototype-line > span {
    transform-origin: center bottom;
  }

  .funnel-page--strategy .funnel-section--partner-perspectives .funnel-section__intro h2 {
    font-size: 39px;
    line-height: 1.03;
  }

  .funnel-page--strategy .funnel-trust-strip__item {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 132px;
    padding: 24px 18px;
    text-align: left;
  }

  .funnel-page--strategy .funnel-trust-strip__grid > .funnel-trust-strip__item {
    min-height: 132px;
    padding: 24px 18px;
    text-align: left;
  }

  .funnel-page--strategy .funnel-trust-strip__visual,
  .funnel-page--strategy .funnel-trust-strip__visual--team {
    width: 112px;
    height: 76px;
  }

  .funnel-page--strategy .funnel-partner-perspective {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .funnel-page--strategy .funnel-partner-perspective figure {
    aspect-ratio: 1 / 1;
  }

  .funnel-page--strategy .funnel-partner-perspective figure img {
    object-position: center 38%;
  }

  .funnel-page--strategy .funnel-partner-perspective > div {
    padding: 27px 23px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .funnel-page--strategy .srg-prototype-line > span,
  .funnel-page--strategy .srg-prototype-lead,
  .funnel-page--strategy .srg-prototype-actions,
  .funnel-page--strategy .funnel-cta-microcopy,
  .funnel-page--strategy .funnel-hero__proof,
  .funnel-page--strategy .srg-prototype-section-copy,
  .funnel-page--strategy .funnel-partner-perspective figure img,
  .funnel-page--strategy .funnel-trust-strip__visual img {
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Distributed partner editorials: equal visual weight, separate moments. */
.funnel-page--strategy .funnel-partner-interlude-shell,
.funnel-page--strategy .funnel-fit-grid + .funnel-partner-interlude {
  margin-top: clamp(40px, 5vw, 64px);
}

.funnel-page--strategy .funnel-partner-interlude {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr);
  min-height: 360px;
  overflow: clip;
  isolation: isolate;
  border: 1px solid rgba(143, 208, 255, .25);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(49, 144, 231, .15), transparent 34%),
    radial-gradient(circle at 12% 92%, rgba(201, 162, 39, .1), transparent 30%),
    linear-gradient(135deg, #081c29 0%, #102f44 58%, #0b293a 100%);
  box-shadow:
    0 30px 72px rgba(8, 28, 41, .2),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  transition:
    border-color .55s cubic-bezier(.2, .8, .2, 1),
    box-shadow .55s cubic-bezier(.2, .8, .2, 1),
    transform .55s cubic-bezier(.2, .8, .2, 1);
}

.funnel-page--strategy .funnel-partner-interlude::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--srg-blue), #8fd0ff 48%, var(--srg-gold));
  transform-origin: left center;
}

.funnel-page--strategy .funnel-partner-interlude::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -120px;
  border: 1px solid rgba(143, 208, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(143, 208, 255, .035), 0 0 0 58px rgba(143, 208, 255, .02);
}

@media (hover: hover) and (pointer: fine) {
  .funnel-page--strategy .funnel-partner-interlude:hover {
    border-color: rgba(143, 208, 255, .42);
    box-shadow:
      0 38px 88px rgba(8, 28, 41, .27),
      0 0 0 1px rgba(201, 162, 39, .07),
      inset 0 1px 0 rgba(255, 255, 255, .06);
    transform: translateY(-4px);
  }
}

.funnel-page--strategy .funnel-partner-interlude__media {
  position: relative;
  min-width: 0;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #081c29;
}

.funnel-page--strategy .funnel-partner-interlude__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 64%, rgba(8, 28, 41, .22)),
    linear-gradient(110deg, transparent 72%, rgba(8, 28, 41, .2));
  pointer-events: none;
}

.funnel-page--strategy .funnel-partner-interlude__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  animation: srgEditorialPortrait 30s cubic-bezier(.45, 0, .55, 1) infinite;
  will-change: transform;
}

.funnel-page--strategy .funnel-partner-interlude--heather .funnel-partner-interlude__media img {
  animation-delay: -10s;
}

.funnel-page--strategy .funnel-partner-interlude--leon .funnel-partner-interlude__media img {
  object-position: center 36%;
  animation-delay: -20s;
}

.funnel-page--strategy .funnel-partner-interlude__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  padding: clamp(38px, 5vw, 66px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.funnel-page--strategy .funnel-partner-interlude__content .funnel-eyebrow {
  margin-bottom: 12px;
  color: #8fd0ff;
}

.funnel-page--strategy .funnel-partner-interlude__content h3 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.2vw, 45px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.funnel-page--strategy .funnel-partner-interlude__content > p:not(.funnel-eyebrow) {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.75;
}

.funnel-page--strategy .funnel-partner-interlude__content .funnel-inline-bio {
  margin-top: 22px;
  color: #8fd0ff;
  border-color: rgba(143, 208, 255, .55);
}

.funnel-page--strategy .funnel-partner-interlude__content .funnel-inline-bio:hover,
.funnel-page--strategy .funnel-partner-interlude__content .funnel-inline-bio:focus-visible {
  color: #fff;
  border-color: var(--srg-gold);
}

.funnel-page--strategy .funnel-partner-interlude--reverse .funnel-partner-interlude__media {
  order: 2;
}

.funnel-page--strategy .funnel-partner-interlude--reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(310px, .78fr);
}

.funnel-page--strategy .funnel-partner-interlude--reverse .funnel-partner-interlude__content {
  order: 1;
}

@media (max-width: 980px) {
  .funnel-page--strategy .funnel-partner-interlude {
    grid-template-columns: minmax(270px, .84fr) minmax(0, 1.16fr);
    min-height: 340px;
  }

  .funnel-page--strategy .funnel-partner-interlude--reverse {
    grid-template-columns: minmax(0, 1.16fr) minmax(270px, .84fr);
  }

  .funnel-page--strategy .funnel-partner-interlude__media {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  .funnel-page--strategy #qualify > .funnel-container {
    width: calc(100% - 32px);
  }

  .funnel-page--strategy .funnel-partner-interlude-shell,
  .funnel-page--strategy .funnel-fit-grid + .funnel-partner-interlude {
    margin-top: 34px;
  }

  .funnel-page--strategy .funnel-partner-interlude {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 18px;
  }

  .funnel-page--strategy .funnel-partner-interlude--reverse {
    grid-template-columns: 1fr;
  }

  .funnel-page--strategy .funnel-partner-interlude__media,
  .funnel-page--strategy .funnel-partner-interlude--reverse .funnel-partner-interlude__media {
    order: 1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .funnel-page--strategy .funnel-partner-interlude__content,
  .funnel-page--strategy .funnel-partner-interlude--reverse .funnel-partner-interlude__content {
    order: 2;
    min-height: 350px;
    padding: 29px 23px 32px;
  }

  .funnel-page--strategy .funnel-partner-interlude__content h3 {
    font-size: clamp(30px, 9.5vw, 39px);
  }

  .funnel-page--strategy .funnel-partner-interlude__content > p:not(.funnel-eyebrow) {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.68;
  }

  .funnel-page--strategy .funnel-partner-interlude__media img,
  .funnel-page--strategy .funnel-partner-interlude--leon .funnel-partner-interlude__media img {
    object-position: center 32%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .funnel-page--strategy .funnel-partner-interlude,
  .funnel-page--strategy .funnel-partner-interlude__media img {
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Final team presentation: Jay parity, cinematic team context, text cadence. */
.funnel-page--strategy .funnel-section--advisory-positioning > .funnel-partner-interlude-shell {
  padding-top: clamp(40px, 5vw, 62px);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.funnel-page--strategy .funnel-partner-interlude--jay .funnel-partner-interlude__media img {
  object-position: 74% center;
  animation-delay: -24s;
}

.funnel-page--strategy.funnel-motion-ready .funnel-partner-interlude__content > * {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity .78s cubic-bezier(.2, .8, .2, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1);
}

.funnel-page--strategy.funnel-motion-ready .funnel-partner-interlude.funnel-reveal--visible .funnel-partner-interlude__content > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.funnel-page--strategy.funnel-motion-ready .funnel-partner-interlude.funnel-reveal--visible .funnel-partner-interlude__content > :nth-child(1) {
  transition-delay: .13s;
}

.funnel-page--strategy.funnel-motion-ready .funnel-partner-interlude.funnel-reveal--visible .funnel-partner-interlude__content > :nth-child(2) {
  transition-delay: .21s;
}

.funnel-page--strategy.funnel-motion-ready .funnel-partner-interlude.funnel-reveal--visible .funnel-partner-interlude__content > :nth-child(3) {
  transition-delay: .31s;
}

.funnel-page--strategy.funnel-motion-ready .funnel-partner-interlude.funnel-reveal--visible .funnel-partner-interlude__content > :nth-child(4) {
  transition-delay: .41s;
}

.funnel-page--strategy .funnel-section--after-apply {
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: #fff;
  background: #071c29;
}

.funnel-page--strategy .funnel-section--after-apply::before,
.funnel-page--strategy .funnel-section--after-apply::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.funnel-page--strategy .funnel-section--after-apply::before {
  z-index: 0;
  inset: -5%;
  background: url("../images/team/srg-partner-review-meeting.webp") center top / 100% auto no-repeat;
  opacity: .66;
  transform: scale(1.02);
  transform-origin: center;
  animation: srgTeamBackdropDrift 30s cubic-bezier(.45, 0, .55, 1) infinite;
  will-change: transform;
}

.funnel-page--strategy .funnel-section--after-apply::after {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(49, 144, 231, .17), transparent 30%),
    linear-gradient(90deg, rgba(5, 25, 37, .96) 0%, rgba(5, 25, 37, .78) 48%, rgba(5, 25, 37, .91) 100%),
    linear-gradient(180deg, rgba(7, 28, 41, .18), #071c29 96%);
}

.funnel-page--strategy .funnel-section--after-apply > .funnel-container {
  position: relative;
  z-index: 2;
}

.funnel-page--strategy .funnel-section--after-apply h2,
.funnel-page--strategy .funnel-section--after-apply h3,
.funnel-page--strategy .funnel-section--after-apply .funnel-after-list strong {
  color: #fff;
}

.funnel-page--strategy .funnel-section--after-apply .funnel-eyebrow {
  color: #8fd0ff;
}

.funnel-page--strategy .funnel-section--after-apply .funnel-after-copy > p:not(.funnel-eyebrow),
.funnel-page--strategy .funnel-section--after-apply .funnel-process p,
.funnel-page--strategy .funnel-section--after-apply .funnel-after-list span {
  color: rgba(255, 255, 255, .75);
}

.funnel-page--strategy .funnel-section--after-apply .funnel-after-list > div,
.funnel-page--strategy .funnel-section--after-apply .funnel-process > div {
  border-color: rgba(143, 208, 255, .2);
  background: rgba(7, 30, 44, .76);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.funnel-page--strategy .funnel-section--after-apply .funnel-after-list > div:hover,
.funnel-page--strategy .funnel-section--after-apply .funnel-process > div:hover {
  border-color: rgba(143, 208, 255, .4);
  box-shadow:
    0 30px 68px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .07);
}

.funnel-page--strategy .funnel-section--after-apply .funnel-process-shell {
  border-top-color: rgba(143, 208, 255, .2);
}

.funnel-page--strategy .funnel-section--after-apply .funnel-after-list > div::after,
.funnel-page--strategy .funnel-section--after-apply .funnel-process > div::before,
.funnel-page--strategy .funnel-section--after-apply .funnel-process__mark {
  background: linear-gradient(90deg, var(--srg-blue), #8fd0ff 52%, var(--srg-gold));
}

.funnel-page--strategy .funnel-section--after-apply .funnel-route-graphic {
  border-color: rgba(143, 208, 255, .25);
  box-shadow: 0 26px 62px rgba(0, 0, 0, .24);
}

.funnel-page--strategy .funnel-section--after-apply .funnel-route-graphic::before {
  background: linear-gradient(180deg, var(--srg-blue), var(--srg-gold), var(--srg-blue));
}

.funnel-page--strategy .funnel-section--after-apply .funnel-route-graphic__card::before,
.funnel-page--strategy .funnel-section--after-apply .funnel-route-graphic__branches span::before {
  background: var(--srg-gold);
  box-shadow: 0 0 0 5px rgba(201, 162, 39, .17);
}

.funnel-page--strategy.funnel-motion-ready .funnel-after-copy > * {
  opacity: 0;
  transform: translate3d(0, 17px, 0);
  transition:
    opacity .82s cubic-bezier(.2, .8, .2, 1),
    transform .95s cubic-bezier(.16, 1, .3, 1);
}

.funnel-page--strategy.funnel-motion-ready .funnel-after-copy.funnel-reveal--visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.funnel-page--strategy.funnel-motion-ready .funnel-after-copy.funnel-reveal--visible > :nth-child(1) {
  transition-delay: .1s;
}

.funnel-page--strategy.funnel-motion-ready .funnel-after-copy.funnel-reveal--visible > :nth-child(2) {
  transition-delay: .19s;
}

.funnel-page--strategy.funnel-motion-ready .funnel-after-copy.funnel-reveal--visible > :nth-child(3) {
  transition-delay: .29s;
}

.funnel-page--strategy.funnel-motion-ready .funnel-after-copy.funnel-reveal--visible > :nth-child(4) {
  transition-delay: .39s;
}

@keyframes srgTeamBackdropDrift {
  0%,
  100% {
    transform: translate3d(-.55%, 0, 0) scale(1.02);
  }

  50% {
    transform: translate3d(.65%, -.45%, 0) scale(1.06);
  }
}

@media (max-width: 720px) {
  .funnel-page--strategy .funnel-section--advisory-positioning > .funnel-partner-interlude-shell {
    padding-top: 34px;
  }

  .funnel-page--strategy .funnel-partner-interlude--jay .funnel-partner-interlude__media img {
    object-position: 72% center;
  }

  .funnel-page--strategy .funnel-section--after-apply::before {
    background-position: center top;
    opacity: .48;
  }

  .funnel-page--strategy .funnel-section--after-apply::after {
    background:
      linear-gradient(180deg, rgba(5, 25, 37, .9) 0%, rgba(5, 25, 37, .84) 44%, #071c29 100%),
      radial-gradient(circle at 75% 16%, rgba(49, 144, 231, .14), transparent 34%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .funnel-page--strategy .funnel-section--after-apply::before,
  .funnel-page--strategy .funnel-partner-interlude__content > *,
  .funnel-page--strategy .funnel-after-copy > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
