:root {
  color-scheme: light;
  --blue-950: #061426;
  --blue-900: #08244d;
  --blue-800: #0a3474;
  --blue-700: #0f55bd;
  --blue-600: #1771f1;
  --blue-200: #cfe3ff;
  --blue-100: #e9f3ff;
  --blue-050: #f7fbff;
  --ink: #06101f;
  --muted: #5d6a7a;
  --line: rgba(8, 36, 77, 0.12);
  --white: #ffffff;
  --silver: #dbe8f7;
  --shadow: 0 28px 90px rgba(6, 16, 31, 0.14);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(15, 85, 189, 0.03) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
  color: var(--ink);
  overflow-x: hidden;
}

body::selection {
  background: var(--blue-600);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  display: none;
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: min(1130px, calc(100% - 32px));
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 70px rgba(6, 16, 31, 0.13);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
}

.brand,
.proof-row,
.hero-actions,
.quality-row,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-600), var(--blue-900));
  color: var(--white);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.36);
}

.header-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.btn,
.quiet-button,
.text-link {
  cursor: pointer;
  font: inherit;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(23, 113, 241, 0.35);
  transition:
    transform 160ms var(--ease-out),
    box-shadow 180ms ease,
    filter 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.btn:hover {
  filter: saturate(1.08);
  box-shadow: 0 24px 58px rgba(23, 113, 241, 0.42);
  transform: translateY(-1px);
}

.btn:active,
.quiet-button:active {
  transform: scale(0.97);
}

.btn-small {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-800);
  box-shadow: 0 14px 36px rgba(6, 16, 31, 0.12);
}

.quiet-button {
  border: 0;
  background: transparent;
  color: var(--blue-700);
  font-weight: 900;
}

main {
  overflow: hidden;
}

section {
  padding: 58px max(24px, calc((100vw - 1180px) / 2));
}

.section-blue {
  position: relative;
  background:
    radial-gradient(circle at 82% 12%, rgba(23, 113, 241, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(233, 243, 255, 0.88), rgba(255, 255, 255, 0.94));
}

.hero {
  min-height: auto;
  padding-top: 64px;
  padding-bottom: 58px;
}

.hero::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), transparent 48%),
    radial-gradient(circle at 22% 20%, rgba(23, 113, 241, 0.16), transparent 30%);
  pointer-events: none;
}

.final-cta::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.86), rgba(6, 16, 31, 0.74)),
    url("Public/optimized/final-bg.jpg") center / cover;
  filter: grayscale(1);
  opacity: 0.9;
}

.split-section,
.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.94fr);
  gap: 72px;
  align-items: center;
}

.hero-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 1080px;
  margin: 0 auto 24px;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 0.92;
}

.desktop-break {
  display: block;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.1;
}

.lede,
.section-copy p,
.section-kicker p,
.strip-heading p,
.final-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.section-subtitle {
  margin-bottom: 14px;
  color: var(--ink) !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  font-weight: 900;
  line-height: 1.05 !important;
}

.section-copy > p:last-child,
.section-kicker > p:last-child {
  margin-bottom: 0;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 28px;
}

.proof-stack {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin: 0 auto;
}

.proof-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.proof-row span,
.quality-row span,
.content-grid span {
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.proof-row span {
  padding: 11px 15px;
  border: 1px solid rgba(8, 36, 77, 0.1);
  border-radius: 999px;
}

.proof-row .proof-metric {
  color: var(--ink);
  font-size: 16px;
}

.proof-row .proof-metric strong {
  color: var(--blue-700);
  font-size: 26px;
  line-height: 1;
}

.proof-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
  justify-content: center;
  max-width: 1040px;
}

.proof-logo-row img {
  display: block;
  width: auto;
  max-width: 148px;
  max-height: 48px;
  object-fit: contain;
  filter: saturate(0.85) contrast(1.02);
  mix-blend-mode: multiply;
}

.proof-logo-row img:nth-child(2) {
  max-width: 264px;
  max-height: 88px;
}

.proof-logo-row img:nth-child(3) {
  max-width: 232px;
  max-height: 88px;
}

