/* ============================================================
   SOCIALTYZE DIGITAL TWINS — LP2 "Midnight Studio"
   Cinematic dark theme · Editorial serif accents · Glass UI
   ============================================================ */

:root {
  color-scheme: dark;
  --bg: #05080f;
  --bg-raise: #0a101c;
  --ink: #f2f6fc;
  --muted: #93a1b8;
  --faint: #5c6a80;
  --blue: #3b82f6;
  --blue-bright: #60a5fa;
  --blue-deep: #1d4ed8;
  --cyan: #67e8f9;
  --line: rgba(147, 161, 184, 0.14);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --serif: "Instrument Serif", Georgia, serif;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background:
    radial-gradient(1100px 520px at 80% -120px, rgba(59, 130, 246, 0.13), transparent 60%),
    radial-gradient(900px 600px at 8% 30%, rgba(29, 78, 216, 0.08), transparent 55%),
    var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle film grain for texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-bright);
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright), var(--cyan));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* ---------- shared flex rows ---------- */
.proof-row,
.hero-actions,
.quality-row,
footer {
  display: flex;
  align-items: center;
}

/* ---------- buttons ---------- */
.btn,
.quiet-button {
  cursor: pointer;
  font: inherit;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.35),
    0 18px 50px rgba(59, 130, 246, 0.35),
    inset 0 1px rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 220ms ease,
    filter 200ms ease;
}

/* sweeping shine */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 600ms var(--ease-out);
  pointer-events: none;
}

.btn:hover {
  filter: brightness(1.07);
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.55),
    0 24px 64px rgba(59, 130, 246, 0.5),
    inset 0 1px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn:hover::after { left: 130%; }

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

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

.btn-lg {
  min-height: 66px;
  padding: 0 44px;
  font-size: 18px;
}

.quiet-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease;
}

.quiet-button:hover { color: var(--blue-bright); }

