@font-face {
  font-family: "Nimbus Sans";
  src: url("assets/NimbusSans-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nimbus Sans";
  src: url("assets/NimbusSans-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy-950: #070b22;
  --navy-900: #0a102f;
  --navy-800: #131a45;
  --ink: #111632;
  --muted: #5d6279;
  --paper: #fffaf7;
  --white: #ffffff;
  --coral: #ff7b61;
  --coral-deep: #f25f49;
  --magenta: #be1874;
  --pink-soft: #fff0ed;
  --line: rgba(17, 22, 50, 0.12);
  --shell: 1160px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 30px 80px rgba(7, 11, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nimbus Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

h1, h2, h3, p { overflow-wrap: break-word; }

.shell > *, .hero-proof > div, .deliverable > div, .case-copy {
  min-width: 0;
}

.section-pad {
  padding-block: clamp(64px, 7vw, 104px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--magenta));
  box-shadow: 0 0 18px rgba(255, 123, 97, 0.7);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 11, 34, 0.9);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 40px rgba(2, 6, 24, 0.18);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  margin: -8px -8px -8px -7px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, 0.08));
}

.brand-name {
  font-size: 1.06rem;
  letter-spacing: -0.04em;
}

.brand-name > span {
  color: var(--coral);
}

.header-context {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: 4px;
  padding: 8px 13px 8px 11px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(2, 5, 20, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-context i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 123, 97, 0.1), 0 0 15px rgba(255, 123, 97, 0.72);
  animation: context-pulse 2.8s ease-in-out infinite;
}

.header-cta {
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.case-card:focus-visible,
summary:focus-visible,
.brand:focus-visible,
.video-play:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(115deg, #bf4434, #b82066);
  box-shadow: 0 18px 36px rgba(242, 95, 73, 0.25);
}

.button-primary:hover {
  box-shadow: 0 22px 42px rgba(242, 95, 73, 0.34);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  color: var(--navy-950);
  background: var(--white);
  font-size: 0.9rem;
}

.button-large {
  min-height: 62px;
  padding: 17px 28px;
  font-size: 1.04rem;
}

.whatsapp-chip,
.inline-whatsapp {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(4, 46, 23, 0.16);
}

.whatsapp-chip {
  width: 27px;
  height: 27px;
  margin: -4px -5px -4px 1px;
}

.whatsapp-chip img {
  width: 16px;
  height: 16px;
}

.inline-whatsapp {
  width: 24px;
  height: 24px;
}

.inline-whatsapp img {
  width: 14px;
  height: 14px;
}

.play-icon {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--white);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--coral);
}

.eyebrow > span::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

.eyebrow-dark {
  color: var(--magenta);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 126px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(190, 24, 116, 0.18), transparent 34%),
    radial-gradient(circle at 10% 50%, rgba(255, 123, 97, 0.12), transparent 32%),
    linear-gradient(165deg, var(--navy-950), #0b1236 52%, #080c25);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 74%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 74%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 450px;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 123, 97, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.hero-glow::before {
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-glow::after {
  top: 48%;
  right: -5px;
  width: 11px;
  height: 11px;
  background: var(--coral);
  box-shadow: 0 0 24px rgba(255, 123, 97, 0.8);
}

.hero-glow-one {
  top: 120px;
  right: -230px;
  animation: rotate 34s linear infinite;
}

.hero-glow-two {
  bottom: 50px;
  left: -340px;
  width: 620px;
  animation: rotate 42s linear infinite reverse;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

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

.hero-copy .eyebrow {
  justify-content: center;
}

.hero h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero-title-context {
  display: block;
  max-width: 25ch;
  margin: 0 auto 14px;
  color: #e5e5ee;
  font-size: 0.7em;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.accent-text {
  position: relative;
  display: block;
  color: var(--coral);
}

.accent-text::after {
  content: none;
}

.hero-lead {
  max-width: 600px;
  margin: 22px auto 0;
  color: #c5c7d6;
  font-size: 1.0625rem;
  line-height: 1.6;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 26px;
}

.hero-actions-single {
  width: min(100%, 440px);
  margin-inline: auto;
}

.hero-actions-single .button {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
}

.hero-proof {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  max-width: 810px;
  margin: 32px auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-proof > div {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  min-height: 82px;
  padding: 14px 22px;
}

.hero-proof > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof strong {
  grid-row: 1 / 3;
  color: var(--coral);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.hero-proof span {
  align-self: end;
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-proof small {
  align-self: start;
  margin-top: 6px;
  color: #c5c7d6;
  font-size: 0.8125rem;
  line-height: 1.35;
}

.hero-proof > div:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -13px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--coral);
  background: var(--navy-800);
  border: 1px solid rgba(255, 123, 97, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 123, 97, 0.12);
  font-size: 0.82rem;
  transform: translateY(-50%);
}

.hero-proof::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coral), var(--magenta), transparent);
  transform: translateX(-110%);
  animation: proof-flow 5.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.video-stage {
  position: relative;
  max-width: 1060px;
  margin-inline: auto;
}

.video-stage::before {
  content: "";
  position: absolute;
  inset: 8% 5% -5%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 123, 97, 0.42), rgba(190, 24, 116, 0.18) 42%, transparent 72%);
  filter: blur(54px);
  opacity: 0.32;
  transform: translateZ(0) scale(0.96);
  animation: ambient-pulse 6s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 400ms ease, transform 400ms ease;
}

