/* ============================================================
   VELOX AI — stylesheet
   Parti pris : le site est un chronomètre.
   Chaque transition utilise l'easing mécanique cubic-bezier(.16,1,.3,1)
   ============================================================ */

:root {
  --bg: #0E0E0E;
  --fg: #F2EDE2;
  --accent: #C8331C;
  --accent-ink: #F2EDE2;
  --muted: #8A857B;
  --line: rgba(242, 237, 226, 0.12);
  --line-strong: rgba(242, 237, 226, 0.28);
  --display: "Fraunces", "Times New Roman", serif;
  --body: "Inter Tight", "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-mech: cubic-bezier(.7, 0, .3, 1);
  --vh: 1vh;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--fg); }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: auto;
}
body {
  font-family: var(--body);
  font-feature-settings: "ss01", "cv11", "tnum";
  font-variation-settings: "wght" 420;
  line-height: 1.45;
  overflow-x: hidden;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: none; }
a { color: inherit; text-decoration: none; cursor: none; }
::selection { background: var(--accent); color: var(--fg); }

/* ------- Type scales ------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0, "wght" 400;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-wrap: balance;
}
.display-italic { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1, "wght" 400; }
.mono { font-family: var(--mono); font-weight: 400; letter-spacing: 0.02em; text-transform: uppercase; font-size: 11px; }
.tabnum { font-variant-numeric: tabular-nums; }

/* ------- Layout ------- */
.container { width: 100%; padding: 0 clamp(20px, 4vw, 56px); }
.grid12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 24px); }