.cta-note {
  color: var(--faint);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- layout ---------- */
main { overflow: hidden; position: relative; z-index: 1; }

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

/* hairline section separators */
section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
  transform: translateX(-50%);
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0 auto 26px;
  font-size: clamp(44px, 6.4vw, 92px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h1 em, h2 em, blockquote em {
  font-size: 1.04em;
  background: linear-gradient(100deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-bright);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.lede,
.section-copy p,
.section-kicker p,
.strip-heading p,
.final-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

.section-subtitle {
  margin-bottom: 18px;
  color: var(--ink) !important;
  font-size: clamp(28px, 3.4vw, 44px) !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04 !important;
}

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

/* ---------- hero ---------- */
.hero {
  padding-top: 52px;
  padding-bottom: 90px;
}

.hero-aurora {
  position: absolute;
  inset: -20% -10% auto;
  height: 80%;
  background:
    radial-gradient(46% 60% at 30% 30%, rgba(29, 78, 216, 0.28), transparent 70%),
    radial-gradient(40% 55% at 72% 22%, rgba(103, 232, 249, 0.1), transparent 70%),
    radial-gradient(50% 60% at 55% 60%, rgba(59, 130, 246, 0.14), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: aurora-drift 16s ease-in-out infinite alternate;
}

@keyframes aurora-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(3%, 4%, 0) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora { animation: none; }
}

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

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

.hero-lede {
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero-actions {
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin: 0 0 56px;
}

/* headline line reveal on load */
.h1-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.h1-line > span,
.h1-line > em {
  display: inline-block;
  transform: translateY(110%);
  animation: line-up 900ms var(--ease-out) forwards;
}

.h1-line:nth-of-type(2) > span,
.h1-line:nth-of-type(2) > em {
  animation-delay: 140ms;
}

@keyframes line-up {
  to { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .h1-line > span,
  .h1-line > em {
    transform: none;
    animation: none;
  }
}

/* ---------- hero video / iphone frame ---------- */
.hero-stage {
  position: relative;
  max-width: 380px;
  margin: 34px auto 0;
  perspective: 1100px;
}

/* glow pool under the phone */
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% -14% -6%;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 60%, rgba(59, 130, 246, 0.3), transparent 70%);
  filter: blur(36px);
}

.iphone {
  position: relative;
  padding: 12px;
  border-radius: 58px;
  /* space-gray aluminum body */
  background:
    linear-gradient(165deg, #43464b 0%, #2a2c30 18%, #1a1c20 45%, #26282c 72%, #131518 100%);
  box-shadow:
    inset 0 0 0 5px #0a0b0e,
    var(--shadow),
    0 60px 120px rgba(0, 0, 0, 0.6),
    0 0 90px rgba(59, 130, 246, 0.14);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 300ms var(--ease-out);
}

/* polished metal rim highlight */
.iphone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.1) 22%,
    rgba(255, 255, 255, 0.02) 45%,
    rgba(255, 255, 255, 0.16) 70%,
    rgba(255, 255, 255, 0.4)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* side buttons — action + volume left, power right */
.iphone-buttons::before,
.iphone-buttons::after {
  content: "";
  position: absolute;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(90deg, #4a4d52, #232529);
}

.iphone-buttons::before {
  top: 19%;
  left: -4px;
  height: 8%;
  box-shadow:
    0 calc(100% + 14px) 0 0 #303338,
    0 calc(200% + 28px) 0 0 #303338;
}

.iphone-buttons::after {
  top: 27%;
  right: -4px;
  height: 13%;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(270deg, #4a4d52, #232529);
}

/* antenna bands on the frame */
.iphone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 31;
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.7);
}

.iphone-screen {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 46px;
}

.iphone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 30;
  width: 94px;
  height: 26px;
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-stage-caption {
  margin: 18px 4px 2px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

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

.video-shell {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.hero-video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 17.5;
  background: #02040a;
}

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

.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;
  transition: transform 500ms var(--ease-out), opacity 300ms ease;
}

.hero-video-thumbnail:hover img {
  transform: scale(1.03);
  opacity: 0.92;
}

.hero-thumbnail-play {
  position: absolute;
  right: 50%;
  top: 72%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 12, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(96, 165, 250, 0.5);
  transform: translate(50%, -50%);
  animation: play-pulse 2.4s ease-out infinite;
}

@keyframes play-pulse {
  0% { box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(96, 165, 250, 0.45); }
  70% { box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 22px rgba(96, 165, 250, 0); }
  100% { box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(96, 165, 250, 0); }
}

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

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

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

.proof-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.proof-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.proof-metric strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.proof-divider {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.proof-caption {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* logos sit on a light glass plate so dark logos stay legible */
.proof-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
  max-width: 940px;
  padding: 22px 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.proof-logo-row img {
  display: block;
  width: auto;
  max-width: 120px;
  max-height: 40px;
  object-fit: contain;
  filter: saturate(0) contrast(1.1);
  opacity: 0.85;
  mix-blend-mode: multiply;
  transition: filter 240ms ease, opacity 240ms ease, transform 240ms var(--ease-out);
}

.proof-logo-row img:hover {
  filter: saturate(1) contrast(1);
  opacity: 1;
  transform: translateY(-2px);
}

.proof-logo-row img:nth-child(2) { max-width: 200px; max-height: 64px; }
.proof-logo-row img:nth-child(3) { max-width: 170px; max-height: 64px; }
.proof-logo-row img:nth-child(4) { max-width: 180px; max-height: 64px; }

/* ---------- client strip ---------- */
.client-strip {
  padding-top: 80px;
  padding-bottom: 80px;
}

.strip-heading {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.strip-heading h2 { margin: 0; }

.media-slot { position: relative; overflow: hidden; background: var(--bg-raise); }

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

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

.headshot {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  transition: transform 240ms var(--ease-out), border-color 240ms ease;
}

.headshot:hover {
  border-color: var(--blue-bright);
  transform: translateY(-4px) scale(1.04);
}

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

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

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

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

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

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

/* ---------- constraint / stats ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: start;
}

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

.growth-card {
  display: grid;
  max-width: 980px;
  gap: 12px;
  padding: 40px 46px;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 32px;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(59, 130, 246, 0.22), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.08);
}

.growth-card h2 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 64px);
}

.growth-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.stats-header { max-width: 820px; }
.stats-header h2 { margin: 0; }

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

.stat-card {
  min-height: 150px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--glass);
  transition: border-color 240ms ease, background 240ms ease, transform 240ms var(--ease-out);
}

.stat-card:hover {
  background: var(--glass-strong);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-4px);
}

.stat-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.9;
}

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

.inline-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 36px 42px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(140% 200% at 100% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
    var(--bg-raise);
  box-shadow: var(--shadow);
}

.inline-cta p {
  max-width: 640px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.inline-cta.light { background: radial-gradient(140% 200% at 0% 0%, rgba(103, 232, 249, 0.1), transparent 55%), var(--bg-raise); }

.flexibility-section .inline-cta.light { margin-top: 56px; }

/* ---------- kickers / grids ---------- */
.section-kicker {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

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

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

.content-grid span {
  padding: 15px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms var(--ease-out), color 220ms ease;
}

.content-grid span:hover {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(96, 165, 250, 0.5);
  color: var(--white);
  transform: translateY(-3px);
}

.comparison-grid,
.fit-grid,
.testimonial-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 {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 240ms ease, background 240ms ease, transform 240ms var(--ease-out);
}

.feature-grid article:hover,
.steps article:hover,
.testimonial-grid figure:hover {
  background: var(--glass-strong);
  border-color: rgba(96, 165, 250, 0.32);
  transform: translateY(-4px);
}

.compare-column,
.fit-column {
  padding: 40px;
  border-radius: 30px;
}

.compare-column.strong,
.fit-column.yes {
  border-color: rgba(96, 165, 250, 0.38);
  background:
    radial-gradient(130% 130% at 50% 0%, rgba(59, 130, 246, 0.14), transparent 60%),
    var(--glass-strong);
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.1);
}

.compare-column.weak,
.fit-column.no { opacity: 0.82; }

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

.compare-column li::before,
.fit-column p::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--blue-bright) 0 4px, transparent 5px),
    rgba(96, 165, 250, 0.16);
}

.weak li::before,
.no p::before {
  background:
    radial-gradient(circle at 50% 50%, var(--faint) 0 4px, transparent 5px),
    rgba(92, 106, 128, 0.16);
}

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

.strong h3,
.yes h3 { color: var(--blue-bright); }
.weak h3,
.no h3 { color: var(--muted); }

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

.quality-row span {
  padding: 12px 20px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 999px;
  color: var(--blue-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.feature-grid span,
.steps span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue-bright);
  font-family: var(--serif);
  font-size: 22px;
}

.steps article {
  position: relative;
  padding: 32px 34px 32px 96px;
  border-radius: 28px;
}

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

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

/* ---------- process ---------- */
.process-layout {
  position: relative;
  display: grid;
  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: 560px;
  margin-top: 46px;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.shoot-track {
  display: flex;
  width: max-content;
  gap: 20px;
  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(240px, 17vw, 310px);
  height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: var(--bg-raise);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
  transition: transform 240ms var(--ease-out), filter 240ms ease, border-color 240ms ease;
}

.shoot-frame:hover {
  border-color: rgba(96, 165, 250, 0.5);
  filter: brightness(1.1);
  transform: scale(1.03);
}

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

.process-section blockquote {
  max-width: 920px;
  margin: 72px auto 0;
  font-size: clamp(34px, 4.6vw, 66px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
}

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

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

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

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

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

/* dark page → logos live on a soft white plate */
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  margin-bottom: 30px;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
}

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

.brand-logo.mercury img { max-width: 160px; max-height: 48px; }
.brand-logo.wells img { max-width: 260px; max-height: 64px; }
.brand-logo.compass img { max-width: 240px; max-height: 52px; }

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

.testimonial-grid figure blockquote {
  margin: 0 0 26px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
}

figcaption { font-weight: 800; font-size: 15px; }

figcaption span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 500;
}

/* ---------- final cta ---------- */
.final-cta {
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: -4%;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 8, 15, 0.6) 32%, rgba(5, 8, 15, 0.72) 100%),
    url("Public/optimized/final-bg.jpg") center / cover;
  filter: grayscale(1);
  animation: kenburns 28s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.07); }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta::before { animation: none; }
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: auto -10% -40%;
  height: 70%;
  background: radial-gradient(50% 60% at 50% 50%, rgba(59, 130, 246, 0.25), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

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

.final-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5.4vw, 76px);
}