.video-stage.is-playing::before {
  opacity: 0.58;
  transform: translateZ(0) scale(1.04);
}

.video-chrome {
  position: relative;
  z-index: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.video-stage.is-playing .video-chrome {
  border-color: rgba(255, 123, 97, 0.38);
  box-shadow: 0 46px 110px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 123, 97, 0.12);
}

.video-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.82rem;
}

.video-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.video-kicker i {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 123, 97, 0.12);
}

.video-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #02040d;
  border-radius: 21px;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  color: var(--white);
  background: linear-gradient(to top, rgba(3, 6, 20, 0.72), rgba(3, 6, 20, 0.06) 58%);
  border: 0;
  cursor: pointer;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.video-play.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-disc {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding-left: 5px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.12), 0 20px 50px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-play:hover .play-disc {
  transform: scale(1.06);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.11), 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-play > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 16px;
  background: rgba(7, 11, 34, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.video-play strong {
  font-size: 1.03rem;
}

.video-play small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.floating-note {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(19, 26, 69, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.note-one {
  top: 14%;
  left: -62px;
  transform: rotate(-4deg);
  animation: float 5.2s ease-in-out infinite;
}

.note-two {
  right: -56px;
  bottom: 17%;
  color: var(--navy-950);
  background: var(--coral);
  transform: rotate(3deg);
  animation: float 5.8s ease-in-out 600ms infinite reverse;
}

.hero-cta {
  max-width: 1060px;
  margin: 28px auto 0;
}

.hero-cta-question {
  margin: 0 0 14px;
  text-align: center;
  color: #edeef5;
  font-size: clamp(1.0625rem, 1.6vw, 1.375rem);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.post-video-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  min-height: 88px;
  overflow: hidden;
  padding: 20px 22px 20px 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.04), transparent 32%),
    linear-gradient(110deg, #bf4434, #b82066);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(242, 95, 73, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.post-video-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, 0.24) 48%, transparent 68%);
  transform: translateX(-125%);
  animation: cta-sheen 6.5s ease-in-out 1.2s infinite;
}

.post-video-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -98px;
  right: 66px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.035), 0 0 0 64px rgba(255, 255, 255, 0.02);
}

.post-video-cta:hover {
  transform: translateY(-4px) scale(1.006);
  box-shadow: 0 30px 70px rgba(242, 95, 73, 0.37), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.post-video-cta:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 5px;
}

.post-video-cta-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.post-video-cta-copy small {
  margin-top: 5px;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.35;
}

.post-video-cta-copy strong {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.post-video-cta-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(80, 7, 49, 0.2);
  transition: transform 220ms ease;
}

.post-video-cta-icon img {
  width: 31px;
  height: 31px;
}

.post-video-cta:hover .post-video-cta-icon {
  transform: scale(1.08);
}