/* ------- Cursor ------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fg);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-100px, -100px, 0);
  transition: width .35s var(--ease), height .35s var(--ease), background .2s;
}
.cursor.hover {
  width: 56px; height: 56px;
  background: var(--accent);
  mix-blend-mode: normal;
}
.cursor.hover-dark { background: var(--fg); }
.cursor-label {
  position: fixed;
  top: 0; left: 0;
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 10000;
  transform: translate3d(-100px,-100px,0);
  opacity: 0;
  transition: opacity .2s;
  white-space: nowrap;
}
.cursor-label.visible { opacity: 1; }

/* ------- Progress bar ------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--line);
  z-index: 200;
}
.progress-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0%;
  background: var(--accent);
  transform-origin: left;
  transition: width .1s linear;
}

/* ------- Nav ------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 22px clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  z-index: 150;
  mix-blend-mode: difference;
  color: var(--fg);
}
.nav a, .nav button { color: var(--fg); }
.wordmark {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "wght" 500, "SOFT" 0;
  font-size: 22px;
  letter-spacing: -0.04em;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.wordmark .dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  margin-left: 2px;
  transform: translateY(-1px);
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: currentColor;
  transition: right .5s var(--ease);
}
.nav-link:hover::after { right: 0; }

.cta-pill {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.cta-pill:hover { background: var(--accent); border-color: var(--accent); color: var(--fg); }
.cta-pill .bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); transition: background .35s var(--ease); }
.cta-pill:hover .bullet { background: var(--fg); }

/* ------- Section chrome ------- */
section { position: relative; }
.section-index {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.section-index::before {
  content: ""; width: 28px; height: 1px; background: var(--line-strong);
}

/* ------- Reveal primitives ------- */
.split-line { overflow: hidden; display: block; }
.split-line > span { display: inline-block; transform: translate3d(0, 110%, 0); transition: transform 1s var(--ease); }
.split-line.in > span { transform: translate3d(0, 0, 0); }
.fade-up { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fade-up.in { opacity: 1; transform: translate3d(0, 0, 0); }

/* ------- Hero ------- */
.hero {
  min-height: 100vh;
  padding: 120px clamp(20px, 4vw, 56px) 80px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; margin-bottom: 4vh;
}
.hero-meta-block { display: flex; flex-direction: column; gap: 6px; max-width: 280px; }
.hero-meta-block span { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero-meta-block strong { font-family: var(--body); font-weight: 500; font-size: 13px; color: var(--fg); letter-spacing: 0; }

.hero-type {
  position: relative;
  z-index: 2;
}
.hero-type h1 {
  font-family: var(--display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 0, "WONK" 0;
  font-size: clamp(72px, 17vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.hero-type h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1;
  color: var(--accent);
}

.velox-word {
  display: block;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(100px, 22vw, 360px);
  line-height: 0.82;
  letter-spacing: -0.065em;
  white-space: nowrap;
  transform-origin: left center;
  will-change: font-variation-settings, transform;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  padding-top: 6vh;
}
.hero-sub {
  max-width: 520px;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.4;
  color: var(--fg);
}
.hero-sub em { font-family: var(--display); font-style: italic; font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1, "wght" 400; color: var(--accent); font-size: 1.05em; }

.hero-stats {
  display: flex; justify-content: flex-end; gap: 48px;
  align-items: flex-end;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.hero-stat .n { font-family: var(--display); font-size: 44px; font-weight: 400; font-variation-settings: "opsz" 144, "wght" 500; letter-spacing: -0.04em; }
.hero-stat .l { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* Chronograph */
.chrono {
  position: absolute;
  right: -14vw;
  top: 8vh;
  width: 58vw;
  height: 58vw;
  max-width: 900px; max-height: 900px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
  mix-blend-mode: screen;
}
.chrono svg { width: 100%; height: 100%; }
.chrono-tick { stroke: var(--fg); opacity: .35; }
.chrono-tick.major { opacity: .9; }
.chrono-label { fill: var(--fg); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px; left: clamp(20px, 4vw, 56px);
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  color: var(--muted);
}
.scroll-hint .line {
  display: block; width: 42px; height: 1px; background: var(--fg); opacity: .4;
  animation: hintLine 2.2s var(--ease) infinite;
}
@keyframes hintLine { 0%,100% { transform: translateX(0); opacity: .4; } 50% { transform: translateX(10px); opacity: .9; } }

/* ------- Hero imagery ------- */
.hero-image {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  top: 16vh;
  width: clamp(200px, 22vw, 360px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  z-index: 2;
  border-radius: 2px;
  filter: grayscale(0.4) contrast(1.05);
  transition: filter .9s var(--ease);
}
.hero-image:hover { filter: grayscale(0) contrast(1.05); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 1.2s var(--ease); }
.hero-image:hover img { transform: scale(1.1); }
.hero-image .tag {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg);
  mix-blend-mode: difference;
}

/* ------- Founder / CEO ------- */
.founder {
  padding: 160px 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.founder-grid {
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #1A1815;
  overflow: hidden;
  border-radius: 2px;
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.6) contrast(1.05) brightness(.95);
  transition: filter 1s var(--ease), transform 1.2s var(--ease);
}
.founder-photo:hover img { filter: grayscale(0) contrast(1.08); transform: scale(1.03); }
.founder-photo .caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg);
  mix-blend-mode: difference;
}
.founder-copy h2 {
  font-family: var(--display); font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(40px, 5.2vw, 80px); line-height: 0.95; letter-spacing: -0.045em;
  text-wrap: balance;
  margin-top: 28px;
}
.founder-copy h2 em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }
.founder-intro {
  margin-top: 28px;
  max-width: 560px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--fg);
  opacity: .85;
}
.founder-quote {
  margin-top: 40px;
  font-family: var(--display); font-weight: 300;
  font-variation-settings: "opsz" 72, "wght" 300;
  font-size: clamp(20px, 1.7vw, 26px); line-height: 1.45; letter-spacing: -0.012em;
  max-width: 640px; text-wrap: balance;
}
.founder-quote em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 72, "wght" 300, "SOFT" 100, "WONK" 1; }
.founder-quote p + p { margin-top: 18px; }
.founder-sign {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
}
.founder-sign .sig {
  font-family: var(--display); font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 100, "WONK" 1;
  font-size: 28px; color: var(--accent);
  letter-spacing: -0.02em;
}
.founder-sign .role {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
}

/* ------- Real photo case visuals ------- */
.case-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.3) contrast(1.05);
  transition: filter .8s var(--ease), transform 1s var(--ease);
}
.case-item:hover .case-visual img { filter: grayscale(0) contrast(1.08); transform: scale(1.04); }
.case-visual .overlay-tag {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg); mix-blend-mode: difference;
}

/* Testimonial real avatars */
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.5); transition: filter .6s var(--ease); }
.testimonial:hover .testimonial-avatar img { filter: grayscale(0); }