.final-sub {
  max-width: 560px;
  margin: 0 auto 34px;
}

.final-copy .quiet-button {
  display: block;
  margin: 24px auto 0;
}

/* ---------- footer / sticky ---------- */
footer {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  gap: 18px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.sticky-booking {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 19;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.8);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
  transition: transform 160ms var(--ease-out), background 200ms ease, border-color 200ms ease;
}

.sticky-booking:hover {
  background: var(--blue-deep);
  border-color: var(--blue-bright);
  transform: translateY(-2px);
}

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

/* ---------- ticker ---------- */
.ticker {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  align-items: center;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}

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

.ticker-track span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 21px;
  white-space: nowrap;
}

.ticker-track i {
  color: var(--blue-bright);
  font-size: 12px;
  font-style: normal;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* ---------- faq ---------- */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--glass);
  transition: border-color 240ms ease, background 240ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  background: var(--glass-strong);
  border-color: rgba(96, 165, 250, 0.32);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
}

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

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: 50%;
  transition: transform 280ms var(--ease-out), background 240ms ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-bright);
  transform: translate(-50%, -50%);
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

details[open] .faq-icon {
  background: rgba(59, 130, 246, 0.18);
  transform: rotate(135deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 28px 26px;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- staggered grid reveals ---------- */
body.js-ready [data-reveal][data-stagger] {
  transform: none;
}

body.js-ready [data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

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

[data-stagger] > :nth-child(2) { transition-delay: 80ms; }
[data-stagger] > :nth-child(3) { transition-delay: 160ms; }
[data-stagger] > :nth-child(4) { transition-delay: 240ms; }
[data-stagger] > :nth-child(5) { transition-delay: 320ms; }
[data-stagger] > :nth-child(6) { transition-delay: 400ms; }
[data-stagger] > :nth-child(7) { transition-delay: 480ms; }
[data-stagger] > :nth-child(n + 8) { transition-delay: 560ms; }

/* ---------- ambient cursor glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 600ms ease;
}

body.glow-active .cursor-glow { opacity: 1; }

@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

/* ---------- active process step ---------- */
.steps article.is-active {
  border-color: rgba(96, 165, 250, 0.5);
  background: var(--glass-strong);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.12);
}

.steps article.is-active span {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(103, 232, 249, 0.5);
}

/* ---------- cursor spotlight on cards ---------- */
.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(96, 165, 250, 0.14),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.spotlight:hover::before { opacity: 1; }

/* ---------- booking modal (live Calendly) ---------- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-modal[hidden] { display: none; }

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fade-in 240ms ease;
}

.booking-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1000px, 100%);
  height: min(780px, calc(100vh - 40px));
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 28px;
  background: var(--bg-raise);
  box-shadow: var(--shadow), 0 0 120px rgba(59, 130, 246, 0.18);
  animation: panel-up 360ms var(--ease-out);
}

@keyframes fade-in {
  from { opacity: 0; }
}

@keyframes panel-up {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
}

.booking-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px 16px;
  border-bottom: 1px solid var(--line);
}

.booking-panel-head .eyebrow { margin-bottom: 6px; }

.booking-panel-head h3 { margin: 0; font-size: 22px; }

.booking-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--glass);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background 200ms ease, border-color 200ms ease, transform 160ms var(--ease-out);
}

.booking-close:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(96, 165, 250, 0.5);
  transform: rotate(90deg);
}

.calendly-embed {
  position: relative;
  flex: 1;
  min-height: 0;
  background: var(--bg-raise);
}

.calendly-embed iframe {
  width: 100%;
  height: 100%;
}

.booking-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
}

.booking-loading span {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(96, 165, 250, 0.2);
  border-top-color: var(--blue-bright);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

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

body.booking-open { overflow: hidden; }

/* ---------- orbit (one session → infinite content) ---------- */
.orbit-stage {
  position: relative;
  width: min(640px, 100%);
  height: 600px;
  margin: 0 auto 10px;
}

.orbit-glow {
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 70%);
  filter: blur(30px);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(147, 161, 184, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-inner { width: 320px; height: 320px; }
.ring-outer { width: 520px; height: 520px; }

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 132px;
  height: 132px;
  place-content: center;
  justify-items: center;
  gap: 2px;
  border: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, rgba(96, 165, 250, 0.3), transparent 70%),
    var(--bg-raise);
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.35), inset 0 1px rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
}