.client-proof {
  max-width: 1120px;
  margin: 58px auto 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.client-proof-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.client-proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.client-proof-kicker span {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(255, 123, 97, 0.78);
}

.client-proof-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.client-proof-heading > p:last-child {
  margin: 10px 0 0;
  color: #c5c7d6;
  font-size: 0.9rem;
}

.client-logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-logo-track,
.client-logo-set {
  display: flex;
  align-items: center;
  width: max-content;
}

.client-logo-track {
  will-change: transform;
}

.client-logo-track.is-looping {
  animation: client-marquee 45s linear infinite;
  animation-play-state: paused;
}

.client-logo-track.is-looping.is-in-view {
  animation-play-state: running;
}

.client-logo-marquee:hover .client-logo-track.is-looping {
  animation-play-state: paused;
}

.client-logo-set {
  gap: 14px;
  padding-right: 14px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 82px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 38px rgba(0, 0, 0, 0.12);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.client-logo:hover {
  z-index: 1;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.client-logo img {
  width: auto;
  max-width: 100%;
  max-height: 43px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.76;
}

.client-logo--wide {
  width: 220px;
}

.client-logo--wordmark {
  width: 202px;
  padding-inline: 18px;
}

.client-wordmark {
  display: grid;
  justify-items: center;
  color: var(--white);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.client-wordmark--premium {
  min-width: 136px;
  padding: 10px 12px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.025);
}

.client-wordmark--premium strong {
  font-size: 1rem;
  letter-spacing: 0.19em;
}

.client-wordmark--premium small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.36em;
}

.client-wordmark--du-monde small {
  margin-bottom: 5px;
  color: #d9b46f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.38em;
}

.client-wordmark--du-monde strong {
  color: #f7e7c5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.client-logo--named {
  gap: 12px;
  width: 210px;
  justify-content: flex-start;
}

.client-logo--named img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  max-height: none;
  border-radius: 50%;
  filter: none;
  opacity: 1;
}

.client-logo--named span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.deliverables-copy h2,
.fit-copy h2,
.final-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.375rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-wrap: balance;
}

.section-heading > p:last-child,
.deliverables-copy > p:not(.eyebrow),
.fit-copy > p:not(.eyebrow),
.final-inner > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.problem {
  background:
    radial-gradient(circle at 94% 12%, rgba(255, 123, 97, 0.1), transparent 25%),
    var(--paper);
}

.problem .section-heading {
  max-width: 1040px;
}

.section-heading .problem-display {
  display: grid;
  max-width: 1000px;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: pretty;
}

.problem-display span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.problem-display strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.problem-display em {
  display: block;
  max-width: 780px;
  margin-top: 24px;
  color: var(--magenta);
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.section-heading > .problem-insight {
  position: relative;
  max-width: 830px;
  margin-top: 36px;
  padding: 19px 24px 19px 27px;
  color: #464c66;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 22, 50, 0.08);
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
  box-shadow: 0 18px 50px rgba(12, 18, 49, 0.055);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.62;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.problem-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(12, 18, 49, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 123, 97, 0.45);
  box-shadow: 0 28px 70px rgba(12, 18, 49, 0.1);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  color: var(--magenta);
  background: var(--pink-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.problem-card h3 {
  margin: 32px 0 14px;
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
}

.card-line {
  position: absolute;
  right: -36px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px dashed rgba(255, 123, 97, 0.42);
  border-radius: 50%;
  transition: transform 500ms ease;
}

.card-line::after {
  content: "";
  position: absolute;
  top: 32px;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
}

.problem-card:hover .card-line {
  transform: rotate(50deg) scale(1.08);
}

.statement {
  position: relative;
  overflow: hidden;
  padding: 72px 0 104px;
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta), #81135c 54%, var(--navy-800) 140%);
}

.statement-inner {
  position: relative;
  z-index: 2;
}

.kinetic-text {
  position: absolute;
  z-index: 0;
  left: -2vw;
  bottom: -0.15em;
  color: rgba(255, 255, 255, 0.115);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.78;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}

.statement p {
  max-width: 42ch;
  margin: 0 0 28px;
  color: #f1dfe9;
  font-size: 1.0625rem;
  line-height: 1.5;
}

.statement h2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.125rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.statement-steps > span {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.statement h2 em {
  color: var(--coral);
  font-style: normal;
}

.statement .statement-caption {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: 1rem;
}

.method {
  position: relative;
  overflow: hidden;
  background: #f8f6f5;
}

.method > .shell {
  position: relative;
  z-index: 2;
}

.scroll-plane {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: clamp(82px, 9vw, 126px);
  height: clamp(82px, 9vw, 126px);
  color: var(--coral);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 24px 28px rgba(190, 24, 116, 0.22));
  will-change: transform, opacity;
}

.scroll-plane svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.plane-trail {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 68%;
  width: clamp(170px, 22vw, 330px);
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(190, 24, 116, 0.08), rgba(255, 123, 97, 0.52));
  border-radius: 999px;
  transform: translateY(-50%);
}

.plane-trail::before,
.plane-trail::after {
  content: "";
  position: absolute;
  right: 10%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(190, 24, 116, 0.2));
}