/* ------- Trust / Clients bar ------- */
.trust {
  padding: 80px 0 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trust-head {
  padding: 0 clamp(20px, 4vw, 56px) 48px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  flex-wrap: wrap;
}
.trust-head h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px); font-weight: 400;
  font-variation-settings: "opsz" 96, "wght" 400;
  letter-spacing: -0.02em;
  max-width: 560px;
}
.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; flex-shrink: 0; gap: 64px; padding-right: 64px; align-items: center; will-change: transform; }
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "wght" 500;
  letter-spacing: -0.03em;
  color: var(--fg);
  white-space: nowrap;
  opacity: .55;
  transition: opacity .4s var(--ease);
}
.logo:hover { opacity: 1; color: var(--accent); }
.logo .mk { width: 10px; height: 10px; background: var(--fg); display: inline-block; border-radius: 2px; }
.logo.alt .mk { border-radius: 50%; }
.logo.alt2 .mk { transform: rotate(45deg); border-radius: 0; }
.logo.alt3 .mk { border-radius: 50%; background: transparent; border: 2px solid var(--fg); }

/* ------- Services ------- */
.services {
  padding: 140px 0 120px;
}
.services-head {
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-bottom: 80px;
}
.services-head h2 {
  font-family: var(--display); font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.05em; line-height: 0.92;
}
.services-head h2 em { font-style: italic; font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; color: var(--accent); }
.services-head p { max-width: 420px; align-self: end; color: var(--muted); font-size: 15px; line-height: 1.55; }

.service-list { border-top: 1px solid var(--line); }
.service-row {
  padding: 36px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 80px minmax(0, 1.2fr) minmax(0, 1fr) 1fr 48px;
  gap: 24px; align-items: center;
  position: relative;
  cursor: none;
  transition: background .5s var(--ease), color .5s var(--ease);
}
.service-row::before {
  content: ""; position: absolute; inset: 0;
  background: var(--accent); transform: scaleY(0); transform-origin: bottom;
  transition: transform .6s var(--ease);
  z-index: -1;
}
.service-row:hover::before { transform: scaleY(1); transform-origin: top; }
.service-row:hover { color: var(--fg); }
.service-row:hover .svc-meta { color: var(--fg); opacity: .85; }
.service-row:hover .svc-arrow { transform: translateX(8px) rotate(-45deg); }
.service-row:hover .svc-preview { opacity: 1; }

.svc-num { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted); }
.svc-title { font-family: var(--display); font-size: clamp(28px, 3.8vw, 56px); font-weight: 400; font-variation-settings: "opsz" 144, "wght" 400; letter-spacing: -0.035em; line-height: 1; }
.svc-meta { color: var(--muted); font-size: 14px; line-height: 1.5; max-width: 420px; }
.svc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.svc-arrow {
  width: 20px; height: 20px; align-self: center; justify-self: end;
  transition: transform .5s var(--ease);
}
.svc-arrow svg { width: 100%; height: 100%; stroke: currentColor; }

.svc-preview {
  position: absolute; right: 12%; top: -40%; width: 240px; height: 320px;
  pointer-events: none; opacity: 0; transition: opacity .4s var(--ease);
  z-index: 2;
}

/* ------- Cases (sticky storytelling) ------- */
.cases {
  padding: 160px 0;
  position: relative;
}
.cases-head {
  padding: 0 clamp(20px, 4vw, 56px) 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.cases-head h2 {
  font-family: var(--display); font-weight: 300; font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.05em; line-height: 0.92;
}
.cases-head h2 em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }

.case-item {
  position: relative;
  min-height: 110vh;
  padding: 6vh clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
}
.case-visual {
  position: sticky; top: 12vh;
  aspect-ratio: 4 / 5;
  background: var(--fg);
  overflow: hidden;
  border-radius: 2px;
}
.case-visual .frame {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  filter: grayscale(0.2);
  transition: filter .8s var(--ease), transform .8s var(--ease);
}
.case-item:hover .case-visual .frame { filter: grayscale(0); transform: scale(1.03); }
.case-copy {
  padding-left: 40px;
  align-self: start;
  padding-top: 10vh;
}
.case-num { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted); }
.case-title {
  font-family: var(--display); font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(36px, 4.5vw, 72px); letter-spacing: -0.04em; line-height: 0.95;
  margin: 16px 0 24px;
}
.case-title em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }
.case-body { color: var(--fg); font-size: 16px; line-height: 1.55; max-width: 460px; margin-bottom: 32px; opacity: .85; }
.case-stats { display: flex; gap: 40px; margin-bottom: 32px; flex-wrap: wrap; }
.case-stats .st { display: flex; flex-direction: column; gap: 2px; }
.case-stats .st .n { font-family: var(--display); font-size: 40px; font-weight: 400; font-variation-settings: "opsz" 144, "wght" 500; letter-spacing: -0.03em; }
.case-stats .st .l { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.case-tags span {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--muted);
}