.orbit-core strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.orbit-core small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  inset: 0;
  animation: orbit-spin 46s linear infinite;
}

.orbit.ring-2 {
  animation-duration: 70s;
  animation-direction: reverse;
}

.orbit-pos {
  position: absolute;
  inset: 0;
  transform: rotate(var(--a));
}

.orbit-chip {
  position: absolute;
  top: calc(50% - 160px);
  left: 50%;
  padding: 11px 20px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 999px;
  background: rgba(10, 16, 28, 0.88);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%);
  animation: orbit-counter 46s linear infinite;
}

.ring-2 .orbit-chip {
  top: calc(50% - 260px);
  animation-duration: 70s;
  animation-direction: reverse;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* keeps chip text upright while the ring spins */
@keyframes orbit-counter {
  from { transform: translateX(-50%) rotate(calc(-1 * var(--a))); }
  to { transform: translateX(-50%) rotate(calc(-360deg - var(--a))); }
}

@media (prefers-reduced-motion: reduce) {
  .orbit, .orbit-chip { animation: none; }
  .orbit-chip { transform: translateX(-50%) rotate(calc(-1 * var(--a))); }
}

/* desktop shows the orbit; chips grid is the mobile fallback */
.orbit-fallback { display: none; }

@media (max-width: 940px) {
  .orbit-stage { display: none; }
  .orbit-fallback { display: flex; }
}

/* ---------- roi calculator ---------- */
.roi-card {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 32px;
  background:
    radial-gradient(130% 160% at 50% 0%, rgba(59, 130, 246, 0.12), transparent 55%),
    var(--glass-strong);
  box-shadow: var(--shadow);
}

.roi-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.roi-control { display: grid; gap: 16px; }

.roi-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.roi-label output {
  min-width: 52px;
  padding: 6px 12px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue-bright);
  font-family: var(--serif);
  font-size: 20px;
  text-align: center;
}