.plane-trail::before { top: -9px; }
.plane-trail::after { top: 11px; right: 2%; width: 46%; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.method-card {
  position: relative;
  min-height: 470px;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(13, 17, 45, 0.12);
  transition: transform 220ms ease;
}

.method-card::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -86px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.025), 0 0 0 68px rgba(255, 255, 255, 0.018);
}

.method-card:hover {
  transform: translateY(-7px);
}

.method-one {
  background: linear-gradient(155deg, #ff886d, #ef604e);
}

.method-two {
  background: linear-gradient(155deg, #c9237e, #97145e);
}

.method-three {
  background: linear-gradient(155deg, #1a2254, #080d2a);
}

.method-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.method-head span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.method-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-card h3 {
  max-width: 250px;
  margin: 36px 0 16px;
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.method-card > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.method-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.method-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.94rem;
}

.method-card li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.method-one { color: var(--navy-950); }
.method-one > p,
.method-one li,
.method-one .method-head p { color: var(--navy-950); }
.method-one .method-head { border-color: rgba(7, 11, 34, 0.2); }

.conversion-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10, 16, 47, 0.06);
}

.conversion-flow > div {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.conversion-flow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--magenta);
  background: var(--pink-soft);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.conversion-flow strong {
  font-size: 0.9rem;
}

.conversion-flow > i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(17, 22, 50, 0.12);
}

.conversion-flow > i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 32%;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
  animation: travel 3s linear infinite;
}

.conversion-flow .flow-result {
  padding: 8px 14px 8px 8px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
}

.conversion-flow .flow-result span {
  color: var(--navy-950);
  background: var(--coral);
}

.deliverables {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 80%, rgba(190, 24, 116, 0.23), transparent 28%),
    linear-gradient(145deg, var(--navy-950), #101842);
}

.deliverables-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(54px, 7vw, 88px);
  align-items: start;
}

.deliverables-copy {
  position: sticky;
  top: 126px;
}

.deliverables-copy h2 {
  max-width: 570px;
  font-size: clamp(2rem, 3.25vw, 3rem);
  line-height: 1.14;
}

.deliverables-copy h2 span {
  display: block;
  margin-top: 0.08em;
  color: var(--coral);
}

.deliverables-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.64);
}

.deliverables-copy .text-link {
  margin-top: 30px;
}

.deliverables-list {
  display: grid;
}

