@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url("../fonts/geist-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: optional;
  src: url("../fonts/cormorant-garamond-normal-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500 600;
  font-display: optional;
  src: url("../fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

body.ft-home-page {
  --font-geist: "Geist", Arial, sans-serif;
  --font-editorial: "Cormorant Garamond", Georgia, serif;
  min-width: 320px;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
}

body.ft-home-page .frametonic-site,
body.ft-home-page .frametonic-site * {
  box-sizing: border-box;
}

body.ft-home-page .frametonic-site {
  min-height: 100vh;
  overflow: clip;
}

body.ft-home-page .frametonic-site h1,
body.ft-home-page .frametonic-site h2,
body.ft-home-page .frametonic-site h3,
body.ft-home-page .frametonic-site h4,
body.ft-home-page .frametonic-site h5,
body.ft-home-page .frametonic-site h6 {
  font-weight: inherit;
}

body.ft-home-page .frametonic-site img,
body.ft-home-page .frametonic-site svg {
  vertical-align: middle;
}

:root {
  --ink: #171821;
  --muted: #666873;
  --paper: #f7f5f1;
  --white: #fff;
  --line: rgba(23, 24, 33, .13);
  --night: #111427;
  --blue: #5267ff;
  --violet: #8d35e8;
  --pink: #d51d9d;
  --orange: #ff7446;
  --gradient: linear-gradient(105deg, var(--blue) 0%, var(--violet) 38%, var(--pink) 69%, var(--orange) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-geist), Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
img { max-width: 100%; }
::selection { background: #d7c2ff; color: #171821; }

/* Stabilisation du viewport / anti-CLS */
html {
  scrollbar-gutter: stable;
  overflow-anchor: none;
}
body.ft-home-page,
body.ft-home-page .frametonic-site {
  overflow-anchor: none;
}
body.ft-home-page .frametonic-site img {
  display: block;
}

.section-shell { width: min(1300px, calc(100% - 64px)); margin-inline: auto; }
.section-pad { padding-block: clamp(88px, 9vw, 150px); }

.site-header {
  position: sticky; top: 0; z-index: 50; height: 96px; padding: 8px 34px;
  display: grid; grid-template-columns: 290px 1fr auto; align-items: center; gap: 32px;
  background: rgba(247, 245, 241, .88); border-bottom: 1px solid rgba(23, 24, 33, .08);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; width: 285px; height: 78px; overflow: hidden; }
.brand img { width: 280px; height: 76px; object-fit: contain; object-position: left center; display: block; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2.4vw, 40px); }
.desktop-nav a {
  position: relative;
  padding-block: 14px 12px;
  font-size: 15px;
  font-weight: 640;
  letter-spacing: -.015em;
  transition: color .25s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 3px 11px rgba(141, 53, 232, .22);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .34s cubic-bezier(.22, 1, .36, 1);
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--violet); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.button {
  display: inline-flex; justify-content: center; align-items: center; gap: 16px; min-height: 54px; padding: 0 25px;
  color: white; border-radius: 999px; background: var(--gradient); font-size: 14px; font-weight: 650;
  box-shadow: 0 14px 36px rgba(132, 45, 215, .22); transition: transform .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 45px rgba(132, 45, 215, .32); }
.button-small { min-height: 44px; padding-inline: 20px; font-size: 12px; }
.button-outline { color: var(--ink); background: transparent; border: 1px solid var(--line); box-shadow: none; }
.button-outline:hover { box-shadow: 0 12px 25px rgba(23, 24, 33, .08); }
.mobile-menu { display: none; }

.hero { min-height: calc(100svh - 88px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr); align-items: center; gap: 5vw; padding-block: 72px 60px; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 11px; color: #6231c8; font-size: 12px; font-weight: 820; line-height: 1.4; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 25px; height: 2px; flex: 0 0 25px; border-radius: 2px; background: var(--gradient); }
.hero-eyebrow {
  width: fit-content;
  margin-bottom: 30px;
  padding: 10px 16px 10px 12px;
  gap: 10px;
  border: 1px solid rgba(98, 49, 200, .17);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 10px 30px rgba(62, 45, 99, .07);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 700;
  letter-spacing: .015em;
  text-transform: none;
}
.hero-eyebrow::before { width: 9px; height: 9px; flex-basis: 9px; border-radius: 50%; box-shadow: 0 0 0 5px rgba(141, 53, 232, .09); }
.hero-eyebrow strong { font-weight: 840; }
.hero-eyebrow span { display: inline-flex; align-items: center; color: #6231c8; font-weight: 760; }
.hero-eyebrow span::before { content: "—"; margin-right: 10px; color: #aaa3b5; font-weight: 500; }
.hero .hero-display-title { margin: 0; max-width: 720px; font-size: clamp(64px, 7.4vw, 116px); line-height: .82; letter-spacing: -.068em; text-transform: uppercase; }
.hero .hero-display-title span { display: block; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-attribution { margin: 13px 0 0; color: #777986; font-size: 10px; font-weight: 720; letter-spacing: .15em; text-transform: uppercase; }
.hero-lead { max-width: 700px; margin: 26px 0 16px; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(28px, 2.6vw, 43px); line-height: 1.06; }
.hero-body { max-width: 690px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.service-line { max-width: 760px; margin: 28px 0 34px; color: #444650; font-size: 12px; line-height: 2; font-weight: 600; }
.service-line i { display: inline-block; width: 4px; height: 4px; margin: 0 9px 2px; border-radius: 50%; background: var(--gradient); }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.hero-actions > div { max-width: 430px; }
.hero-actions p { margin: 12px 2px 0; color: #777986; font-size: 11px; line-height: 1.55; }
.text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid #b9b5b8; padding-block: 7px; font-size: 13px; font-weight: 650; transition: gap .2s ease, color .2s ease; }
.text-link:hover { gap: 15px; color: var(--violet); }

.hero-system { position: relative; aspect-ratio: 1.04; min-width: 0; max-width: 620px; width: 100%; justify-self: end; }
.system-glow { position: absolute; inset: 12%; border-radius: 50%; background: radial-gradient(circle, rgba(165, 113, 255, .18), rgba(237, 59, 146, .045) 38%, transparent 67%); filter: blur(10px); animation: system-glow-pulse 7s ease-in-out infinite; }
.system-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
/* Ensure the two vertical business connections stay clearly visible. */
.hero-system::before, .hero-system::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  translate: -50% 0;
  z-index: 2;
  pointer-events: none;
  opacity: .72;
  background: repeating-linear-gradient(to bottom, rgba(113,86,255,.95) 0 5px, rgba(237,59,146,.78) 5px 8px, transparent 8px 14px);
  filter: drop-shadow(0 0 4px rgba(181,38,239,.38));
  animation: vertical-link-flow 4.8s linear infinite;
}
.hero-system::before { top: 13%; height: 24%; }
.hero-system::after { bottom: 13%; height: 24%; animation-direction: reverse; }
@keyframes vertical-link-flow { to { background-position-y: 28px; } }
.system-link { fill: none; stroke: url(#lineGradient); stroke-width: 1.25; stroke-dasharray: 5 9; opacity: .48; animation: link-drift 13s linear infinite; }
.system-beam { fill: none; stroke: url(#lineGradient); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 2 42; opacity: .48; filter: url(#lineGlow); animation: beam-flow 5.4s linear infinite; }
.beam-two { animation-delay: -1.1s; animation-duration: 6.2s; }
.beam-three { animation-delay: -2.3s; animation-duration: 5.8s; }
.beam-four { animation-delay: -3.2s; animation-duration: 6.6s; }
.beam-five { animation-delay: -.65s; animation-duration: 5.9s; }
.beam-six { animation-delay: -1.9s; animation-duration: 6.4s; }
.system-orbit { fill: none; stroke: url(#lineGradient); stroke-width: 1; stroke-dasharray: 2 14; opacity: .2; transform-origin: 320px 300px; animation: orbit-spin 28s linear infinite; }
.orbit-outer { stroke-dasharray: 1 20; opacity: .12; animation-direction: reverse; animation-duration: 40s; }
.moving-dot { fill: #fff; stroke: #bf4aff; stroke-width: 2; filter: drop-shadow(0 0 3px rgba(192, 61, 255, .65)); opacity: 0; offset-rotate: 0deg; animation: signal-travel 6.4s linear infinite; }
.dot-strategy { offset-path: path("M320 300 L320 58"); }
.dot-presence { offset-path: path("M320 300 L522 170"); animation-delay: -1.2s; animation-duration: 7.4s; }
.dot-acquisition { offset-path: path("M320 300 L522 430"); animation-delay: -2.4s; animation-duration: 6.9s; }
.dot-systems { offset-path: path("M320 300 L320 542"); animation-delay: -3.6s; animation-duration: 7.8s; }
.dot-ai { offset-path: path("M320 300 L118 430"); animation-delay: -4.8s; animation-duration: 7.2s; }
.dot-image { offset-path: path("M320 300 L118 170"); animation-delay: -1.8s; animation-duration: 7.6s; }
@keyframes system-glow-pulse { 50% { opacity: .82; transform: scale(1.04); } }
@keyframes link-drift { to { stroke-dashoffset: -52; } }
@keyframes beam-flow { to { stroke-dashoffset: -72; } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes signal-travel { 0% { offset-distance: 0%; opacity: 0; } 14% { opacity: .62; } 78% { opacity: .62; } 100% { offset-distance: 100%; opacity: 0; } }
.system-center { z-index: 3; position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 158px; height: 158px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: #151527; color: white; box-shadow: 0 24px 60px rgba(53, 32, 103, .28), inset 0 0 0 1px rgba(255, 255, 255, .12); }
.system-center::before { content: ""; position: absolute; inset: -9px; border: 2px solid transparent; border-top-color: #7156ff; border-right-color: #ed3b92; border-bottom-color: rgba(255, 106, 61, .3); border-radius: 50%; filter: drop-shadow(0 0 6px rgba(181, 38, 239, .28)); animation: rotate 12s linear infinite; }
.system-center::after { content: ""; position: absolute; inset: -15px; border: 1px solid rgba(141, 82, 255, .38); border-radius: 50%; animation: center-wave 5s ease-out infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes center-wave { 0% { opacity: .42; transform: scale(.96); } 100% { opacity: 0; transform: scale(1.17); } }
.system-center span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .65; }
.system-center strong { font-family: var(--font-editorial), Georgia, serif; font-size: 27px; font-weight: 600; }
.system-node { z-index: 3; position: absolute; width: 185px; padding: 18px 20px; background: rgba(255, 255, 255, .78); border: 1px solid rgba(255, 255, 255, .94); border-radius: 18px; box-shadow: 0 16px 50px rgba(44, 36, 79, .09); backdrop-filter: blur(12px); animation: node-float 5s ease-in-out infinite; }
.system-node::before { content: ""; position: absolute; left: 18px; top: -4px; width: 32px; height: 4px; border-radius: 4px; background: var(--gradient); box-shadow: 0 0 14px rgba(181, 38, 239, .55); }
.system-node span { float: right; color: #9b9ca6; font-size: 10px; }
.system-node strong { display: block; font-family: var(--font-editorial), Georgia, serif; font-size: 22px; }
.system-node small { display: block; margin-top: 5px; color: #737580; font-size: 9px; line-height: 1.5; }
.node-strategy { left: calc(50% - 92.5px); top: 1.5%; }
.node-presence { right: 3.5%; top: 21%; animation-delay: -1s; }
.node-acquisition { right: 3.5%; bottom: 21%; animation-delay: -2s; }
.node-systems { left: calc(50% - 92.5px); bottom: 1.5%; animation-delay: -3s; }
.node-ai { left: 3.5%; bottom: 21%; animation-delay: -4s; }
.node-image { left: 3.5%; top: 21%; animation-delay: -2.4s; }
@keyframes node-float { 50% { transform: translateY(-3px); box-shadow: 0 19px 52px rgba(72, 43, 123, .12); } }
.proof-strip { display: grid; grid-template-columns: repeat(5, 1fr); padding: 0 max(32px, calc((100% - 1300px) / 2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .48); }
.proof-strip div { min-height: 118px; padding: 27px clamp(16px, 1.55vw, 22px); border-right: 1px solid var(--line); }
.proof-strip div:first-child { border-left: 1px solid var(--line); }
.proof-strip strong { display: block; font-family: var(--font-geist), Arial, sans-serif; font-size: clamp(20px, 1.65vw, 24px); font-weight: 760; line-height: 1; letter-spacing: -.045em; white-space: nowrap; }
.proof-strip span { display: block; margin-top: 8px; color: var(--muted); font-size: 11px; }

.section-heading { max-width: 850px; }
.section-heading h2 { margin: 0; font-size: clamp(44px, 5.4vw, 78px); line-height: .98; letter-spacing: -.055em; }
.problem-grid { margin-top: 64px; border-top: 1px solid var(--line); }
.problem-grid p { position: relative; margin: 0; padding: 24px 56px 24px 34px; border-bottom: 1px solid var(--line); font-size: clamp(18px, 2vw, 27px); letter-spacing: -.022em; }
.problem-grid p::before { content: ""; position: absolute; left: 3px; top: 34px; width: 11px; height: 11px; border: 1.5px solid #a839d6; border-radius: 50%; }
.problem-grid p::after { content: "→"; position: absolute; right: 12px; color: #aaa6ad; }
.problem-answer { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7vw; margin-top: 56px; align-items: start; }
.problem-answer > p { margin: 0; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(25px, 2.5vw, 38px); line-height: 1.2; }
.problem-answer > p strong { font-weight: 600; }
.context-cta { display: flex; flex-direction: column; gap: 14px; }
.text-link-strong { font-size: 15px; }
.context-cta span { max-width: 390px; color: var(--muted); font-size: 12px; line-height: 1.6; }

.manifest { margin-bottom: clamp(88px, 9vw, 150px); padding: clamp(48px, 7vw, 100px); border-radius: 38px; background: #fff; box-shadow: 0 30px 90px rgba(23, 24, 33, .06); }
.manifest-kicker { margin: 0 0 70px; color: #8e38dd; font-size: 12px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.manifest-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; color: #3f414c; font-size: clamp(20px, 1.65vw, 26px); line-height: 1.48; letter-spacing: -.018em; }
.manifest-copy p { margin: 0; }
.manifest h2 { margin: 80px 0 70px; max-width: 1000px; font-size: clamp(58px, 8vw, 112px); line-height: .88; letter-spacing: -.065em; }
.manifest h2 em { display: block; font-family: var(--font-editorial), Georgia, serif; font-weight: 500; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.manifest-bottom { display: grid; grid-template-columns: minmax(0, .82fr) minmax(360px, 1.18fr); gap: 7vw; align-items: end; border-top: 1px solid var(--line); padding-top: 34px; }
.manifest-bottom p { max-width: 700px; margin: 0; font-size: 15px; line-height: 1.7; }
.manifest-quote { margin: 0; }
.manifest-quote strong { display: block; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(44px, 5vw, 72px); font-style: italic; font-weight: 500; line-height: .88; letter-spacing: -.05em; }
.manifest-quote cite { display: block; margin-top: 20px; color: #8e38dd; font-family: var(--font-geist), Arial, sans-serif; font-size: 10px; font-style: normal; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }

.web-section { color: white; background: var(--night); overflow: hidden; }
.web-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; }
.eyebrow-light { color: #d0c1ff; }
.web-grid h2 { margin: 0; font-size: clamp(52px, 6.5vw, 94px); line-height: .9; letter-spacing: -.06em; }
.web-grid h2 span { font-family: var(--font-editorial), Georgia, serif; color: #c6a9ff; font-weight: 500; }
.web-copy > p { margin: 0 0 24px; color: #b8b9c6; font-size: 15px; line-height: 1.75; }
.web-pill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 45px 0; background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .13); }
.web-pill-grid span { padding: 19px 15px; background: var(--night); color: #dedde6; font-size: 11px; text-align: center; }
.web-copy blockquote { margin: 0 0 32px; padding-left: 24px; border-left: 2px solid #ae5df0; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.15; }
.text-link-light { border-color: rgba(255, 255, 255, .4); color: white; }
.text-link-light:hover { color: #e0b7ff; }

.strategy-services-visual {
  position: relative;
  height: clamp(430px, 44vw, 620px);
  margin: 0 0 clamp(72px, 8vw, 118px);
  overflow: hidden;
  border-radius: clamp(28px, 3vw, 42px);
  background: #211f1d;
  box-shadow: 0 34px 92px rgba(37, 29, 29, .16);
}
.strategy-services-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 13, 18, .42), transparent 48%);
  pointer-events: none;
}
.strategy-services-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}
.strategy-services-visual:hover > img { transform: scale(1.018); }
.strategy-services-visual figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 3vw, 44px);
  bottom: clamp(20px, 3vw, 44px);
  max-width: calc(100% - 40px);
  padding: 18px 22px 20px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 18px;
  color: white;
  background: rgba(18, 17, 22, .7);
  box-shadow: 0 18px 50px rgba(15, 13, 17, .22);
  backdrop-filter: blur(16px);
}
.strategy-services-visual figcaption span {
  display: block;
  margin-bottom: 7px;
  color: #e7d7ff;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.strategy-services-visual figcaption strong {
  display: block;
  font-family: var(--font-editorial), Georgia, serif;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.05;
}

.section-heading-split { max-width: none; display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; }
.section-heading-split > p { margin: 0 0 5px; color: var(--muted); font-family: var(--font-editorial), Georgia, serif; font-size: 25px; line-height: 1.25; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 70px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 390px; padding: clamp(30px, 4vw, 58px); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease, transform .3s ease; }
.service-card:hover { background: #fff; transform: translateY(-4px); }
.service-number { color: #9138d8; font-size: 11px; font-weight: 700; }
.service-card h3 { margin: 40px 0 16px; font-size: clamp(27px, 3vw, 40px); letter-spacing: -.04em; }
.service-card > p { max-width: 560px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 44px; padding: 0; list-style: none; }
.service-card li { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #686973; font-size: 10px; }
.service-card a { width: fit-content; min-height: 48px; padding: 10px 13px 10px 19px; display: inline-flex; gap: 14px; align-items: center; margin-top: auto; border-radius: 999px; color: white; background: var(--ink); font-size: 14px; font-weight: 720; box-shadow: 0 12px 28px rgba(23, 24, 33, .14); transition: transform .22s ease, box-shadow .22s ease, gap .22s ease; }
.service-card a span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: white; }
.service-card a:hover { gap: 18px; transform: translateY(-2px); box-shadow: 0 17px 34px rgba(23, 24, 33, .2); }

.projects { background: #eeece7; }
.projects-heading h2 span { font-family: var(--font-editorial), Georgia, serif; font-weight: 500; }
.projects-heading > p { font-family: var(--font-geist), Arial, sans-serif; font-size: 14px; line-height: 1.65; }
.client-scale {
  position: relative;
  min-height: 460px;
  margin-top: clamp(58px, 7vw, 100px);
  padding: clamp(42px, 6vw, 82px);
  overflow: hidden;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 107, 71, .27), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(102, 81, 255, .3), transparent 34%),
    #12131f;
}
.client-scale::after {
  content: "50 M€";
  position: absolute;
  right: -24px;
  bottom: -54px;
  color: rgba(255, 255, 255, .035);
  font-size: clamp(150px, 21vw, 330px);
  font-weight: 850;
  line-height: .75;
  letter-spacing: -.09em;
  white-space: nowrap;
}
.client-scale > * { position: relative; z-index: 1; }
.client-scale h3 { max-width: 1150px; margin: 28px 0 52px; font-size: clamp(52px, 7vw, 104px); font-weight: 560; line-height: .88; letter-spacing: -.068em; }
.client-scale h3 span { display: block; }
.client-scale h3 span:nth-child(2) { margin-left: 9vw; color: #d9c6ff; font-family: var(--font-editorial), Georgia, serif; font-weight: 500; }
.client-scale h3 span:last-child { max-width: 1100px; margin-left: 2vw; }
.client-scale h3 strong { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 760; white-space: nowrap; }
.client-scale-footer { display: flex; justify-content: space-between; gap: 40px; align-items: flex-end; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .17); }
.client-scale-footer p { max-width: 650px; margin: 0; color: #bec0cb; font-size: 13px; line-height: 1.7; }
.client-scale-footer > span { color: #d8c6ff; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.project-grid { display: grid; grid-template-columns: 1.08fr .92fr; grid-auto-rows: 560px; gap: 24px; margin-top: 70px; }
.project-card { padding: 16px; border-radius: 24px; background: white; box-shadow: 0 18px 50px rgba(23, 24, 33, .06); }
.project-tall { grid-row: span 1; }
.project-visual { height: calc(100% - 76px); overflow: hidden; border-radius: 14px; background: #d9d8d5; }
.project-visual img { width: 100%; height: auto; min-height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 1.4s ease-out; }
.project-card:hover .project-visual img { transform: translateY(calc(-100% + 444px)); transition-duration: 24s; transition-timing-function: linear; }
.project-meta { height: 76px; display: flex; justify-content: space-between; align-items: center; padding: 13px 8px 0; }
.project-meta h3 { margin: 0 0 5px; font-size: 17px; }
.project-meta p { margin: 0; color: var(--muted); font-size: 10px; }
.project-meta > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.center-cta { margin-top: 55px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.center-cta p { margin: 14px 0 0; color: var(--muted); font-size: 11px; }

.international { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.intl-map { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 50%; border: 1px solid var(--line); background: radial-gradient(circle at 50% 50%, rgba(164, 82, 241, .12), transparent 55%), #efede9; animation: intl-map-breathe 8s ease-in-out infinite; }
.intl-map::before, .intl-map::after { content: ""; position: absolute; inset: 14%; border: 1px dashed rgba(74, 72, 85, .19); border-radius: 50%; transform-origin: center; animation: intl-orbit 34s linear infinite; }
.intl-map::after { inset: 29%; animation-direction: reverse; animation-duration: 46s; }
.map-label { position: absolute; z-index: 3; padding: 18px 26px; border-radius: 999px; background: white; box-shadow: 0 12px 35px rgba(23, 24, 33, .1); font-size: 15px; font-weight: 750; line-height: 1; white-space: nowrap; animation: intl-label-float 6s ease-in-out infinite; }
.map-label::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--gradient); }
.map-fr { right: 11%; top: 24%; animation-delay: -3s; }
.map-na { left: 7%; bottom: 25%; }
.map-route { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; overflow: visible; }
.map-route-base, .map-route-flow { fill: none; stroke-linecap: round; }
.map-route-base { stroke: rgba(151, 54, 221, .22); stroke-width: 2; stroke-dasharray: 5 9; }
.map-route-flow { stroke: url(#intlRouteGradient); stroke-width: 2.5; stroke-dasharray: 3 19; animation: intl-route-flow 5.5s linear infinite; }
.map-route-dot { fill: #ff7446; stroke: white; stroke-width: 2; filter: drop-shadow(0 0 5px rgba(255, 116, 70, .75)); }
.intl-map > p { position: absolute; z-index: 1; left: 50%; top: 50%; translate: -50% -50%; margin: 0; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(22px, 2.4vw, 34px); line-height: 1; text-align: center; }
@keyframes intl-map-breathe { 50% { box-shadow: inset 0 0 54px rgba(156, 73, 228, .08); } }
@keyframes intl-orbit { to { transform: rotate(360deg); } }
@keyframes intl-label-float { 50% { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(72, 43, 123, .14); } }
@keyframes intl-route-flow { to { stroke-dashoffset: -88; } }
.intl-copy h2 { margin: 0 0 34px; font-size: clamp(46px, 5.4vw, 76px); line-height: .97; letter-spacing: -.055em; }
.intl-copy > p:not(.eyebrow) { margin: 0 0 19px; color: var(--muted); font-size: 14px; line-height: 1.72; }
.intl-copy blockquote { margin: 42px 0 28px; padding-left: 22px; border-left: 2px solid #b246dd; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(25px, 2.6vw, 38px); line-height: 1.15; }
.intl-copy ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 36px; padding: 0; list-style: none; }
.intl-copy li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #686973; font-size: 10px; }

.convictions { padding-block: clamp(24px, 3vw, 48px) clamp(88px, 9vw, 150px); }
.convictions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.conviction-card { min-height: 610px; padding: clamp(38px, 5vw, 72px); border-radius: 30px; display: flex; flex-direction: column; align-items: flex-start; }
.conviction-card h2 { margin: 0 0 30px; font-size: clamp(38px, 4.6vw, 62px); line-height: .98; letter-spacing: -.05em; }
.conviction-card > p:not(.eyebrow) { margin: 0; font-size: 14px; line-height: 1.75; }
.conviction-card blockquote { margin: auto 0 35px; font-family: var(--font-editorial), Georgia, serif; font-size: 28px; font-style: italic; line-height: 1.15; }
.conviction-dark { color: white; background: var(--night); }
.conviction-dark > p:not(.eyebrow) { color: #bfc0cb; }
.conviction-light { background: white; box-shadow: 0 20px 70px rgba(23, 24, 33, .06); }
.conviction-light > p:not(.eyebrow) { color: var(--muted); }
.crm-flow { width: 100%; margin: auto 0 38px; display: flex; align-items: center; justify-content: space-between; gap: 7px; }
.crm-flow span { padding: 11px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 9px; }
.crm-flow i { color: #ac44d8; font-size: 11px; font-style: normal; }

.seo-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; }
.seo-title { position: sticky; top: 130px; align-self: start; }
.seo-title h2 { margin: 0; font-size: clamp(45px, 5.8vw, 80px); line-height: .98; letter-spacing: -.055em; }
.seo-title h2 span { display: block; }
.seo-title h2 span:nth-child(2) { color: #8044d2; }
.seo-title h2 span:nth-child(3) { font-family: var(--font-editorial), Georgia, serif; font-weight: 500; color: #c22e9c; }
.seo-body > p { margin: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.seo-body > p:nth-child(2) { color: var(--ink); font-family: var(--font-editorial), Georgia, serif; font-size: 27px; line-height: 1.25; }
.seo-topics { margin: 48px 0 38px; border-top: 1px solid var(--line); }
.seo-topics span { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 19px 5px; border-bottom: 1px solid var(--line); font-size: 13px; }
.seo-topics b { color: #a546d7; font-size: 10px; }

.method { background: #e9e6e1; }
.method .section-heading h2 span { font-family: var(--font-editorial), Georgia, serif; font-weight: 500; }
.method .section-heading-split > p { font-family: var(--font-geist), Arial, sans-serif; font-size: 14px; line-height: 1.7; }
.method-list { margin: 78px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.method-list li { display: grid; grid-template-columns: 80px 1fr 1fr; align-items: center; gap: 20px; min-height: 112px; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.method-list li:hover { padding-inline: 18px; background: rgba(255, 255, 255, .45); }
.method-list span { color: #9f3ad1; font-size: 11px; }
.method-list h3 { margin: 0; font-size: clamp(28px, 3.2vw, 43px); font-weight: 560; letter-spacing: -.04em; }
.method-list p { margin: 0; color: var(--muted); font-size: 12px; }

.about { display: block; padding-block: clamp(72px, 7vw, 112px); }
.about-intro { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(48px, 8vw, 125px); align-items: start; }
.about-copy h2 { margin: 0; font-size: clamp(50px, 5.6vw, 82px); line-height: .93; letter-spacing: -.06em; }
.about-copy h2 em { font-family: var(--font-editorial), Georgia, serif; font-weight: 500; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-text { display: grid; gap: 18px; padding-top: 7px; }
.about-text p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.about-text p:last-child { padding-top: 12px; color: var(--ink); font-family: var(--font-editorial), Georgia, serif; font-size: 24px; line-height: 1.25; }
.about-impact { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-impact article { min-height: 162px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .58); }
.about-impact article:nth-child(3) { color: white; background: linear-gradient(135deg, #17182a, #2d1a3c); }
.about-impact article:nth-child(3) small { color: #aaa9b6; }
.about-impact strong { display: block; font-size: clamp(38px, 3.7vw, 58px); font-weight: 760; line-height: .9; letter-spacing: -.06em; }
.about-impact span { display: block; margin-top: 12px; font-family: var(--font-editorial), Georgia, serif; font-size: 20px; }
.about-impact small { display: block; max-width: 270px; margin-top: 14px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.degree-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 32px; }
.degree-grid > div { padding: 24px; border: 1px solid var(--line); border-radius: 18px; }
.degree-grid strong { display: block; font-size: 23px; }
.degree-grid span { display: block; margin-top: 9px; color: var(--muted); font-size: 10px; line-height: 1.55; }

.unique-section { padding-block: clamp(86px, 9vw, 145px); color: white; background: linear-gradient(135deg, #15162a, #1b1730 60%, #261833); }
.unique-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 9vw; }
.unique-grid h2 { margin: 0; font-size: clamp(48px, 5.5vw, 76px); line-height: .96; letter-spacing: -.055em; }
.unique-grid h2 span { font-family: var(--font-editorial), Georgia, serif; color: #d0b6ff; font-weight: 500; }
.unique-grid > div:last-child > p { margin: 0 0 22px; color: #bfc0cb; font-size: 14px; line-height: 1.75; }
.unique-grid ul { margin: 38px 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .14); list-style: none; }
.unique-grid li { padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); font-size: 13px; }
.unique-grid li::before { content: "✓"; margin-right: 12px; color: #cb6dff; }
.unique-grid > div:last-child > strong { display: block; font-family: var(--font-editorial), Georgia, serif; font-size: 26px; font-weight: 500; }

.tools-intro { text-align: center; }
.tools-intro h2 { margin: 0; font-size: clamp(39px, 5vw, 69px); line-height: .99; letter-spacing: -.05em; }
.tools-intro h2 span { font-family: var(--font-editorial), Georgia, serif; font-weight: 500; }
.tools-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; margin-top: 68px; border: 1px solid var(--line); background: var(--line); }
.tools-grid span { min-height: 92px; display: grid; place-items: center; padding: 15px; background: var(--paper); color: #555760; font-size: 12px; font-weight: 650; text-align: center; transition: color .2s ease, background .2s ease; }
.tools-grid span:hover { color: #823fd1; background: white; }

.final-cta { margin-bottom: clamp(72px, 8vw, 120px); overflow: hidden; border-radius: 38px; color: white; background: var(--night); }
.final-cta-main { padding: clamp(50px, 8vw, 110px); text-align: center; background: radial-gradient(circle at 50% 0%, rgba(128, 71, 241, .32), transparent 58%); }
.final-cta-main h2 { max-width: 1000px; margin: 0 auto 32px; font-size: clamp(50px, 6.8vw, 96px); line-height: .91; letter-spacing: -.062em; }
.final-cta-main > p:not(.eyebrow) { max-width: 720px; margin: 0 auto; color: #c1c2cc; font-size: 15px; line-height: 1.75; }
.final-action { display: flex; justify-content: center; align-items: center; gap: 30px; margin: 48px auto 18px; }
.final-action > p { max-width: 410px; margin: 0; color: #c1c2cc; font-size: 11px; line-height: 1.6; text-align: left; }
.final-action strong { color: white; }
.final-cta-main small { color: #888996; font-size: 10px; }
.next-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, .13); }
.next-steps > div { min-height: 210px; padding: 34px; border-right: 1px solid rgba(255, 255, 255, .13); }
.next-steps > div:last-child { border-right: 0; }
.next-steps span { color: #b470ef; font-size: 11px; }
.next-steps h3 { margin: 28px 0 12px; font-size: 20px; }
.next-steps p { margin: 0; color: #999aa7; font-size: 10px; line-height: 1.55; }

.site-footer { padding-block: 65px 25px; border-top: 1px solid var(--line); background: #ebe8e2; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 7vw; }
.footer-brand { overflow: hidden; }
.footer-brand img { width: 240px; display: block; }
.footer-brand p { margin: 10px 0 0; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-title { margin: 0 0 18px !important; color: #9e36d6 !important; font-size: 10px !important; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a, .footer-grid > div:not(:first-child) > p:not(.footer-title) { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.footer-grid strong { margin-top: 12px; font-family: var(--font-editorial), Georgia, serif; font-size: 18px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid var(--line); color: #81818a; font-size: 9px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 250px 1fr auto; padding-inline: 24px; }
  .brand { width: 245px; }
  .brand img { width: 240px; }
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: 13px; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-system { justify-self: center; max-width: 650px; }
  .project-grid { grid-template-rows: none; grid-auto-rows: 500px; }
  .project-card:hover .project-visual img { transform: translateY(calc(-100% + 424px)); }
}

@media (max-width: 800px) {
  .section-shell { width: min(100% - 36px, 660px); }
  .section-pad { padding-block: 84px; }
  .site-header { height: 78px; grid-template-columns: 1fr auto; padding-inline: 18px; }
  .brand { width: 225px; height: 60px; }
  .brand img { width: 220px; height: 60px; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 18px; height: 1px; background: var(--ink); }
  .mobile-menu nav { position: absolute; right: 0; top: 54px; width: min(320px, calc(100vw - 36px)); padding: 18px; display: flex; flex-direction: column; border-radius: 16px; background: white; box-shadow: 0 20px 60px rgba(23, 24, 33, .15); }
  .mobile-menu nav a { padding: 15px 10px; border-bottom: 1px solid var(--line); font-size: 16px; font-weight: 620; }
  .hero { min-height: 0; grid-template-columns: 1fr; gap: 60px; padding-block: 58px 76px; }
  .hero .hero-display-title { font-size: clamp(55px, 18vw, 88px); }
  .hero-lead { margin-top: 28px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-actions > div, .hero-actions .button { width: 100%; }
  .hero-system { aspect-ratio: 1 / 1.05; width: calc(100% + 12px); transform: translateX(-6px); }
  .system-center { width: 122px; height: 122px; }
  .system-center strong { font-size: 22px; }
  .system-node { width: 142px; padding: 13px 14px; border-radius: 13px; }
  .system-node strong { font-size: 17px; }
  .node-strategy, .node-systems { left: calc(50% - 71px); }
  .node-image { width: 142px; }
  .system-node small { font-size: 7px; }
  .node-ai { width: 142px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); padding-inline: 18px; }
  .proof-strip div { min-height: 100px; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { grid-column: span 2; }
  .problem-grid { margin-top: 46px; }
  .problem-grid p { padding: 20px 40px 20px 27px; font-size: 17px; }
  .problem-grid p::before { top: 27px; width: 9px; height: 9px; }
  .problem-answer, .manifest-copy, .manifest-bottom, .web-grid, .section-heading-split { grid-template-columns: 1fr; }
  .problem-answer { gap: 35px; }
  .manifest { width: calc(100% - 24px); padding: 42px 28px; border-radius: 26px; }
  .manifest-kicker { margin-bottom: 48px; }
  .manifest-copy { gap: 24px; }
  .manifest h2 { margin-block: 55px; font-size: clamp(51px, 15vw, 78px); }
  .manifest-bottom { gap: 35px; }
  .manifest-bottom span { white-space: normal; }
  .web-grid { gap: 54px; }
  .web-pill-grid { grid-template-columns: repeat(2, 1fr); }
  .strategy-services-visual { height: clamp(340px, 82vw, 480px); margin-bottom: 64px; border-radius: 26px; }
  .strategy-services-visual figcaption { left: 14px; bottom: 14px; max-width: calc(100% - 28px); padding: 16px 18px 18px; }
  .strategy-services-visual:hover > img { transform: none; }
  .section-heading-split { gap: 25px; }
  .services-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .service-card { min-height: 360px; }
  .service-card:nth-child(7) { grid-column: auto; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 460px; }
  .project-card:hover .project-visual img { transform: none; }
  .client-scale { min-height: 0; padding: 48px 26px; border-radius: 26px; }
  .client-scale h3 { margin-block: 28px 42px; font-size: clamp(48px, 14vw, 76px); line-height: .92; }
  .client-scale h3 span:nth-child(2), .client-scale h3 span:last-child { margin-left: 0; }
  .client-scale-footer { align-items: flex-start; flex-direction: column; }
  .client-scale-footer > span { white-space: normal; }
  .international, .convictions-grid, .seo-section, .unique-grid { grid-template-columns: 1fr; }
  .international, .seo-section, .unique-grid { gap: 58px; }
  .intl-map { width: min(100%, 520px); justify-self: center; }
  .conviction-card { min-height: 560px; }
  .seo-title { position: static; }
  .method-list li { grid-template-columns: 45px 1fr; gap: 12px; padding-block: 20px; }
  .method-list p { grid-column: 2; }
  .about-intro { grid-template-columns: 1fr; gap: 36px; }
  .about-text { grid-template-columns: 1fr; }
  .about-text p:last-child { grid-column: auto; }
  .about-impact { grid-template-columns: repeat(2, 1fr); }
  .about-impact article { min-height: 155px; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .final-action { flex-direction: column; }
  .final-action > p { text-align: center; }
  .next-steps { grid-template-columns: repeat(2, 1fr); }
  .next-steps > div:nth-child(2) { border-right: 0; }
  .next-steps > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .13); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }
}

@media (max-width: 470px) {
  .hero-system { aspect-ratio: 1 / 1.16; margin-top: 0; }
  .system-lines { opacity: .6; }
  .node-strategy { left: calc(50% - 71px); top: 0; }
  .node-presence { right: 0; top: 18%; }
  .node-acquisition { right: 0; top: auto; bottom: 14%; }
  .node-systems { left: calc(50% - 71px); bottom: 0; }
  .node-ai { left: 0; top: auto; bottom: 14%; }
  .node-image { left: 0; right: auto; top: 18%; bottom: auto; width: 142px; }
  .system-center { top: 48%; }
  .proof-strip strong { font-size: 29px; }
  .section-heading h2 { font-size: 44px; }
  .web-grid h2 { font-size: 53px; }
  .services-grid { border-left: 0; }
  .service-card { border-left: 1px solid var(--line); padding: 32px 24px; }
  .conviction-card { min-height: 590px; padding: 36px 26px; }
  .crm-flow { display: grid; grid-template-columns: 1fr; }
  .crm-flow i { rotate: 90deg; justify-self: center; }
  .method-list { margin-top: 55px; }
  .degree-grid { grid-template-columns: 1fr; }
  .about-impact { grid-template-columns: 1fr; }
  .final-cta { width: calc(100% - 24px); border-radius: 26px; }
  .final-cta-main { padding: 54px 25px; }
  .final-cta-main .button { width: 100%; }
  .next-steps { grid-template-columns: 1fr; }
  .next-steps > div, .next-steps > div:nth-child(2) { min-height: 165px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .map-route-dot { display: none; }
}

/* 2026 editorial rhythm: strong scene changes instead of a continuous stack */
.proof-strip {
  color: white;
  border-color: rgba(255, 255, 255, .1);
  background: linear-gradient(105deg, #131422 0%, #1a1730 52%, #291834 100%);
}
.proof-strip div { border-color: rgba(255, 255, 255, .12); }
.proof-strip strong {
  background: linear-gradient(105deg, #d7ccff, #ef9df1 60%, #ffb08d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proof-strip span { color: rgba(255, 255, 255, .6); }

.sector-showcase {
  padding-block: clamp(54px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 0%, rgba(213, 29, 157, .1), transparent 30%),
    linear-gradient(115deg, #f1edf9 0%, #f8f3ef 100%);
}
.sector-showcase-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 7vw, 110px); align-items: center; }
.sector-showcase-title h2 { margin: 0; font-size: clamp(38px, 4.4vw, 64px); line-height: .95; letter-spacing: -.055em; }
.sector-showcase-title h2 em { color: #9738cd; font-family: var(--font-editorial), Georgia, serif; font-weight: 500; }
.sector-showcase-body > p { max-width: 780px; margin: 0 0 25px; color: #555763; font-size: 14px; line-height: 1.7; }
.sector-showcase ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.sector-showcase li { padding: 9px 13px; border: 1px solid rgba(81, 66, 111, .16); border-radius: 999px; color: #55515f; background: rgba(255, 255, 255, .66); font-size: 10px; font-weight: 650; box-shadow: 0 6px 18px rgba(69, 51, 102, .04); }

.positioning-section {
  position: relative;
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
  color: white;
  background: #0f111e;
  overflow: hidden;
}
.positioning-marquee {
  position: absolute;
  z-index: 1;
  top: clamp(26px, 4vw, 58px);
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}
.positioning-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: positioning-marquee 30s linear infinite;
}
.positioning-marquee span {
  flex: 0 0 auto;
  padding-right: .32em;
  color: rgba(255, 255, 255, .12);
  font-size: clamp(82px, 10.5vw, 176px);
  font-weight: 850;
  line-height: .84;
  letter-spacing: -.055em;
  white-space: nowrap;
}
@keyframes positioning-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}
.positioning-portrait { position: relative; align-self: start; height: clamp(620px, 42vw, 790px); min-height: 0; margin-top: clamp(38px, 4.5vw, 78px); overflow: hidden; background: #222431; }
.positioning-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10, 11, 20, .88) 100%);
}
.positioning-portrait img { width: calc(100% - 76px); height: calc(100% - 178px); margin: 45px 38px 133px; object-fit: cover; object-position: 50% 18%; display: block; border-radius: 24px; filter: saturate(.78) contrast(1.04); box-shadow: 0 26px 60px rgba(0, 0, 0, .24); }
.portrait-caption { position: absolute; z-index: 2; left: clamp(28px, 4vw, 70px); right: 30px; bottom: 24px; }
.portrait-caption span { display: block; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(29px, 3vw, 46px); }
.portrait-caption small { display: block; margin-top: 7px; color: rgba(255, 255, 255, .58); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.positioning-copy {
  position: relative;
  padding: clamp(58px, 6vw, 100px) clamp(38px, 8vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 90% 16%, rgba(143, 63, 230, .24), transparent 30%),
    radial-gradient(circle at 5% 86%, rgba(255, 107, 71, .12), transparent 30%);
}
.positioning-copy > * { position: relative; z-index: 2; }
.positioning-copy h2 { position: relative; max-width: 940px; margin: 0; font-size: clamp(50px, 5.2vw, 80px); line-height: .94; letter-spacing: -.058em; }
.positioning-copy h2 em { font-family: var(--font-editorial), Georgia, serif; font-weight: 500; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.positioning-lead { max-width: 820px; margin: 28px 0 0; color: #c9cad4; font-size: clamp(17px, 1.25vw, 20px); line-height: 1.65; }
.positioning-points { display: grid; grid-template-columns: repeat(3, 1fr); margin: 30px 0 20px; border-top: 1px solid rgba(255, 255, 255, .14); border-bottom: 1px solid rgba(255, 255, 255, .14); }
.positioning-points > div { min-height: 118px; padding: 20px 24px 18px 0; border-right: 1px solid rgba(255, 255, 255, .14); }
.positioning-points > div + div { padding-left: 24px; }
.positioning-points > div:last-child { border-right: 0; }
.positioning-points strong { display: block; color: #d8c3ff; font-family: var(--font-editorial), Georgia, serif; font-size: 25px; font-weight: 500; }
.positioning-points span { display: block; margin-top: 12px; color: #9496a4; font-size: 11px; line-height: 1.65; }
.positioning-statement { max-width: 790px; margin: 0 0 30px; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(26px, 2.35vw, 36px); line-height: 1.16; }

.manifest {
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 111, 79, .14), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(103, 81, 255, .14), transparent 36%),
    #fff;
}

.service-card:nth-child(2) { background: #f0eafa; }
.service-card:nth-child(4) { background: #f7ece7; }
.service-card:nth-child(7) { color: white; background: linear-gradient(135deg, #17182a, #2d1a3c); }
.service-card:nth-child(7) > p { color: #bebfca; }
.service-card:nth-child(7) li { color: #d6cce1; border-color: rgba(255, 255, 255, .17); }
.service-card:nth-child(7):hover { background: linear-gradient(135deg, #1b1c31, #342044); }
.service-card:nth-child(8) { background: linear-gradient(112deg, #ebe7ff 0%, #f7ece7 100%); }

.rag-home {
  padding-block: clamp(100px, 11vw, 178px);
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(84, 89, 255, .2), transparent 30%),
    radial-gradient(circle at 15% 90%, rgba(225, 56, 163, .15), transparent 30%),
    #090b14;
  overflow: hidden;
}
.rag-home-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 8vw, 130px); align-items: center; }
.rag-copy h2 { margin: 0; font-size: clamp(53px, 6.2vw, 92px); line-height: .9; letter-spacing: -.064em; }
.rag-copy h2 span { color: #bba8ff; font-family: var(--font-editorial), Georgia, serif; font-weight: 500; }
.rag-lead { max-width: 680px; margin: 38px 0 34px; color: #b9bbc8; font-size: 15px; line-height: 1.78; }
.rag-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 38px; }
.rag-benefits span { padding: 9px 12px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; color: #d4d5df; font-size: 10px; }
.rag-stage { min-width: 0; }
.rag-pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; margin-bottom: 20px; }
.rag-pipeline div { min-height: 116px; padding: 16px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 15px; background: rgba(255, 255, 255, .055); backdrop-filter: blur(10px); }
.rag-pipeline b { display: block; margin-bottom: 20px; color: #9978ff; font-size: 9px; }
.rag-pipeline strong { display: block; font-size: 13px; }
.rag-pipeline small { display: block; margin-top: 7px; color: #858896; font-size: 8px; line-height: 1.45; }
.rag-pipeline i { color: #805dff; font-size: 14px; font-style: normal; }
.rag-dashboard { margin: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .13); border-radius: 24px; background: white; box-shadow: 0 38px 90px rgba(0, 0, 0, .38); }
.rag-dashboard > img { width: 100%; display: block; }
.rag-dashboard figcaption { min-height: 90px; padding: 13px 22px; display: grid; grid-template-columns: 150px 1fr; gap: 22px; align-items: center; color: #545663; background: #fff; }
.rag-dashboard figcaption img { width: 145px; }
.rag-dashboard figcaption span { font-size: 10px; line-height: 1.55; }

.inspiration-interlude {
  width: min(1300px, calc(100% - 64px));
  margin: clamp(28px, 4vw, 72px) auto clamp(72px, 8vw, 132px);
}
.inspiration-visual {
  position: relative;
  height: clamp(560px, 50vw, 760px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(28px, 3vw, 44px);
  background: #16131b;
  box-shadow: 0 36px 100px rgba(45, 27, 57, .18);
}
.inspiration-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 11, 18, .8) 0%, rgba(12, 11, 18, .48) 42%, rgba(12, 11, 18, .05) 72%),
    linear-gradient(0deg, rgba(12, 11, 18, .62), transparent 58%);
  pointer-events: none;
}
.inspiration-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.inspiration-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(34px, 5vw, 76px);
  color: white;
}
.inspiration-visual figcaption h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: .96;
  letter-spacing: -.056em;
  text-wrap: balance;
}
.inspiration-visual figcaption h2 em {
  color: #efceff;
  font-family: var(--font-editorial), Georgia, serif;
  font-weight: 500;
}

.growth-interlude { margin-block: clamp(30px, 4vw, 68px) clamp(18px, 3vw, 44px); }
.growth-visual {
  position: relative;
  height: clamp(590px, 48vw, 720px);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(28px, 3vw, 42px);
  background: #18151e;
  box-shadow: 0 34px 90px rgba(40, 28, 48, .16);
}
.growth-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.growth-visual figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3.3vw, 50px);
  bottom: clamp(22px, 3.3vw, 50px);
  width: min(620px, calc(100% - 44px));
  padding: clamp(30px, 3.5vw, 52px);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: clamp(22px, 2vw, 30px);
  background: rgba(247, 245, 241, .91);
  box-shadow: 0 24px 60px rgba(17, 15, 22, .22);
  backdrop-filter: blur(18px);
}
.growth-visual figcaption h2 {
  margin: 0;
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: .96;
  letter-spacing: -.056em;
  text-wrap: balance;
}
.growth-visual figcaption h2 em {
  color: #7133c8;
  font-family: var(--font-editorial), Georgia, serif;
  font-weight: 500;
}

.project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 520px; }
.project-card, .project-card:nth-child(n) { grid-column: auto; }
.service-card:nth-child(7) a { color: var(--ink); background: white; }
.service-card:nth-child(7) a span { color: white; background: var(--ink); }

.tech-logo-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 24px; }
.tech-logo-row img { width: 100%; min-width: 0; border: 1px solid var(--line); border-radius: 14px; background: white; filter: grayscale(1); transition: filter .25s ease, transform .25s ease; }
.tech-logo-row img:hover { filter: grayscale(0); transform: translateY(-3px); }

.reviews-section {
  color: white;
  background:
    radial-gradient(circle at 12% 15%, rgba(103, 81, 255, .27), transparent 29%),
    radial-gradient(circle at 92% 88%, rgba(255, 98, 72, .2), transparent 27%),
    #11121d;
  overflow: hidden;
}
.reviews-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(54px, 8vw, 120px); align-items: center; }
.reviews-intro h2 { margin: 20px 0 26px; font-size: clamp(46px, 5.5vw, 76px); line-height: .96; letter-spacing: -.055em; }
.reviews-intro h2 span { font-family: var(--font-editorial), Georgia, serif; font-weight: 500; color: #d9c8ff; }
.reviews-intro > p:not(.eyebrow) { max-width: 620px; color: #adafbd; font-size: 16px; line-height: 1.75; }
.google-score { display: flex; gap: 20px; align-items: center; margin: 34px 0 28px; }
.google-score > strong { font-size: clamp(56px, 6vw, 82px); line-height: .8; letter-spacing: -.06em; }
.google-score div { display: grid; gap: 6px; }
.google-score div span, .review-card-top > span { color: #f8b523; font-size: 18px; letter-spacing: .12em; }
.google-score small { color: #b8bac6; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.featured-review { max-width: 640px; margin: 0 0 30px; padding: 22px 24px; border-left: 3px solid #bc77ff; border-radius: 0 18px 18px 0; color: #e6e2ed; background: rgba(255, 255, 255, .07); font-family: var(--font-editorial), Georgia, serif; font-size: 19px; line-height: 1.35; }
.featured-review footer { display: flex; flex-wrap: wrap; gap: 5px 12px; margin-top: 18px; font-family: var(--font-geist), Arial, sans-serif; }
.featured-review footer strong { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.featured-review footer span { color: #8f919f; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.button-light { color: #161722; background: white; box-shadow: 0 14px 34px rgba(0, 0, 0, .22); }
.review-cards { display: grid; gap: 16px; }
.review-card { min-height: 180px; padding: clamp(26px, 3vw, 40px); border: 1px solid rgba(255, 255, 255, .13); border-radius: 24px; background: rgba(255, 255, 255, .07); backdrop-filter: blur(18px); }
.review-card:nth-child(even) { margin-left: clamp(0px, 5vw, 72px); background: rgba(255, 255, 255, .1); }
.review-card-top { display: flex; justify-content: space-between; align-items: center; }
.review-card-top b { color: rgba(255, 255, 255, .35); font-size: 10px; letter-spacing: .12em; }
.review-card blockquote { max-width: 760px; margin: 26px 0 22px; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(21px, 2vw, 30px); line-height: 1.2; }
.review-card p { margin: 0; display: flex; flex-wrap: wrap; gap: 6px 12px; color: #8f919f; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.review-card p strong { color: #fff; font-size: 11px; }
.review-card p span { color: #8f919f; }

@media (max-width: 1100px) {
  .positioning-section { grid-template-columns: .8fr 1.2fr; }
  .positioning-portrait { height: 700px; margin-top: 58px; }
  .positioning-points { grid-template-columns: 1fr; }
  .positioning-points > div { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .positioning-points > div + div { padding-left: 0; }
  .positioning-points > div:last-child { border-bottom: 0; }
  .rag-home-grid { grid-template-columns: 1fr; }
  .rag-copy { max-width: 900px; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-logo-row { grid-template-columns: repeat(3, 1fr); }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-intro { max-width: 760px; }
}

@media (max-width: 800px) {
  .sector-showcase-grid { grid-template-columns: 1fr; gap: 34px; }
  .positioning-section { min-height: 0; grid-template-columns: 1fr; }
  .positioning-portrait { height: 560px; min-height: 0; margin-top: 0; }
  .positioning-copy { padding: 80px 24px; }
  .positioning-marquee { top: 34px; }
  .positioning-marquee span { font-size: clamp(72px, 23vw, 120px); color: rgba(255, 255, 255, .15); }
  .positioning-copy h2 { font-size: clamp(48px, 14vw, 74px); }
  .positioning-lead { font-size: 17px; }
  .rag-home-grid { width: min(100% - 36px, 660px); }
  .rag-pipeline { grid-template-columns: 1fr; }
  .rag-pipeline i { rotate: 90deg; justify-self: center; }
  .rag-pipeline div { min-height: 0; }
  .rag-pipeline b { margin-bottom: 12px; }
  .rag-dashboard { transform: none; }
  .rag-dashboard figcaption { grid-template-columns: 1fr; gap: 4px; }
  .inspiration-interlude { width: calc(100% - 24px); margin-block: 24px 84px; }
  .inspiration-visual { height: 610px; border-radius: 28px; }
  .inspiration-visual > img { object-position: 57% center; }
  .inspiration-visual::after {
    background:
      linear-gradient(0deg, rgba(12, 11, 18, .86) 0%, rgba(12, 11, 18, .42) 58%, rgba(12, 11, 18, .08) 100%);
  }
  .inspiration-visual figcaption { padding: 32px 26px; }
  .inspiration-visual figcaption h2 { font-size: clamp(42px, 12vw, 64px); }
  .growth-interlude { width: calc(100% - 24px); margin-block: 24px 12px; }
  .growth-visual { height: 640px; border-radius: 28px; }
  .growth-visual > img { object-position: 68% center; }
  .growth-visual figcaption { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 28px 24px; border-radius: 22px; }
  .growth-visual figcaption h2 { font-size: clamp(39px, 10.8vw, 54px); }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 470px; }
  .project-card, .project-card:nth-child(n) { grid-column: auto; }
  .tech-logo-row { grid-template-columns: repeat(2, 1fr); }
  .review-card:nth-child(even) { margin-left: 0; }
}

@media (max-width: 470px) {
  .hero-eyebrow { width: 100%; display: grid; grid-template-columns: 9px 1fr; gap: 2px 10px; padding: 12px 14px; border-radius: 18px; }
  .hero-eyebrow::before { grid-row: 1 / span 2; align-self: start; margin-top: 5px; }
  .hero-eyebrow strong, .hero-eyebrow span { grid-column: 2; }
  .hero-eyebrow span::before { display: none; }
  .sector-showcase { padding-block: 48px; }
  .sector-showcase-title h2 { font-size: 40px; }
  .positioning-portrait { height: 480px; }
  .positioning-portrait img { width: calc(100% - 48px); height: calc(100% - 142px); margin: 34px 24px 108px; }
  .portrait-caption { left: 24px; bottom: 28px; }
  .positioning-points { margin-block: 36px 30px; }
  .positioning-statement { font-size: 28px; }
  .rag-copy h2 { font-size: 48px; }
  .rag-dashboard figcaption img { width: 125px; }
}

@media (prefers-reduced-motion: reduce) {
  .positioning-marquee-track { animation-play-state: paused; }
}

/* Secondary expertise pages */
.detail-page { --detail-accent: #8d35e8; overflow: hidden; }
.theme-blue { --detail-accent: #5267ff; }
.theme-cyan { --detail-accent: #00a9c7; }
.theme-orange { --detail-accent: #ff7446; }
.theme-coral { --detail-accent: #e45d74; }
.theme-green { --detail-accent: #249c78; }
.theme-night { --detail-accent: #a86cff; }
.detail-site-header .desktop-nav { justify-content: flex-end; }
.detail-hero { min-height: calc(100svh - 88px); padding-block: 64px 72px; display: grid; grid-template-columns: 1.08fr .72fr; gap: clamp(55px, 8vw, 130px); align-items: center; }
.detail-back { display: inline-flex; margin-bottom: 50px; color: #858690; font-size: 11px; font-weight: 650; }
.detail-hero-copy h1 { max-width: 980px; margin: 0; font-size: clamp(58px, 6.7vw, 106px); line-height: .9; letter-spacing: -.068em; }
.detail-intro { max-width: 820px; margin: 38px 0 0; color: var(--muted); font-size: clamp(17px, 1.5vw, 22px); line-height: 1.65; }
.detail-actions { display: flex; align-items: center; gap: 28px; margin-top: 44px; }
.detail-hero-visual { position: relative; height: min(690px, calc(100svh - 190px)); min-height: 530px; margin: 0; overflow: hidden; border-radius: 30px; background: #fff; box-shadow: 0 34px 90px rgba(23, 24, 33, .14); }
.detail-hero-visual::before { content: ""; position: absolute; z-index: 2; inset: 0; border: 1px solid rgba(255, 255, 255, .5); border-radius: inherit; pointer-events: none; }
.detail-hero-visual > img { width: 100%; min-height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 1.4s ease-out; }
.detail-hero-visual:hover > img { transform: translateY(calc(-100% + 690px)); transition-duration: 28s; transition-timing-function: linear; }
.slug-strategie-marketing .detail-hero-visual > img, .slug-a-propos .detail-hero-visual > img { height: 100%; object-position: 50% 32%; }
.slug-strategie-marketing .detail-hero-visual:hover > img, .slug-a-propos .detail-hero-visual:hover > img { transform: none; }
.slug-ia-rag-recherche-vectorielle .detail-hero-visual > img { height: 100%; padding: 28px; object-fit: contain; }
.slug-ia-rag-recherche-vectorielle .detail-hero-visual:hover > img { transform: none; }
.detail-hero-visual figcaption { position: absolute; z-index: 3; left: 18px; right: 18px; bottom: 18px; padding: 13px 16px; border-radius: 12px; color: white; background: rgba(14, 15, 25, .78); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.detail-statement { padding-block: clamp(80px, 9vw, 145px); color: white; background: var(--detail-accent); }
.theme-violet .detail-statement { background: linear-gradient(120deg, #5e35df, #b134cf); }
.theme-blue .detail-statement { background: linear-gradient(120deg, #243ac2, #6a56f2); }
.theme-cyan .detail-statement { background: linear-gradient(120deg, #007e9e, #0fb7a2); }
.theme-orange .detail-statement { background: linear-gradient(120deg, #d64b28, #ff8a43); }
.theme-coral .detail-statement { background: linear-gradient(120deg, #bf365b, #ee796d); }
.theme-green .detail-statement { background: linear-gradient(120deg, #107358, #3aaf78); }
.theme-night .detail-statement { background: linear-gradient(120deg, #121426, #33204c); }
.detail-statement p { max-width: 1160px; margin: 0; font-family: var(--font-editorial), Georgia, serif; font-size: clamp(38px, 5.2vw, 74px); line-height: 1.02; }
.detail-pillars .section-heading h2 { max-width: 850px; }
.detail-pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 70px; border: 1px solid var(--line); border-right: 0; border-bottom: 0; }
.detail-pillar-grid article { min-height: 330px; padding: clamp(34px, 4.5vw, 66px); display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .38); transition: background .25s ease, transform .25s ease; }
.detail-pillar-grid article:hover { z-index: 2; background: #fff; transform: translateY(-4px); }
.detail-pillar-grid span { color: var(--detail-accent); font-size: 10px; font-weight: 750; }
.detail-pillar-grid h3 { margin: 52px 0 18px; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.045em; }
.detail-pillar-grid p { max-width: 520px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.detail-process { padding-block: clamp(95px, 10vw, 160px); color: white; background: #10121f; }
.detail-process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 160px); }
.detail-process h2 { position: sticky; top: 140px; margin: 0; font-size: clamp(48px, 5.8vw, 82px); line-height: .94; letter-spacing: -.06em; }
.detail-process h2 em { display: block; color: #c4aeff; font-family: var(--font-editorial), Georgia, serif; font-weight: 500; }
.detail-process ol { margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .15); list-style: none; }
.detail-process li { min-height: 158px; padding: 30px 0; display: grid; grid-template-columns: 65px 1fr; gap: 20px; align-items: start; border-bottom: 1px solid rgba(255, 255, 255, .15); }
.detail-process li > span { color: #b383ff; font-size: 10px; }
.detail-process h3 { margin: 0 0 12px; font-size: 28px; }
.detail-process li p { max-width: 620px; margin: 0; color: #9b9daa; font-size: 12px; line-height: 1.68; }
.detail-outcomes { text-align: center; }
.detail-outcomes > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 42px; }
.detail-outcomes span { padding: 17px 23px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 13px; box-shadow: 0 10px 30px rgba(23, 24, 33, .05); }
.detail-final { margin-top: 20px; }

.detail-rag-map { padding-block: clamp(100px, 10vw, 160px); color: white; background: #090b14; }
.detail-rag-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; align-items: start; }
.detail-rag-heading h2 { margin: 0; font-size: clamp(53px, 6.3vw, 90px); line-height: .92; letter-spacing: -.06em; }
.detail-rag-heading h2 span { color: #bba8ff; font-family: var(--font-editorial), Georgia, serif; font-weight: 500; }
.detail-rag-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin: 80px 0 100px; border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .12); }
.detail-rag-flow article { min-height: 245px; padding: 30px 24px; background: #11131f; }
.detail-rag-flow span { color: #9b75ff; font-size: 9px; }
.detail-rag-flow h3 { margin: 60px 0 14px; font-size: 22px; }
.detail-rag-flow p { margin: 0; color: #8f919f; font-size: 10px; line-height: 1.65; }
.pinecone-proof { display: grid; grid-template-columns: 1.12fr .88fr; gap: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .13); border-radius: 28px; background: #fff; }
.pinecone-proof > img { width: 100%; height: 100%; object-fit: cover; }
.pinecone-proof > div { padding: clamp(40px, 5vw, 72px); color: var(--ink); }
.pinecone-proof > div > img { width: 170px; margin-bottom: 30px; }
.pinecone-proof h3 { margin: 0 0 22px; font-size: clamp(32px, 3.6vw, 52px); line-height: 1; letter-spacing: -.05em; }
.pinecone-proof p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.pinecone-proof ul { margin: 32px 0 0; padding: 0; list-style: none; }
.pinecone-proof li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 11px; }
.pinecone-proof li::before { content: "✓"; margin-right: 10px; color: #714af4; }
.rag-usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 70px; }
.rag-usecase-grid article { min-height: 290px; padding: 32px; border-radius: 22px; background: #fff; box-shadow: 0 20px 60px rgba(23, 24, 33, .07); }
.rag-usecase-grid span { color: #884bed; font-size: 10px; }
.rag-usecase-grid h3 { margin: 80px 0 15px; font-size: 23px; }
.rag-usecase-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.detail-portfolio { padding-top: 110px; }
.portfolio-wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.portfolio-wall article, .portfolio-wall article:nth-child(n) { grid-column: auto; padding: 14px; border-radius: 22px; background: #fff; box-shadow: 0 18px 50px rgba(23, 24, 33, .07); }
.portfolio-wall article > div { height: 440px; overflow: hidden; border-radius: 13px; background: #ddd; }
.portfolio-wall article img { width: 100%; min-height: 100%; object-fit: cover; object-position: top; transition: transform 1.4s ease-out; }
.portfolio-wall article:hover img { transform: translateY(calc(-100% + 440px)); transition-duration: 24s; transition-timing-function: linear; }
.portfolio-wall h3 { margin: 20px 8px 5px; font-size: 18px; }
.portfolio-wall p { margin: 0 8px 10px; color: var(--muted); font-size: 10px; }

@media (max-width: 1000px) {
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero-copy { max-width: 950px; }
  .detail-hero-visual { width: min(100%, 720px); height: 650px; justify-self: end; }
  .detail-hero-visual:hover > img { transform: none; }
  .detail-rag-flow { grid-template-columns: repeat(2, 1fr); }
  .detail-rag-flow article:last-child { grid-column: span 2; }
  .pinecone-proof { grid-template-columns: 1fr; }
  .rag-usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
  .detail-hero { min-height: 0; padding-block: 54px 74px; gap: 54px; }
  .detail-back { margin-bottom: 38px; }
  .detail-hero-copy h1 { font-size: clamp(50px, 14vw, 78px); }
  .detail-actions { align-items: flex-start; flex-direction: column; }
  .detail-hero-visual { height: 560px; min-height: 0; }
  .detail-pillar-grid, .detail-process-grid, .detail-rag-heading { grid-template-columns: 1fr; }
  .detail-pillar-grid article { min-height: 290px; }
  .detail-process h2 { position: static; margin-bottom: 55px; }
  .detail-rag-flow { grid-template-columns: 1fr; margin-block: 56px 70px; }
  .detail-rag-flow article, .detail-rag-flow article:last-child { grid-column: auto; min-height: 190px; }
  .detail-rag-flow h3 { margin-top: 35px; }
  .rag-usecase-grid { grid-template-columns: 1fr; }
  .rag-usecase-grid article { min-height: 240px; }
  .rag-usecase-grid h3 { margin-top: 55px; }
  .portfolio-wall { grid-template-columns: 1fr; }
  .portfolio-wall article, .portfolio-wall article:nth-child(n) { grid-column: auto; }
  .portfolio-wall article > div { height: 470px; }
  .portfolio-wall article:hover img { transform: none; }
}

@media (max-width: 470px) {
  .detail-hero-visual { height: 500px; border-radius: 22px; }
  .detail-intro { font-size: 16px; }
  .detail-pillar-grid { border-left: 0; }
  .detail-pillar-grid article { padding: 32px 24px; border-left: 1px solid var(--line); }
  .detail-statement p { font-size: 38px; }
  .pinecone-proof > div { padding: 38px 25px; }
  .portfolio-wall article > div { height: 430px; }
}

/* Intégration WordPress : priorité au gabarit Frametonic sur la page shortcode. */
body.ft-home-page .frametonic-site section[id] { scroll-margin-top: 112px; }
body.admin-bar.ft-home-page .frametonic-site .site-header { top: 32px; }

@media (max-width: 782px) {
  body.admin-bar.ft-home-page .frametonic-site .site-header { top: 46px; }
}

/* v1.2 — Harmonisation des légendes des 3 visuels éditoriaux */
.strategy-services-visual figcaption,
.inspiration-visual figcaption,
.growth-visual figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 3vw, 44px);
  right: auto;
  bottom: clamp(20px, 3vw, 44px);
  width: min(760px, calc(100% - 40px));
  max-width: calc(100% - 40px);
  padding: clamp(22px, 2.5vw, 34px) clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: clamp(18px, 2vw, 24px);
  color: #fff;
  background: rgba(18, 17, 22, .72);
  box-shadow: 0 18px 50px rgba(15, 13, 17, .24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.strategy-services-visual figcaption span,
.inspiration-visual figcaption .eyebrow,
.growth-visual figcaption .eyebrow {
  display: block;
  margin: 0 0 10px;
  color: #e7d7ff;
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 10px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.strategy-services-visual figcaption strong,
.inspiration-visual figcaption h2,
.growth-visual figcaption h2 {
  display: block;
  max-width: 690px;
  margin: 0;
  color: #fff;
  font-family: var(--font-editorial), Georgia, serif;
  font-size: clamp(30px, 3.25vw, 48px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.inspiration-visual figcaption h2 em,
.growth-visual figcaption h2 em {
  color: #efceff;
  font-family: inherit;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .strategy-services-visual figcaption,
  .inspiration-visual figcaption,
  .growth-visual figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
    padding: 20px 20px 22px;
    border-radius: 20px;
  }
  .strategy-services-visual figcaption strong,
  .inspiration-visual figcaption h2,
  .growth-visual figcaption h2 {
    font-size: clamp(28px, 8.8vw, 42px);
  }
}

@media (max-width: 470px) {
  .hero-system::before { top: 12%; height: 24%; }
  .hero-system::after { bottom: 12%; height: 28%; }
}

/* V13 feedback refinements */
.proof-strip strong.proof-countries{font-size:clamp(24px,2vw,31px)}
.map-label{padding:17px 23px;font-size:14px}.intl-copy li{padding:11px 16px;font-size:12px;font-weight:650}
.featured-review-card{margin:0 0 30px;max-width:640px}
.conviction-secondary{font-weight:650!important;font-size:16px!important;opacity:.78;margin-bottom:24px!important}.conviction-indent{margin:28px 0 34px 28px!important;padding-left:20px;border-left:2px solid rgba(255,255,255,.24);max-width:82%}.conviction-dark h2{font-size:clamp(46px,5.1vw,72px)}
.tools-logo-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;margin-top:68px;border:1px solid var(--line);background:var(--line)}.tools-logo-grid figure{margin:0;min-height:150px;padding:26px;display:flex;align-items:center;justify-content:center;background:#fff;overflow:hidden}.tools-logo-grid img{display:block;max-width:100%;width:auto;height:auto;max-height:72px;object-fit:contain}.tech-logo-row{margin-top:1px}
@media(max-width:800px){.tools-logo-grid{grid-template-columns:repeat(2,1fr)}.tools-logo-grid figure{min-height:120px;padding:20px}.tools-logo-grid img{max-height:58px}.map-label{padding:14px 19px;font-size:12px}.intl-copy li{padding:10px 14px;font-size:11px}}

/* V15 — unified tools ecosystem: same pill treatment as original AI/CRM logos */
.tools .tools-logo-grid{display:none!important}
.tools .tech-logo-row.tech-logo-row-unified{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
  margin-top:68px;
  border:0;
  background:transparent;
}
.tools .tech-logo-row.tech-logo-row-unified img{
  box-sizing:border-box;
  width:100%;
  height:98px;
  min-width:0;
  padding:22px 26px;
  object-fit:contain;
  object-position:center;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  filter:grayscale(1);
  opacity:.82;
  transition:filter .25s ease,opacity .25s ease,transform .25s ease,box-shadow .25s ease;
}
.tools .tech-logo-row.tech-logo-row-unified img:hover{
  filter:grayscale(0);
  opacity:1;
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(24,18,30,.08);
}
@media(max-width:980px){.tools .tech-logo-row.tech-logo-row-unified{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:620px){.tools .tech-logo-row.tech-logo-row-unified{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.tools .tech-logo-row.tech-logo-row-unified img{height:88px;padding:19px 20px}}

/* V16 — international map labels */
@media (max-width: 720px) { .map-label { padding: 15px 21px; font-size: 13px; } }

/* V17 — ordre des outils + dernière ligne centrée, gabarit identique */
@media (min-width:981px){
  .tools .tech-logo-row.tech-logo-row-unified > img:nth-last-child(3){grid-column:2}
  .tools .tech-logo-row.tech-logo-row-unified > img:nth-last-child(2){grid-column:3}
  .tools .tech-logo-row.tech-logo-row-unified > img:nth-last-child(1){grid-column:4}
}
@media (max-width:980px){
  .tools .tech-logo-row.tech-logo-row-unified > img{grid-column:auto!important}
}
\n\n/* V18 — logos recadrés/normalisés : aucun fond image, taille visuelle homogène */\n@media (min-width:981px){\n  .tools .tech-logo-row.tech-logo-row-unified{\n    grid-template-columns:repeat(10,minmax(0,1fr));\n    gap:12px;\n  }\n  .tools .tech-logo-row.tech-logo-row-unified > img{\n    grid-column:span 2!important;\n  }\n  /* Réseaux sociaux sur une ligne dédiée, centrée, même gabarit */\n  .tools .tech-logo-row.tech-logo-row-unified > img:nth-last-child(4){grid-column:2 / span 2!important;}\n  .tools .tech-logo-row.tech-logo-row-unified > img:nth-last-child(3){grid-column:4 / span 2!important;}\n  .tools .tech-logo-row.tech-logo-row-unified > img:nth-last-child(2){grid-column:6 / span 2!important;}\n  .tools .tech-logo-row.tech-logo-row-unified > img:nth-last-child(1){grid-column:8 / span 2!important;}\n}\n.tools .tech-logo-row.tech-logo-row-unified img{\n  height:104px;\n  padding:18px 22px;\n  background:#fff;\n  object-fit:contain;\n  object-position:center;\n  filter:grayscale(1);\n  opacity:.84;\n}\n.tools .tech-logo-row.tech-logo-row-unified img:hover{\n  filter:grayscale(0);\n  opacity:1;\n}\n@media (max-width:620px){\n  .tools .tech-logo-row.tech-logo-row-unified img{height:92px;padding:16px 18px;}\n}\n
/* V19 — sémantique SEO/GEO indépendante de la hiérarchie visuelle */
.hero-positioning-title { margin: 0; font: inherit; font-size: inherit; line-height: inherit; letter-spacing: inherit; text-transform: none; color: #6231c8; font-weight: 760; display: inline-flex; align-items: center; }
.hero-positioning-title::before { content: "—"; margin-right: 10px; color: #aaa3b5; font-weight: 500; }
.tools-semantic-copy { max-width: 850px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.final-cta-main > h2 { font-size: clamp(18px, 2vw, 24px); line-height: 1.2; letter-spacing: -.025em; margin-bottom: 18px; opacity: .78; }
.final-cta-display { max-width: 1000px; margin: 0 auto 32px; font-size: clamp(50px, 6.8vw, 96px); line-height: .91; letter-spacing: -.062em; font-weight: 760; }
@media (max-width: 767px) {
  .hero-positioning-title { display: block; }
  .hero-positioning-title::before { display: none; }
  .final-cta-display { font-size: clamp(46px, 14vw, 72px); }
}

/* V20 — le H1 reste sémantique uniquement : rendu visuel strictement identique à l'ancienne pastille */
.hero .hero-eyebrow {
  width: fit-content !important;
  max-width: none !important;
}
.hero .hero-eyebrow .hero-positioning-title {
  all: unset;
  display: inline-flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #6231c8 !important;
  font-family: var(--font-sans), Arial, sans-serif !important;
  font-size: inherit !important;
  font-style: normal !important;
  font-weight: 760 !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: none !important;
  white-space: nowrap !important;
}
.hero .hero-eyebrow .hero-positioning-title::before {
  content: "—";
  display: inline-block !important;
  margin: 0 10px 0 0 !important;
  color: #aaa3b5 !important;
  font: inherit !important;
  font-weight: 500 !important;
}
@media (max-width: 767px) {
  .hero .hero-eyebrow { width: 100% !important; max-width: 100% !important; }
  .hero .hero-eyebrow .hero-positioning-title {
    display: block !important;
    white-space: normal !important;
  }
  .hero .hero-eyebrow .hero-positioning-title::before { display: none !important; }
}

/* V32 — largeur de contenu globale unique : 1300px */
:root { --ft-content-width: 1300px; --ft-content-gutter: 32px; }
.section-shell,
.inspiration-interlude,
.growth-interlude,
.rag-home-grid,
.detail-hero,
.detail-statement,
.detail-pillars,
.detail-process,
.detail-proof,
.reviews-section,
.positioning-section,
.tools.section-shell,
.services.section-shell {
  width: min(var(--ft-content-width), calc(100% - (var(--ft-content-gutter) * 2))) !important;
  max-width: var(--ft-content-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.inspiration-interlude { width: min(var(--ft-content-width), calc(100% - 64px)) !important; }
@media (max-width: 800px) {
  :root { --ft-content-gutter: 18px; }
  .section-shell,
  .inspiration-interlude,
  .growth-interlude,
  .rag-home-grid,
  .detail-hero,
  .detail-statement,
  .detail-pillars,
  .detail-process,
  .detail-proof,
  .reviews-section,
  .positioning-section,
  .tools.section-shell,
  .services.section-shell {
    width: min(660px, calc(100% - 36px)) !important;
  }
}


/* V33 — 1300px RÉELS : indépendant du conteneur Uncode parent */
@media (min-width: 1365px) {
  .frametonic-home .section-shell,
  .frametonic-home .inspiration-interlude,
  .frametonic-home .growth-interlude,
  .frametonic-home .rag-home-grid,
  .frametonic-home .detail-hero,
  .frametonic-home .detail-statement,
  .frametonic-home .detail-pillars,
  .frametonic-home .detail-process,
  .frametonic-home .detail-proof,
  .frametonic-home .reviews-section,
  .frametonic-home .positioning-section,
  .frametonic-home .tools.section-shell,
  .frametonic-home .services.section-shell {
    box-sizing: border-box !important;
    width: 1300px !important;
    min-width: 1300px !important;
    max-width: 1300px !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 801px) and (max-width: 1364px) {
  .frametonic-home .section-shell,
  .frametonic-home .inspiration-interlude,
  .frametonic-home .growth-interlude,
  .frametonic-home .rag-home-grid,
  .frametonic-home .detail-hero,
  .frametonic-home .detail-statement,
  .frametonic-home .detail-pillars,
  .frametonic-home .detail-process,
  .frametonic-home .detail-proof,
  .frametonic-home .reviews-section,
  .frametonic-home .positioning-section,
  .frametonic-home .tools.section-shell,
  .frametonic-home .services.section-shell {
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