/* ------- Process / Approche ------- */
.process {
  padding: 160px 0;
  background: var(--fg);
  color: var(--bg);
  --line: rgba(14,14,14,0.12);
  --line-strong: rgba(14,14,14,0.32);
  --muted: #6B645A;
  position: relative;
}
.process .section-index { color: var(--muted); }
.process-head {
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 80px;
}
.process-head h2 {
  font-family: var(--display); font-weight: 300; font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.05em; line-height: 0.92; color: var(--bg);
}
.process-head h2 em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }

.process-steps {
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 0.4fr 1fr 1fr;
  gap: 60px;
  position: relative;
}
.process-sticky {
  position: sticky; top: 20vh;
  align-self: start;
  height: 300px;
}
.process-timer {
  font-family: var(--display); font-variation-settings: "opsz" 144, "wght" 500;
  font-size: clamp(80px, 12vw, 220px);
  letter-spacing: -0.08em; line-height: 0.8;
  color: var(--bg);
}
.process-list { grid-column: 2 / 4; }
.process-step {
  padding: 40px 0;
  border-top: 1px solid var(--line-strong);
  display: grid; grid-template-columns: 0.6fr 1fr; gap: 32px;
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line-strong); }
.process-step-head { display: flex; flex-direction: column; gap: 12px; }
.process-step-num { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted); }
.process-step-title {
  font-family: var(--display); font-weight: 400; font-variation-settings: "opsz" 144, "wght" 400;
  font-size: clamp(28px, 3vw, 44px); letter-spacing: -0.03em; line-height: 1;
}
.process-step-title em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 100, "WONK" 1; }
.process-step-body { color: #2B2620; font-size: 15px; line-height: 1.55; }
.process-step-body ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.process-step-body li { padding-left: 18px; position: relative; font-size: 13px; color: #6B645A; }
.process-step-body li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 1px; background: var(--accent); }

/* ------- Stack technique (magnétique) ------- */
.stack {
  padding: 160px 0;
  overflow: hidden;
}
.stack-head {
  padding: 0 clamp(20px, 4vw, 56px);
  margin-bottom: 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.stack-head h2 {
  font-family: var(--display); font-weight: 300; font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.05em; line-height: 0.92;
}
.stack-head h2 em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }

.stack-cloud {
  padding: 60px clamp(20px, 4vw, 56px);
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: center;
  max-width: 1200px; margin: 0 auto;
}
.tech-pill {
  font-family: var(--mono);
  font-size: clamp(12px, 1vw, 14px); letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--fg);
  transition: color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  will-change: transform;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: none;
}
.tech-pill .d { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: .5; }
.tech-pill:hover { color: var(--accent); border-color: var(--accent); }
.tech-pill.big { font-size: clamp(16px, 1.6vw, 22px); padding: 18px 30px; }
.tech-pill.bigger { font-size: clamp(22px, 2.2vw, 32px); padding: 22px 38px; font-family: var(--display); letter-spacing: -0.02em; text-transform: none; font-variation-settings: "opsz" 96, "wght" 400; }

/* ------- Compteurs résultats ------- */
.results {
  padding: 160px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.results-head {
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 80px;
}
.results-head h2 {
  font-family: var(--display); font-weight: 300; font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.05em; line-height: 0.92;
}
.results-head h2 em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }
.results-head p { color: var(--muted); font-size: 15px; max-width: 380px; align-self: end; }

.results-grid {
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.result {
  padding: 60px 32px 60px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.result:last-child { border-right: 0; }
.result .n {
  font-family: var(--display); font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 500;
  font-size: clamp(56px, 8vw, 140px); letter-spacing: -0.05em; line-height: 0.85;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.result .n .suffix { font-size: 0.4em; font-variation-settings: "opsz" 144, "wght" 400; color: var(--accent); letter-spacing: -0.02em; margin-left: 2px; }
.result .l { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 16px; display: block; }
.result .d { margin-top: 10px; color: var(--fg); opacity: .7; font-size: 13px; line-height: 1.5; max-width: 220px; }

/* ------- Testimonials ------- */
.testimonials {
  padding: 160px 0;
}
.testimonials-head {
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 80px;
}
.testimonials-head h2 {
  font-family: var(--display); font-weight: 300; font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.05em; line-height: 0.92;
}
.testimonials-head h2 em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }

.testimonial-list {
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex; flex-direction: column;
}
.testimonial {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 40px;
  align-items: start;
}
.testimonial:last-child { border-bottom: 1px solid var(--line); }
.testimonial-meta { display: flex; flex-direction: column; gap: 16px; }
.testimonial-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #2B2620);
  position: relative; overflow: hidden;
}
.testimonial-avatar::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(242,237,226,0.4), transparent 60%);
}
.testimonial-person { display: flex; flex-direction: column; gap: 2px; }
.testimonial-person .nm { font-family: var(--body); font-weight: 500; font-size: 14px; }
.testimonial-person .rl { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.testimonial-quote {
  font-family: var(--display); font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(24px, 3vw, 40px); line-height: 1.1; letter-spacing: -0.025em;
  text-wrap: balance;
}
.testimonial-quote em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }

/* ------- FAQ ------- */
.faq {
  padding: 160px 0;
  border-top: 1px solid var(--line);
}
.faq-head {
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 80px;
}
.faq-head h2 {
  font-family: var(--display); font-weight: 300; font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.05em; line-height: 0.92;
}
.faq-head h2 em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }
.faq-list { padding: 0 clamp(20px, 4vw, 56px); border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 32px 0;
  display: grid; grid-template-columns: 60px 1fr 32px; align-items: center; gap: 24px;
  cursor: none;
  transition: color .4s var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-q .num { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--muted); }
.faq-q .txt { font-family: var(--display); font-weight: 400; font-variation-settings: "opsz" 144, "wght" 400; font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -0.02em; line-height: 1.2; }
.faq-q .ico { width: 20px; height: 20px; position: relative; justify-self: end; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; inset: 0; margin: auto; background: currentColor; }
.faq-q .ico::before { width: 20px; height: 1px; }
.faq-q .ico::after { width: 1px; height: 20px; transition: transform .45s var(--ease); }
.faq-item.open .ico::after { transform: scaleY(0); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .6s var(--ease), opacity .4s var(--ease), padding .5s var(--ease);
  padding: 0 84px 0 84px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  opacity: 1;
  padding: 0 84px 32px 84px;
}
.faq-a p { color: var(--fg); opacity: .75; font-size: 15px; line-height: 1.6; max-width: 640px; }

/* ------- Final CTA ------- */
.final {
  padding: 180px clamp(20px, 4vw, 56px);
  position: relative; overflow: hidden;
  background: var(--accent); color: var(--fg);
  --line-strong: rgba(242,237,226,0.32);
}
.final .section-index { color: rgba(242,237,226,0.6); }
.final .section-index::before { background: rgba(242,237,226,0.4); }
.final-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 60px;
}
.final h2 {
  font-family: var(--display); font-weight: 300; font-variation-settings: "opsz" 144, "wght" 300;
  font-size: clamp(56px, 11vw, 200px); letter-spacing: -0.055em; line-height: 0.86;
  text-wrap: balance;
}
.final h2 em { font-style: italic; font-variation-settings: "opsz" 144, "wght" 300, "SOFT" 100, "WONK" 1; }
.final-cta {
  display: flex; gap: 32px; align-items: center;
  flex-wrap: wrap;
}
.big-btn {
  font-family: var(--display); font-weight: 400;
  font-variation-settings: "opsz" 144, "wght" 500;
  font-size: clamp(24px, 3vw, 44px); letter-spacing: -0.03em;
  padding: 28px 48px;
  background: var(--bg); color: var(--fg);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 18px;
  transition: transform .5s var(--ease), background .4s var(--ease);
  position: relative; overflow: hidden;
}
.big-btn::after { content: ""; position: absolute; inset: 0; background: var(--fg); border-radius: inherit; transform: scale(0); transform-origin: center; transition: transform .6s var(--ease); z-index: -1; }
.big-btn:hover { color: var(--bg); }
.big-btn:hover::after { transform: scale(1); }
.big-btn svg { width: 28px; height: 28px; stroke: currentColor; transition: transform .5s var(--ease); }
.big-btn:hover svg { transform: translateX(6px) rotate(-45deg); }