.deliverable {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.deliverable:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.deliverable > span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.deliverable h3 {
  margin: -3px 0 6px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.deliverable p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.cases {
  background: var(--paper);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.case-card {
  overflow: hidden;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 18px 60px rgba(11, 17, 45, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 123, 97, 0.45);
  box-shadow: 0 28px 70px rgba(11, 17, 45, 0.13);
}

.case-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--navy-950);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, opacity 300ms ease;
}

.case-card:hover .case-image img {
  transform: scale(1.035);
  opacity: 0.82;
}

.case-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding-left: 4px;
  color: var(--white);
  background: var(--coral-deep);
  border: 6px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.case-card:hover .case-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.case-copy {
  padding: 28px 30px 30px;
}

.case-copy > span {
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-copy h3 {
  margin: 12px 0 22px;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.case-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.case-copy b {
  margin-left: 4px;
  color: var(--coral-deep);
}

.results-note {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.fit {
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta), #96165f 60%, #72134f);
}

.fit-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(56px, 9vw, 120px);
  align-items: center;
}

.fit-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.fit-copy > p.fit-lead {
  color: var(--white);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.5;
}

.fit-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 26px;
  box-shadow: 0 32px 80px rgba(67, 8, 45, 0.28);
  transform: rotate(1deg);
}

.fit-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

.fit-panel-head span {
  font-weight: 700;
}

.fit-panel-head i {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.fit-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.fit-row > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--magenta);
  background: var(--pink-soft);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.fit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.fit-row strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.fit-status {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding: 14px 16px;
  color: var(--navy-800);
  background: #f5f5fb;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.fit-status i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--coral-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(242, 95, 73, 0.12);
}

.faq {
  background: #f8f6f5;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(52px, 9vw, 120px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 2px;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--magenta);
  background: var(--pink-soft);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 220ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -6px 0 26px;
  padding-right: 54px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy-950);
  background-size: 72px 72px;
}

.final-glow {
  position: absolute;
  inset: auto -120px -240px auto;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(190, 24, 116, 0.28), transparent 66%);
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.final-inner h2 span {
  display: block;
  color: var(--coral);
}

.final-inner .eyebrow {
  justify-content: center;
}

.final-inner > p:not(.eyebrow) {
  max-width: 660px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.62);
}

.final-inner .button {
  width: min(100%, 430px);
  margin-top: 26px;
}

.final-inner > p.cta-note {
  margin-top: 14px;
  color: #c5c7d6;
  font-size: 0.86rem;
}

.site-footer {
  padding: 28px 0 100px;
  color: rgba(255, 255, 255, 0.55);
  background: #05081a;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-footer {
  color: var(--white);
}

.footer-inner p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-inner p:last-child {
  margin-left: auto;
}