.proof-logo-row img:nth-child(4) {
  max-width: 252px;
  max-height: 88px;
}

.hero-stage {
  position: relative;
  max-width: 520px;
  min-height: 0;
  margin: 28px auto 0;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(233, 243, 255, 0.66)),
    radial-gradient(circle at 50% 0%, rgba(23, 113, 241, 0.16), transparent 44%);
  box-shadow: 0 32px 100px rgba(6, 16, 31, 0.13);
}

.hero-stage-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 34px 2px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-after-video {
  margin-top: 34px;
}

.media-slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(224, 239, 255, 0.74)),
    repeating-linear-gradient(135deg, rgba(23, 113, 241, 0.16) 0 2px, transparent 2px 16px);
}

.media-slot::after {
  content: attr(data-slot);
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(6, 16, 31, 0.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-slot img,
.hover-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-top {
  object-fit: contain;
  object-position: center top;
  background: var(--white);
}

.video-shell {
  display: grid;
  min-height: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-video {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  background:
    linear-gradient(160deg, rgba(6, 16, 31, 0.08), rgba(23, 113, 241, 0.03)),
    linear-gradient(135deg, #ffffff, #dcebff);
  transform: none;
}

.hero-video-embed {
  position: relative;
  isolation: isolate;
}

.hero-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.hero-video-thumbnail {
  position: absolute;
  inset: 0;
  z-index: 24;
  display: block;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.hero-video-thumbnail.is-hidden {
  display: none;
}

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

.hero-thumbnail-play {
  position: absolute;
  right: 50%;
  top: 72%;
  display: grid;
  width: 74px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: #ff0000;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  transform: translate(50%, -50%);
}

.hero-thumbnail-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
}

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

.media-chrome {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  display: flex;
  gap: 7px;
}

.media-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(6, 16, 31, 0.2);
}

.play-button {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-900));
  box-shadow: 0 20px 52px rgba(23, 113, 241, 0.36);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--white);
}

.video-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 5px;
}

.video-label span,
.video-label strong {
  color: var(--ink);
}

.video-label span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.client-strip {
  padding-top: 48px;
  padding-bottom: 50px;
  background:
    radial-gradient(circle at 84% 8%, rgba(42, 111, 214, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(235, 244, 255, 0.82), rgba(255, 255, 255, 0.94));
}

.strip-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.strip-heading h2 {
  max-width: 810px;
  margin: 0;
  font-size: clamp(30px, 3.6vw, 50px);
}

.headshot-row {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
}

.headshot {
  position: relative;
  width: min(118px, 10vw);
  min-width: 74px;
  aspect-ratio: 1;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -14px;
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(6, 16, 31, 0.12);
}

.headshot::after {
  display: none;
}

.headshot:first-child {
  margin-left: 0;
}

.strip-cta {
  display: flex;
  width: fit-content;
  margin: 24px auto 0;
}

.headshot-marquee {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.headshot-marquee .headshot-row {
  justify-content: flex-start;
  width: max-content;
  gap: clamp(22px, 3vw, 42px);
  padding: 8px max(24px, calc((100vw - 1180px) / 2)) 12px;
  animation: headshot-marquee 30s linear infinite;
  will-change: transform;
}

.headshot-marquee .headshot {
  flex: 0 0 auto;
  width: clamp(96px, 8vw, 126px);
  min-width: 0;
  margin: 0;
}

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

  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .headshot-marquee .headshot-row {
    animation: none;
    transform: none;
  }
}

.split-section {
  align-items: start;
}

.constraint-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.82fr);
  gap: 54px;
}

.constraint-section .section-intro,
.constraint-section .growth-card,
.constraint-section .stats-header,
.constraint-section .stat-panel,
.constraint-section .inline-cta {
  grid-column: 1 / -1;
}

.constraint-section .section-intro {
  max-width: 820px;
}

.constraint-section .section-intro .eyebrow {
  margin-bottom: 20px;
}

.constraint-section .section-intro .section-subtitle {
  margin-bottom: 18px;
}

.growth-card {
  display: grid;
  max-width: 980px;
  gap: 12px;
  padding: 28px 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  box-shadow: var(--shadow);
}