.final-meta {
  display: flex; gap: 40px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.final-meta span { opacity: .75; }

/* ------- Footer ------- */
.footer {
  background: var(--bg); color: var(--fg);
  padding: 80px clamp(20px, 4vw, 56px) 40px;
  position: relative; overflow: hidden;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.footer-col a { font-size: 14px; line-height: 1.7; opacity: .8; transition: opacity .3s, color .3s; position: relative; width: fit-content; }
.footer-col a:hover { color: var(--accent); opacity: 1; }

.footer-brand { grid-column: span 4; }
.footer-links { grid-column: span 2; }
.footer-contact { grid-column: span 4; }
.footer-contact p { font-size: 14px; line-height: 1.5; opacity: .75; margin-bottom: 8px; }

.footer-wordmark {
  font-family: var(--display); font-weight: 300;
  font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 0;
  font-size: clamp(100px, 22vw, 360px);
  letter-spacing: -0.065em; line-height: 0.85;
  white-space: nowrap;
  margin-top: 60px;
  color: var(--fg);
  overflow: hidden;
}
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

/* ------- Loader ------- */
.loader {
  position: fixed; inset: 0;
  background: var(--bg); color: var(--fg);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.1s var(--ease), opacity .3s;
}
.loader.out { transform: translateY(-100%); }
.loader-inner {
  font-family: var(--display); font-weight: 300; font-variation-settings: "opsz" 144, "wght" 400;
  font-size: clamp(48px, 12vw, 200px);
  letter-spacing: -0.07em; line-height: 1;
  display: flex; align-items: baseline; gap: 24px;
}
.loader-count {
  font-family: var(--mono); font-size: 14px;
  letter-spacing: .14em; color: var(--muted);
  align-self: end; padding-bottom: 18px;
}
.loader-bar {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--accent);
  width: 0%;
  transition: width .3s linear;
}

/* ------- Booking modal ------- */
.modal {
  position: fixed; inset: 0;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  z-index: 500;
  display: flex; align-items: stretch; justify-content: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.modal.open { opacity: 1; pointer-events: all; }
.modal-panel {
  width: min(640px, 100%);
  background: var(--fg); color: var(--bg);
  padding: 40px clamp(24px, 4vw, 56px);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .7s var(--ease);
  display: flex; flex-direction: column; gap: 32px;
}
.modal.open .modal-panel { transform: translateX(0); }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.modal-close {
  width: 44px; height: 44px; border: 1px solid rgba(14,14,14,0.2); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.modal-close:hover { background: var(--bg); color: var(--fg); border-color: var(--bg); }
.modal h3 { font-family: var(--display); font-size: clamp(32px, 4vw, 52px); font-weight: 300; font-variation-settings: "opsz" 144, "wght" 400; letter-spacing: -0.035em; line-height: 0.95; }
.modal h3 em { font-style: italic; color: var(--accent); font-variation-settings: "opsz" 144, "wght" 400, "SOFT" 100, "WONK" 1; }
.modal-step-badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #6B645A; }
.modal-step-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #6B645A; }
.field input, .field textarea, .field select {
  font: inherit;
  padding: 14px 0;
  border: 0; border-bottom: 1px solid rgba(14,14,14,0.2);
  background: transparent; color: var(--bg);
  font-size: 16px; font-family: var(--body);
  outline: none;
  transition: border-color .3s;
  cursor: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 100px; }

.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.slot {
  padding: 14px 8px;
  border: 1px solid rgba(14,14,14,0.15);
  border-radius: 2px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  transition: all .25s var(--ease);
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  cursor: none;
  text-transform: uppercase;
}
.slot small { color: #6B645A; font-size: 9px; }
.slot:hover { border-color: var(--bg); }
.slot.selected { background: var(--bg); color: var(--fg); border-color: var(--bg); }
.slot.selected small { color: rgba(242,237,226,0.7); }

.modal-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-chip {
  padding: 10px 16px;
  border: 1px solid rgba(14,14,14,0.2); border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  transition: all .25s var(--ease); cursor: none;
}
.modal-chip:hover { border-color: var(--bg); }
.modal-chip.selected { background: var(--accent); border-color: var(--accent); color: var(--fg); }

.modal-submit {
  margin-top: auto;
  padding: 22px 32px;
  background: var(--bg); color: var(--fg);
  border-radius: 999px;
  font-family: var(--display); font-size: 22px; font-variation-settings: "opsz" 144, "wght" 500; letter-spacing: -0.02em;
  display: inline-flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.modal-submit:hover { background: var(--accent); }
.modal-submit:disabled { opacity: .3; pointer-events: none; }

.modal-success {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding-top: 60px;
}
.modal-success.on { display: flex; }
.modal-success h3 em { display: inline-block; animation: successPulse 2s var(--ease) infinite; }
@keyframes successPulse { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ------- Tweaks panel ------- */
.tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 280px;
  background: rgba(14,14,14,0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 18px;
  z-index: 400;
  display: none;
  flex-direction: column; gap: 16px;
  font-family: var(--mono);
  color: var(--fg);
  font-size: 11px;
  transform: translateY(20px); opacity: 0;
  transition: transform .45s var(--ease), opacity .4s var(--ease);
}
.tweaks.on { display: flex; transform: translateY(0); opacity: 1; }
.tweaks h5 { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: flex; justify-content: space-between; align-items: center; }
.tweaks-palettes { display: flex; gap: 8px; }
.pal {
  flex: 1;
  height: 36px; border-radius: 4px; border: 2px solid transparent; cursor: none;
  transition: transform .25s var(--ease), border-color .2s;
  position: relative; overflow: hidden;
}
.pal.active { border-color: var(--fg); }
.pal::after { content: ""; position: absolute; right: 4px; bottom: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--pal-accent); }
.tweak-row { display: flex; flex-direction: column; gap: 6px; }
.tweak-row input[type="range"] { width: 100%; accent-color: var(--accent); cursor: none; }
.tweak-segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: rgba(255,255,255,0.06); border-radius: 4px; padding: 3px; }
.tweak-segmented button {
  padding: 8px; border-radius: 3px; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: color .25s, background .25s;
}
.tweak-segmented button.active { background: var(--accent); color: var(--fg); }

/* ------- Reduced motion ------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .split-line > span { transform: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}

/* ------- Responsive ------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { padding: 16px 20px; }
  .wordmark { font-size: 20px; }
  .cta-pill { padding: 10px 14px; font-size: 10px; letter-spacing: .1em; min-height: 44px; }

  .hero { padding: 110px 20px 100px; min-height: auto; }
  .hero-meta { flex-direction: column; gap: 24px; margin-bottom: 32px; }
  .hero-meta-block { max-width: 100% !important; text-align: left !important; align-items: flex-start !important; }
  .hero-meta-block[style*="text-align:right"] { align-items: flex-start !important; text-align: left !important; }
  .hero-type h1 { font-size: clamp(54px, 13vw, 90px); line-height: 0.9; letter-spacing: -0.04em; }
  .hero-bottom, .services-head, .cases-head, .process-head, .stack-head,
  .results-head, .testimonials-head, .faq-head { grid-template-columns: 1fr; gap: 24px; }
  .hero-bottom { padding-top: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { justify-content: flex-start; flex-wrap: wrap; gap: 28px; }
  .hero-stat { text-align: left; }
  .hero-stat .n { font-size: 34px; }
  .scroll-hint { display: none; }

  /* Hide chronograph on mobile — crowds the hero */
  .chrono { display: none; }

  /* Trust */
  .trust { padding: 60px 0 40px; }
  .trust-head { padding: 0 20px 32px; }
  .trust-head h3 { font-size: 22px; }
  .marquee-track { gap: 40px; padding-right: 40px; }
  .logo { font-size: 22px; }

  /* Sections heads */
  section { }
  .services, .cases, .process, .stack, .results, .testimonials, .faq, .founder { padding: 80px 0; }
  .services-head h2, .cases-head h2, .process-head h2, .stack-head h2,
  .results-head h2, .testimonials-head h2, .faq-head h2, .founder-copy h2 {
    font-size: clamp(36px, 9vw, 56px); line-height: 0.95;
  }
  .services-head, .cases-head, .process-head, .stack-head, .results-head,
  .testimonials-head, .faq-head { padding: 0 20px; margin-bottom: 40px; }

  /* Services rows */
  .service-row { grid-template-columns: 36px 1fr 24px; gap: 14px; padding: 24px 20px; min-height: 88px; align-items: center; }
  .service-row > :nth-child(3), .service-row > :nth-child(4) { display: none; }
  .svc-title { font-size: 26px; line-height: 1.05; letter-spacing: -0.02em; }
  .svc-num { font-size: 10px; }
  .svc-arrow { width: 16px; height: 16px; }

  /* Cases */
  .case-item { grid-template-columns: 1fr; min-height: auto; padding: 32px 20px; gap: 24px; }
  .case-visual { position: relative; top: auto; aspect-ratio: 4 / 3; border-radius: 2px; }
  .case-copy { padding-left: 0; padding-top: 0; }
  .case-title { font-size: 32px; line-height: 1; margin: 12px 0 16px; }
  .case-body { font-size: 15px; margin-bottom: 24px; }
  .case-stats { gap: 24px; margin-bottom: 24px; }
  .case-stats .st .n { font-size: 30px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; padding: 0 20px; gap: 24px; }
  .process-list { grid-column: 1; }
  .process-sticky { position: relative; top: auto; height: auto; margin-bottom: 24px; }
  .process-timer { font-size: 60px; }
  .process-step { grid-template-columns: 1fr; padding: 28px 0; gap: 16px; }
  .process-step-title { font-size: 26px; }

  /* Stack */
  .stack-cloud { padding: 30px 20px; gap: 10px; }
  .tech-pill { padding: 10px 14px; font-size: 11px; min-height: 40px; }
  .tech-pill.big { padding: 12px 18px; font-size: 13px; }
  .tech-pill.bigger { padding: 14px 22px; font-size: 16px; }

  /* Results */
  .results-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .result { padding: 28px 12px 28px 0; border-right: 1px solid var(--line); }
  .result:nth-child(2n) { border-right: 0; padding-right: 0; }
  .result:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .result .n { font-size: clamp(44px, 14vw, 72px); }
  .result .l { font-size: 9px; margin-top: 10px; }
  .result .d { font-size: 12px; }

  /* Founder */
  .founder-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 28px; }
  .founder-copy h2 { font-size: clamp(36px, 9vw, 56px); }
  .founder-quote { font-size: 17px; margin-top: 24px; }
  .founder-sign .sig { font-size: 22px; }

  /* Testimonials */
  .testimonial-list { padding: 0 20px; }
  .testimonial { grid-template-columns: 1fr; padding: 48px 0; gap: 20px; }
  .testimonial-quote { font-size: 21px; line-height: 1.2; }
  .testimonial-avatar { width: 56px; height: 56px; }

  /* FAQ */
  .faq-list { padding: 0 20px; }
  .faq-q { grid-template-columns: 32px 1fr 20px; gap: 14px; padding: 20px 0; min-height: 64px; }
  .faq-q .num { font-size: 10px; }
  .faq-q .txt { font-size: 17px; line-height: 1.25; }
  .faq-q .ico { width: 16px; height: 16px; }
  .faq-q .ico::before { width: 16px; }
  .faq-q .ico::after { height: 16px; }
  .faq-a, .faq-item.open .faq-a { padding-left: 0; padding-right: 0; }
  .faq-item.open .faq-a { padding-top: 0; padding-bottom: 20px; }
  .faq-a p { font-size: 14px; }

  /* Final CTA */
  .final { padding: 100px 20px; }
  .final h2 { font-size: clamp(40px, 12vw, 68px); line-height: 0.92; }
  .final-cta { gap: 20px; flex-direction: column; align-items: flex-start; }
  .big-btn { font-size: 22px; padding: 20px 28px; width: 100%; justify-content: space-between; min-height: 60px; }
  .final-meta { flex-wrap: wrap; gap: 16px; font-size: 10px; }

  /* Footer */
  .footer { padding: 60px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 48px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links { grid-column: span 1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-wordmark { font-size: 22vw; margin-top: 40px; }

  /* Nav mobile CTA more readable */
  .cta-pill .bullet { width: 5px; height: 5px; }

  /* Modal fullscreen on mobile */
  .modal-panel { width: 100%; padding: 28px 20px 40px; gap: 22px; }
  .modal h3 { font-size: 28px; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .slot { min-height: 56px; padding: 12px 6px; }
  .field input, .field textarea { font-size: 16px; padding: 12px 0; min-height: 44px; } /* 16px prevents iOS zoom */
  .modal-chip { padding: 10px 14px; min-height: 40px; }
  .modal-submit { padding: 18px 24px; font-size: 18px; min-height: 58px; }

  /* Progress bar visible */
  .progress { height: 2px; }

  /* Loader */
  .loader-inner { font-size: clamp(42px, 16vw, 80px); gap: 12px; }
  .loader-count { font-size: 11px; padding-bottom: 10px; }

  /* Disable custom cursor — touch devices */
  body { cursor: auto; }
  .cursor, .cursor-label { display: none; }
  * { cursor: auto !important; }

  /* Avoid magnetic transforms breaking layout */
  [data-magnetic] { transform: none !important; }

  /* Tweaks panel — easier to reach */
  .tweaks { right: 12px; left: 12px; bottom: 12px; width: auto; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 16px 80px; }
  .hero-type h1 { font-size: 44px; letter-spacing: -0.035em; }
  .services, .cases, .process, .stack, .results, .testimonials, .faq, .founder { padding: 64px 0; }
  .services-head h2, .cases-head h2, .process-head h2, .stack-head h2,
  .results-head h2, .testimonials-head h2, .faq-head h2, .founder-copy h2 { font-size: 36px; }
  .svc-title { font-size: 22px; }
  .case-title { font-size: 26px; }
  .testimonial-quote { font-size: 19px; }
  .final h2 { font-size: 40px; }
  .big-btn { font-size: 18px; }
}