.mobile-cta {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 20px;
  color: var(--white);
  background: linear-gradient(115deg, #bf4434, #b82066);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(7, 11, 34, 0.28);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

body.cta-ready .mobile-cta {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.no-js .video-play { display: none; }
.no-js .client-logo-marquee {
  overflow-x: auto;
  -webkit-mask-image: none;
  mask-image: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 450ms ease, transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.method-grid .reveal:nth-child(2),
.problem-grid .reveal:nth-child(2),
.cases-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.method-grid .reveal:nth-child(3),
.problem-grid .reveal:nth-child(3) {
  transition-delay: 180ms;
}

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

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes travel {
  from { transform: translateX(-120%); }
  to { transform: translateX(420%); }
}

@keyframes ambient-pulse {
  0%, 100% { opacity: 0.28; transform: translateZ(0) scale(0.96); }
  50% { opacity: 0.4; transform: translateZ(0) scale(1.04); }
}

@keyframes cta-sheen {
  0%, 68% { transform: translateX(-125%); }
  84%, 100% { transform: translateX(125%); }
}

@keyframes context-pulse {
  0%, 100% { opacity: 0.72; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes client-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes proof-flow {
  0%, 22% { transform: translateX(-110%); }
  72%, 100% { transform: translateX(110%); }
}

@media (max-width: 1060px) {
  .note-one { left: -18px; }
  .note-two { right: -16px; }
  .method-card { min-height: auto; padding: 24px; }
  .conversion-flow { gap: 10px; }
  .conversion-flow strong { font-size: 0.875rem; }
}

@media (max-width: 900px) {
  .header-context { display: none; }
  .hero { padding-top: 112px; }
  .hero-proof { max-width: 720px; }
  .hero-proof > div { padding-inline: 16px; column-gap: 6px; }
  .hero-proof span { font-size: 1.125rem; }
  .floating-note { display: none; }
  .problem-grid,
  .method-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: auto; }
  .problem-card h3 { margin-top: 22px; }
  .method-card { min-height: auto; padding: 30px; }
  .method-card h3 { max-width: none; margin-top: 26px; }
  .method-card ul { max-width: 560px; }
  .conversion-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    padding: 16px;
  }
  .conversion-flow > div {
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 4px;
    white-space: normal;
    text-align: center;
  }
  .conversion-flow strong { line-height: 1.35; }
  .conversion-flow > i { display: none; }
  .conversion-flow .flow-result { padding: 10px 4px; border-radius: 12px; }
  .statement h2 { gap: 16px; font-size: 2rem; }
  .deliverables-layout,
  .fit-layout,
  .faq-layout { grid-template-columns: 1fr; }
  .deliverables-copy { position: static; }
  .fit-panel { max-width: 620px; transform: none; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { max-width: 720px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 82px; }
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  .section-pad { padding-block: 56px; }
  .site-header { background: rgba(7, 11, 34, 0.95); }
  .header-inner { min-height: 62px; }
  .brand-name { font-size: 0.95rem; }
  .brand-logo { width: 44px; height: 44px; }
  .header-cta { display: none; }
  .eyebrow { margin-bottom: 16px; font-size: 0.8125rem; letter-spacing: 0.055em; line-height: 1.5; }
  .eyebrow > span { width: 20px; flex: 0 0 20px; }
  .hero { padding: 92px 0 52px; }
  .hero-grid { background-size: 54px 54px; }
  .hero-glow { opacity: 0.25; }
  .hero-copy { max-width: 460px; text-align: left; }
  .hero-copy .eyebrow { justify-content: flex-start; }
  .hero h1 { font-size: clamp(2rem, calc(1.25rem + 4vw), 2.625rem); line-height: 1.08; text-wrap: pretty; }
  .hero-title-context { max-width: 26ch; margin: 0 0 12px; font-size: 0.75em; line-height: 1.24; }
  .hero-lead { margin-top: 18px; font-size: 1rem; line-height: 1.55; text-wrap: pretty; }
  .hero-actions { margin-top: 22px; }
  .hero-actions-single { width: 100%; }
  .hero-actions .button { width: 100%; min-height: 52px; }
  .hero-proof { grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 28px auto 24px; border-radius: 14px; }
  .hero-proof > div { grid-template-columns: minmax(0, 1fr); grid-template-rows: auto auto 1fr; justify-items: center; min-height: 108px; padding: 14px 7px; text-align: center; }
  .hero-proof strong { grid-row: auto; margin-bottom: 8px; font-size: 0.75rem; }
  .hero-proof span { font-size: 0.9375rem; line-height: 1.2; }
  .hero-proof small { max-width: 13ch; margin-top: 6px; font-size: 0.75rem; line-height: 1.35; }
  .hero-proof > div + div { border-top: 0; border-left: 1px solid rgba(255, 255, 255, 0.1); }
  .hero-proof > div:not(:last-child)::after { display: none; }
  .video-chrome { padding: 6px; border-radius: 19px; }
  .video-topline { min-height: 36px; padding: 0 8px; font-size: 0.75rem; }
  .video-topline > span:last-child { display: none; }
  .video-wrap { border-radius: 14px; }
  .video-stage::before { animation: none; opacity: 0.24; filter: blur(28px); }
  .video-play { gap: 0; }
  .video-play > span:last-child { display: none; }
  .play-disc { width: 52px; height: 52px; padding: 0; box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12); }
  .hero-cta { margin-top: 24px; }
  .hero-cta-question { margin-bottom: 12px; }
  .post-video-cta { min-height: 80px; gap: 12px; padding: 16px 18px; border-radius: 16px; }
  .post-video-cta-copy small { font-size: 0.8125rem; }
  .post-video-cta-copy strong { font-size: 1.125rem; }
  .post-video-cta-icon { width: 42px; height: 42px; }
  .post-video-cta-icon img { width: 24px; height: 24px; }
  .client-proof { margin-top: 34px; padding-top: 26px; }
  .client-proof-heading h2 { font-size: 1.5rem; }
  .client-proof-heading > p:last-child { max-width: 270px; line-height: 1.45; }
  .client-logo-marquee { margin-top: 20px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent); mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent); }
  .client-logo { width: 162px; height: 72px; padding: 14px 18px; }
  .client-logo--wide { width: 174px; }
  .client-logo--wordmark { width: 202px; }
  .client-logo--named { width: 185px; }
  .client-logo--named img { width: 43px; height: 43px; }
  .section-heading h2,
  .deliverables-copy h2,
  .fit-copy h2,
  .final-inner h2 { font-size: clamp(1.75rem, calc(1.25rem + 2.5vw), 2.125rem); line-height: 1.16; letter-spacing: -0.035em; text-wrap: pretty; }
  .section-heading.centered { text-align: left; }
  .section-heading.centered .eyebrow { justify-content: flex-start; }
  .section-heading > p:last-child,
  .deliverables-copy > p:not(.eyebrow),
  .fit-copy > p:not(.eyebrow),
  .final-inner > p:not(.eyebrow) { margin-top: 18px; font-size: 1rem; line-height: 1.6; }
  .problem-grid,
  .method-grid { margin-top: 28px; gap: 14px; }
  .problem-display span,
  .problem-display strong { font-size: 1.75rem; line-height: 1.16; letter-spacing: -0.035em; }
  .problem-display span { margin-bottom: 10px; }
  .problem-display em { margin-top: 16px; font-size: 1.875rem; line-height: 1.14; }
  .section-heading > .problem-insight { margin-top: 24px; padding: 16px 18px; }
  .problem-card { min-height: auto; padding: 22px; }
  .problem-card h3 { margin: 20px 0 10px; font-size: 1.375rem; line-height: 1.2; }
  .statement { padding: 48px 0 72px; }
  .statement p { margin-bottom: 20px; font-size: 1rem; }
  .statement h2 { grid-template-columns: minmax(0, 1fr); gap: 12px; font-size: 2rem; line-height: 1.15; }
  .statement-steps > span { padding-top: 12px; }
  .statement .statement-caption { margin-top: 20px; font-size: 1rem; }
  .kinetic-text { font-size: 5rem; opacity: 0.65; }
  .method-head { padding-bottom: 18px; }
  .method-card { padding: 24px; border-radius: 20px; }
  .method-card h3 { margin-top: 24px; font-size: 1.75rem; }
  .method-card ul { margin-top: 22px; gap: 10px; }
  .method-card li { font-size: 1rem; line-height: 1.5; }
  .conversion-flow { margin-top: 24px; gap: 4px; padding: 12px 8px; border-radius: 16px; }
  .conversion-flow strong { font-size: 0.75rem; line-height: 1.35; }
  .conversion-flow span { width: 30px; height: 30px; font-size: 0.75rem; flex: 0 0 auto; }
  .deliverables-layout,
  .fit-layout,
  .faq-layout { gap: 28px; }
  .deliverable { grid-template-columns: 28px minmax(0, 1fr); gap: 12px; padding: 22px 0; }
  .deliverable h3 { font-size: 1.125rem; line-height: 1.3; }
  .case-copy { padding: 22px; }
  .case-copy h3 { font-size: 1.375rem; line-height: 1.2; }
  .cases-grid { margin-top: 28px; }
  .fit-panel { padding: 20px; }
  .fit-panel-head { flex-direction: column; gap: 2px; }
  .faq-list summary { padding: 20px 0; font-size: 1rem; }
  .faq-list details p { padding-right: 10px; }
  .final-cta { padding-block: 52px; }
  .final-inner { text-align: left; }
  .final-inner .eyebrow { justify-content: flex-start; margin-top: 0; font-size: 0.8125rem; }
  .final-inner > p:not(.eyebrow) { color: #c5c7d6; }
  .final-inner .button { width: 100%; min-height: 54px; margin-top: 24px; font-size: 1rem; }
  .final-inner > p.cta-note { margin-top: 12px; font-size: 0.8125rem; text-align: center; }
  .button-large { padding-inline: 18px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-inner p:last-child { margin-left: 0; }
  .mobile-cta { display: inline-flex; }
  .site-footer { padding-bottom: max(40px, env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; filter: none; }
  .client-logo-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}