.growth-card p {
  color: rgba(255, 255, 255, 0.74);
}

.growth-card h2 {
  margin: 0;
  color: var(--white);
}

.growth-card p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 850;
  line-height: 1.15;
}

.stats-header {
  max-width: 780px;
}

.stats-header h2 {
  margin: 0;
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.stat-card {
  min-height: 132px;
  padding: 6px 0 18px;
  border-bottom: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.9;
}

.stat-card span,
.feature-grid p,
.steps p,
.fit-column p,
.compare-column p,
figcaption span {
  color: var(--muted);
  line-height: 1.5;
}

.inline-cta {
  grid-column: 1 / -1;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 28px 32px;
  border-radius: 36px;
  background: var(--blue-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.inline-cta.light {
  background: linear-gradient(135deg, var(--blue-100), var(--white));
  color: var(--ink);
}

.flexibility-section .inline-cta.light {
  margin-top: 54px;
  margin-bottom: 34px;
}

.inline-cta p {
  max-width: 680px;
  margin: 0;
  color: currentColor;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 850;
  line-height: 1.05;
}

.flexibility-section {
  padding-bottom: 30px;
}

.fit-section {
  padding-top: 30px;
}

.section-kicker {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-kicker.narrow {
  max-width: 790px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.content-grid span {
  padding: 16px 20px;
  border: 1px solid rgba(8, 36, 77, 0.1);
  border-radius: 999px;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(6, 16, 31, 0.06);
}

.comparison-grid,
.fit-grid,
.testimonial-grid,
.video-grid,
.feature-grid {
  display: grid;
  gap: 22px;
}

.comparison-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1040px;
  margin: 0 auto;
}

.compare-column,
.fit-column,
.feature-grid article,
.steps article,
.testimonial-grid figure {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 70px rgba(6, 16, 31, 0.08);
  backdrop-filter: blur(18px);
}

.compare-column,
.fit-column {
  padding: 38px;
  border-radius: 36px;
}

.compare-column.strong,
.fit-column.yes {
  background: linear-gradient(145deg, #ffffff, var(--blue-050));
}

.compare-column p,
.fit-column p,
.compare-column li {
  position: relative;
  margin: 0;
  padding: 15px 0 15px 26px;
}

.compare-column p::before,
.fit-column p::before,
.compare-column li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-600);
}

.weak p::before,
.weak li::before,
.no p::before {
  background: rgba(6, 16, 31, 0.28);
}

.compare-column ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strong h3,
.yes h3 {
  color: var(--blue-700);
}

.quality-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.quality-row span {
  padding: 12px 18px;
  border: 1px solid rgba(15, 85, 189, 0.16);
  border-radius: 999px;
  color: var(--blue-700);
}

.examples-section .video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.video-grid .video-shell {
  width: 100%;
  min-height: 0;
  aspect-ratio: 9 / 16;
}

.video-grid .video-shell:first-child {
  min-height: 0;
}

.example-card {
  position: relative;
  overflow: hidden;
  background: var(--blue-100);
}

.hover-video {
  position: absolute;
  inset: 0;
  background: var(--blue-950);
}

.video-caption {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(6, 16, 31, 0), rgba(6, 16, 31, 0.76));
  color: var(--white);
  pointer-events: none;
}

.video-caption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-caption strong {
  font-size: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid article {
  min-height: 310px;
  padding: 30px;
  border-radius: 34px;
}

.steps article {
  position: relative;
  padding: 34px 34px 34px 92px;
  border-radius: 38px;
}

.feature-grid span,
.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue-700);
  font-weight: 900;
}

.steps span {
  position: absolute;
  top: 34px;
  left: 34px;
}

.process-layout {
  grid-template-columns: minmax(460px, 0.9fr) minmax(420px, 0.86fr);
  gap: 58px;
  align-items: stretch;
}

.sticky-copy {
  position: sticky;
  top: 120px;
}

.shoot-montage {
  position: relative;
  width: min(760px, 100%);
  min-height: 590px;
  margin-top: 46px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.shoot-track {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 10px 0 24px;
  animation: shoot-scroll 42s linear infinite;
}

.shoot-montage:hover .shoot-track {
  animation-play-state: paused;
}

.shoot-frame {
  flex: 0 0 auto;
  width: clamp(250px, 18vw, 330px);
  height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background: var(--blue-100);
  box-shadow: 0 26px 70px rgba(6, 16, 31, 0.16);
  transition:
    transform 220ms var(--ease-out),
    filter 220ms ease;
}

.shoot-frame:hover {
  filter: brightness(1.08);
  transform: scale(1.035);
}

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

body.js-ready .process-section [data-reveal] {
  opacity: 1;
  transform: none;
}

@keyframes shoot-scroll {
  0% {
    transform: translateX(0);
  }

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

.steps {
  display: grid;
  gap: 18px;
}

.process-section blockquote {
  max-width: 860px;
  margin: 38px auto 0;
  color: var(--blue-900);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 0.96;
  text-align: center;
}

.fit-grid {
  grid-template-columns: 1.15fr 0.85fr;
  max-width: 1060px;
  margin: 0 auto;
}

.center-cta {
  margin-top: 26px;
  text-align: center;
}

.center-cta p {
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
}

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

.testimonial-grid figure {
  margin: 0;
  padding: 34px;
  border-radius: 36px;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 98px;
  margin-bottom: 34px;
}

.brand-logo img {
  display: block;
  width: auto;
  max-width: 330px;
  max-height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(0.92);
}

.brand-logo.dole img {
  max-height: 92px;
}

.brand-logo.jack img {
  max-height: 96px;
}

.brand-logo.mercury img {
  max-width: 180px;
  max-height: 55px;
}

.brand-logo.wells img {
  max-width: 360px;
  max-height: 100px;
}

.brand-logo.compass img {
  max-width: 340px;
  max-height: 68px;
}

.brand-logo.dc {
  justify-content: flex-start;
  color: var(--blue-700);
  font-size: clamp(54px, 5vw, 82px);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.testimonials-section .center-cta {
  margin-top: 40px;
}

.testimonial-grid figure blockquote {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

figcaption {
  font-weight: 900;
}

figcaption span {
  display: block;
  margin-top: 5px;
  font-weight: 650;
}

.final-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  background: var(--blue-950);
  color: var(--white);
}

.final-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.final-copy h2 {
  margin-bottom: 24px;
}

.final-copy .quiet-button {
  display: block;
  margin: 22px auto 0;
  color: var(--silver);
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  font-weight: 900;
}

.sticky-booking {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 19;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 18px 48px rgba(6, 16, 31, 0.28);
  transition:
    transform 160ms var(--ease-out),
    background 180ms ease;
}

.sticky-booking:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.sticky-booking:active {
  transform: scale(0.97);
}

.booking-dialog {
  width: min(560px, calc(100% - 30px));
  padding: 36px;
  border: 0;
  border-radius: 30px;
  box-shadow: 0 30px 100px rgba(6, 16, 31, 0.28);
}

.booking-dialog::backdrop {
  background: rgba(6, 16, 31, 0.5);
  backdrop-filter: blur(8px);
}

.booking-dialog h2 {
  font-size: 34px;
}

.dialog-copy {
  color: var(--muted);
  line-height: 1.6;
}

.dialog-copy code {
  color: var(--blue-700);
  font-weight: 900;
}

.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}

body.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms var(--ease-out),
    transform 650ms var(--ease-out);
}

body.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-note {
    display: none;
  }

  .hero-grid,
  .split-section,
  .process-layout,
  .comparison-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 0;
    margin-top: 44px;
  }

  .feature-grid,
  .testimonial-grid,
  .examples-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sticky-copy {
    position: static;
  }

  .shoot-montage {
    width: calc(100vw - 36px);
    min-height: 380px;
    margin-top: 28px;
  }

  .shoot-frame {
    width: 210px;
    height: 360px;
    border-radius: 24px;
  }

  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  section {
    padding: 48px 18px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 18px);
  }

  .brand span:last-child {
    display: none;
  }

  .btn-small {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    padding-top: 20px;
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 330px;
    margin-bottom: 10px;
    font-size: clamp(24px, 7.2vw, 29px);
    line-height: 0.98;
  }

  .desktop-break {
    display: none;
  }

  .hero-stage {
    width: min(78vw, 300px);
    min-height: 0;
    margin-top: 14px;
    padding: 10px;
    border-radius: 28px;
  }

  .hero-video {
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    transform: none;
  }

  .mobile-video-cta {
    position: absolute;
    right: 50%;
    bottom: 36px;
    z-index: 100;
    display: inline-flex;
    min-width: 180px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 12px 34px rgba(6, 16, 31, 0.32);
    pointer-events: auto;
    text-decoration: none;
    transform: translateX(50%);
  }

  .hero-stage-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 24px;
    margin-bottom: 0;
  }

  .hero-after-video {
    margin-top: 28px;
  }

  .proof-stack {
    gap: 16px;
  }

  .proof-logo-row {
    gap: 16px 24px;
  }

  .proof-logo-row img {
    max-width: 104px;
    max-height: 36px;
  }

  .proof-logo-row img:nth-child(2) {
    max-width: 188px;
    max-height: 68px;
  }

  .proof-logo-row img:nth-child(3) {
    max-width: 172px;
    max-height: 68px;
  }

  .proof-logo-row img:nth-child(4) {
    max-width: 184px;
    max-height: 68px;
  }

  .client-strip {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .client-strip .strip-heading {
    gap: 8px;
    margin-bottom: 24px;
  }

  .client-strip .strip-heading .eyebrow {
    margin-bottom: 0;
  }

  .client-strip .strip-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .stat-panel,
  .feature-grid,
  .testimonial-grid,
  .examples-section .video-grid,
  .booking-options {
    grid-template-columns: 1fr;
  }

  .stat-card {
    text-align: center;
  }

  .stat-card span {
    display: block;
    max-width: 280px;
    margin: 0 auto;
  }

  .examples-section .video-grid {
    max-width: 420px;
  }

  .headshot {
    min-width: 58px;
    border-width: 4px;
  }

  .headshot-marquee {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .headshot-marquee .headshot-row {
    gap: 18px;
    padding-inline: 18px;
    animation-duration: 24s;
  }

  .headshot-marquee .headshot {
    width: 76px;
    min-width: 0;
    margin: 0;
  }

  .brand-logo {
    height: 76px;
    margin-bottom: 26px;
  }

  .brand-logo img {
    max-width: 250px;
    max-height: 74px;
  }

  .brand-logo.compass img {
    max-width: 250px;
    max-height: 56px;
  }

  .brand-logo.mercury img {
    max-width: 130px;
    max-height: 44px;
  }

  .brand-logo.wells img {
    max-width: 260px;
    max-height: 88px;
  }

  .brand-logo.dc {
    font-size: 58px;
  }

  .process-section {
    overflow: hidden;
  }

  .process-section .section-copy {
    min-width: 0;
    max-width: 100%;
  }

  .process-section h2,
  .process-section h3,
  .process-section p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .process-section h2 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1;
  }

  .process-section .shoot-montage {
    width: 100%;
    min-height: 330px;
    margin-top: 22px;
  }

  .process-section .shoot-track {
    gap: 14px;
    padding: 4px 0 18px;
  }

  .process-section .shoot-frame {
    width: 178px;
    height: 300px;
    border-radius: 22px;
  }

  .process-section .steps {
    gap: 14px;
    width: 100%;
    min-width: 0;
  }

  .process-section .steps article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-width: 0;
    padding: 24px 22px;
    border-radius: 26px;
  }

  .process-section .steps span {
    position: static;
    margin: 4px 0 0;
    font-size: 18px;
  }

  .process-section .steps h3,
  .process-section .steps p {
    grid-column: 2;
    min-width: 0;
  }

  .process-section .steps h3 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.08;
  }

  .process-section .steps p {
    font-size: 18px;
    line-height: 1.35;
  }

  .flexibility-section .inline-cta.light {
    margin-top: 42px;
    margin-bottom: 38px;
  }

  .sticky-booking {
    display: none;
  }
}