.roi-card input[type="range"] {
  width: 100%;
  height: 6px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-bright) var(--fill, 20%), rgba(147, 161, 184, 0.2) var(--fill, 20%));
  cursor: pointer;
  outline-offset: 6px;
}

.roi-card input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.25), 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: transform 160ms var(--ease-out);
}

.roi-card input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }

.roi-card input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.25);
}

.roi-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.roi-result {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(2, 4, 10, 0.45);
  text-align: center;
}

.roi-result strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
}

.roi-result span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.roi-footnote {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

/* ---------- reveal animation ---------- */
body.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  section { padding-top: 72px; padding-bottom: 72px; }

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

  .hero { padding-top: 44px; }

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

  .sticky-copy { position: static; }

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

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

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

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

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

  .hero { padding-top: 26px; padding-bottom: 44px; }

  .hero .eyebrow { margin-bottom: 12px; }

  h1 { font-size: clamp(34px, 10vw, 44px); margin-bottom: 14px; }

  .hero-stage {
    width: min(68vw, 264px);
    margin-top: 16px;
  }

  .iphone {
    padding: 8px;
    border-radius: 44px;
    box-shadow:
      inset 0 0 0 3px #0a0b0e,
      var(--shadow),
      0 40px 80px rgba(0, 0, 0, 0.55),
      0 0 60px rgba(59, 130, 246, 0.14);
  }
  .iphone-screen { border-radius: 36px; }
  .iphone-island { top: 10px; width: 72px; height: 20px; }
  .hero-stage-caption { margin-top: 12px; }

  .hero-lede { margin-bottom: 30px; }
  .hero-actions { margin-bottom: 40px; }

  .ticker { padding: 16px 0; }
  .ticker-track { gap: 24px; }
  .ticker-track span { font-size: 17px; }

  .faq-list summary { padding: 20px 20px; font-size: 16px; }
  .faq-list details p { padding: 0 20px 22px; }

  .booking-modal { padding: 0; }

  .booking-panel {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
    border: 0;
  }

  .booking-panel-head { padding: 18px 20px 14px; }
  .booking-panel-head h3 { font-size: 18px; }

  .roi-card { padding: 28px 22px; gap: 30px; }
  .roi-controls,
  .roi-results { grid-template-columns: 1fr; gap: 24px; }

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

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

  .proof-stack { gap: 18px; }

  .proof-logo-row {
    gap: 14px 20px;
    padding: 16px 20px;
  }

  .proof-logo-row img { max-width: 88px; max-height: 30px; }
  .proof-logo-row img:nth-child(2) { max-width: 140px; max-height: 48px; }
  .proof-logo-row img:nth-child(3) { max-width: 126px; max-height: 48px; }
  .proof-logo-row img:nth-child(4) { max-width: 134px; max-height: 48px; }

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

  .stat-panel,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .headshot-marquee .headshot { width: 80px; }

  .brand-logo { height: 76px; margin-bottom: 24px; }
  .brand-logo img { max-width: 200px; max-height: 52px; }
  .brand-logo.mercury img { max-width: 130px; max-height: 42px; }

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

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

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

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

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

  .process-section .steps p { font-size: 16px; line-height: 1.45; }

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

  .final-cta { min-height: 560px; }

  .sticky-booking { display: none; }
}
