/* ===========================================================================
   paulsainton.com — VERSION E « FRAMER · DA »
   DNA: framer.com (extraction prismd réelle, 2026-06-26). RUNG 1 = direction
   artistique seule (ce qu'un user prismd télécharge : tokens.json + DESIGN.md).
   Canvas dark-natif #000, encre blanche, accents bleus framer #0066ff/#0099ff,
   highlight lime #cbff00, profondeur via ombres + halo bleu MESURÉ (shadow-4).
   Mêmes sélecteurs/layout que les versions A–D ; seule la DA change (couleurs,
   typo restreinte ≤600, rayons, espacements, ombres). Structure & animations
   framer = versions F & G (couches/moteurs séparés).
   =========================================================================== */

/* ---------- FONTS (Inter only, self-host) ---------- */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("/fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("/fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("/fonts/inter-700.woff2") format("woff2"); }

/* ---------- TOKENS (extraits framer.com — dark-natif) ---------- */
:root {
  /* Canvas sombre (framer bg primary #000, tertiary #111, palette #1a1a1a) */
  --bg: #000000;
  --surface-1: #111111;
  --surface-2: #1a1a1a;
  --hairline: rgba(255,255,255,0.09);
  --hairline-2: rgba(255,255,255,0.06);

  /* Encre claire + dérivés (corrigés pour canvas noir — le tokenizer avait
     dérivé text.secondary/muted en noir, illisible sur fond noir) */
  --ink: #ffffff;
  --ink-hover: #e9e9e9;
  --on-ink: #0a0a0a;             /* texte sur pastille blanche (CTA framer = pill blanc) */
  --text-sec: rgba(255,255,255,0.66);
  --text-mut: rgba(255,255,255,0.46);
  --border: rgba(255,255,255,0.10);
  --border-bright: rgba(255,255,255,0.22);
  --tint-bg: rgba(255,255,255,0.055);

  /* Accents de MARQUE framer (declaredPalette : #0066ff, #0099ff, #cbff00) */
  --accent: #0066ff;
  --accent-2: #0099ff;
  --lime: #cbff00;

  /* États (lisibles sur sombre) */
  --c-live: #2ecc8f;
  --c-beta: #e0a23c;
  --c-dev: var(--text-mut);

  /* Rayons (framer : xs4 sm8 md14 lg20 xl30) */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 30px;
  --r-pill: 9999px;

  /* Espacements (framer généreux : md32 base40 lg50 xl60 2xl80 3xl100) */
  --s-1: 8px;
  --s-2: 12px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 40px;
  --s-6: 60px;
  --s-7: 96px;
  --max: 1200px;

  /* Ombres en COUCHES sur sombre : noir profond + liseré blanc inset.
     Le halo bleu au hover est le shadow-4 RÉELLEMENT mesuré sur framer
     (rgba(0,153,255,.15/.2)) — fidèle, pas un glow générique. */
  --sh-1: rgba(0,0,0,0.5) 0px 1px 2px 0px, rgba(255,255,255,0.04) 0px 1px 0px 0px inset;
  --sh-card: rgba(0,0,0,0.5) 0px 2px 8px -2px, rgba(0,0,0,0.45) 0px 10px 26px -8px, rgba(255,255,255,0.04) 0px 1px 0px 0px inset;
  --sh-card-hover: rgba(0,0,0,0.55) 0px 4px 12px -2px, rgba(0,153,255,0.18) 0px 14px 40px -10px, rgba(255,255,255,0.06) 0px 1px 0px 0px inset;
  --sh-panel: rgba(0,0,0,0.6) 0px 30px 70px -12px, rgba(0,0,0,0.5) 0px 14px 32px -10px, rgba(255,255,255,0.08) 0px 0px 0px 1px;
  --sh-float: rgba(0,0,0,0.65) 0px 22px 60px -8px, rgba(0,153,255,0.12) 0px 0px 30px -4px, rgba(255,255,255,0.10) 0px 0px 0px 1px;

  /* Motion (baseline A–D pour E ; le motion framer mesuré = version G) */
  --ease-spring: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-fast: 0.18s;
  --dur-rev: 0.55s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol, dl, dd, dt { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(0,153,255,0.30); color: #fff; }          /* selection framer mesurée */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- OVERLINE / EYEBROW (hiérarchie éditoriale) ---------- */
.overline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sec);
  margin: 0 0 14px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-sec);
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: color-mix(in oklab, var(--surface-1) 80%, transparent);
  margin: 0 0 26px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px 0 var(--accent); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  padding: 13px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-fast) var(--ease-spring),
              background var(--dur-fast) var(--ease-spring),
              border-color var(--dur-fast) var(--ease-spring);
  will-change: transform;
}
.btn-primary { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-hover); border-color: var(--ink-hover); transform: translateY(-1px); box-shadow: rgba(0,153,255,0.28) 0px 8px 24px -6px; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-bright); }
.btn-ghost:hover { background: var(--tint-bg); border-color: var(--ink); transform: translateY(-1px); }
.btn-arrow { transition: transform var(--dur-fast) var(--ease-spring); }
.btn-ghost:hover .btn-arrow { transform: translateX(3px); }
.btn-lg { padding: 15px 26px; font-size: 16px; }

/* ============================ NAV ============================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.nav.is-scrolled { border-bottom-color: var(--hairline); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.monogram {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--ink); color: var(--on-ink);
  border-radius: var(--r-sm);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
}
.brand-name { font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 14.5px; color: var(--text-sec);
  padding: 8px 13px; border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--ink); background: var(--tint-bg); }
.nav-cta { padding: 9px 17px; font-size: 14px; }

/* ============================ HERO ============================ */
.hero { padding-top: 72px; padding-bottom: var(--s-7); overflow: hidden; }
.hero-inner { display: block; }
.hero-copy { max-width: 760px; }

.hero-title {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  color: var(--ink);
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--text-sec);
  max-width: 620px;
  margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: var(--s-6); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
  max-width: 760px;
}
.stat-value { font-size: 21px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink); }
.stat-label { font-size: 13.5px; color: var(--text-mut); margin-top: 4px; }

/* ---------- VISUEL PRODUIT EN COUCHES ---------- */
.hero-visual {
  position: relative;
  margin-top: var(--s-7);
  height: 600px;
  isolation: isolate;
}
.visual-glow {
  position: absolute;
  inset: -8% -4% 0 -4%;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(0,102,255,0.12) 0%, transparent 60%),
    radial-gradient(90% 60% at 80% 10%, rgba(203,255,0,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #0b0b0d 0%, #000 70%);
  border-radius: var(--r-xl);
  filter: blur(0.4px);
}
.panel {
  position: absolute;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border);
}
.panel img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }

.panel-main {
  z-index: 1;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: min(880px, 78%);
  height: 540px;
  box-shadow: var(--sh-panel);
}
.panel-float {
  z-index: 2;
  width: min(330px, 32%);
  height: 220px;
  box-shadow: var(--sh-float);
}
.panel-float-a { left: 1%; bottom: 20px; }
.panel-float-b { right: 1%; top: 8px; }

.js [data-float] {
  --float-y: 0px;
  animation: floatIdle 7s ease-in-out infinite;
}
.js .panel-float-b { animation-delay: -3.5s; }
@keyframes floatIdle {
  0%, 100% { transform: translateY(calc(var(--float-y) + 0px)); }
  50%      { transform: translateY(calc(var(--float-y) - 6px)); }
}

/* ============================ BANDE MARQUES ============================ */
.brands { padding: var(--s-6) 0; border-top: 1px solid var(--hairline); }
.brands-kicker {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mut); text-align: center; margin-bottom: 32px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 40px;
}
.brand-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
.brand-name-txt { font-size: 15px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.brand-via { font-size: 13px; color: var(--text-mut); }

/* ============================ AXES ============================ */
.axis { padding: var(--s-7) 0; }
.axis-products { background: linear-gradient(180deg, var(--bg) 0%, color-mix(in oklab, var(--surface-1) 55%, var(--bg)) 100%); border-top: 1px solid var(--hairline); }
.axis-head { max-width: 740px; margin-bottom: var(--s-6); }
.axis-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.axis-pitch { font-size: 17px; line-height: 1.6; color: var(--text-sec); max-width: 660px; }

/* ---------- SERVICES (pastilles) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: var(--s-7);
}
.service-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--sh-1);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-spring), border-color var(--dur-fast) var(--ease-spring);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--sh-card-hover); border-color: var(--border-bright); }
.pastille {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  color: var(--accent-2);
  margin-bottom: 16px;
}
.service-title { font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 7px; }
.service-desc { font-size: 14.5px; line-height: 1.55; color: var(--text-sec); }

/* ---------- TIMELINE ---------- */
.timeline-block { margin-bottom: var(--s-7); }
.timeline-head { margin-bottom: 34px; }
.timeline-h { font-size: clamp(22px, 2.4vw, 28px); font-weight: 400; letter-spacing: -0.018em; }
.timeline {
  position: relative;
  border-left: 1px solid var(--hairline);
  margin-left: 8px;
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 0 0 32px 32px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -5px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--accent);
}
.tl-period { font-size: 13px; font-weight: 500; color: var(--text-mut); letter-spacing: 0.01em; padding-top: 2px; }
.tl-body { min-width: 0; }
.tl-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.tl-company { font-size: 17px; font-weight: 600; letter-spacing: -0.012em; }
.tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.03em;
  padding: 3px 10px; border-radius: var(--r-pill);
}
.tag-agency { background: var(--tint-bg); color: var(--text-sec); border: 1px solid var(--border); }
.tl-role { font-size: 14.5px; color: var(--ink); margin-bottom: 3px; }
.tl-clients { font-size: 13.5px; color: var(--text-mut); line-height: 1.5; }

.disclaimer {
  display: flex; gap: 11px;
  margin-top: 6px;
  padding: 16px 20px;
  background: var(--surface-1);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-sec);
}
.disclaimer-ic { flex: 0 0 auto; color: var(--text-mut); margin-top: 2px; }

/* ---------- CASES (qualitatif) ---------- */
.cases-head { margin-bottom: 28px; }
.cases-h { font-size: clamp(22px, 2.4vw, 28px); font-weight: 400; letter-spacing: -0.018em; }
.cases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.case-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--sh-1);
}
.case-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.case-title { font-size: 17px; font-weight: 600; letter-spacing: -0.012em; }
.badge-soon {
  flex: 0 0 auto;
  font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
  padding: 4px 11px; border-radius: var(--r-pill);
  background: color-mix(in oklab, var(--c-beta) 16%, transparent);
  color: var(--c-beta);
  border: 1px solid color-mix(in oklab, var(--c-beta) 34%, transparent);
}
.case-kind { font-size: 12.5px; color: var(--text-mut); margin-bottom: 8px; }
.case-summary { font-size: 14px; color: var(--text-sec); line-height: 1.55; }

/* ---------- PRODUITS ---------- */
.cat-block { margin-bottom: 44px; }
.cat-block:last-child { margin-bottom: 0; }
.cat-name {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-sec);
  padding-bottom: 14px; margin-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  display: flex; flex-direction: column;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--sh-card);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-spring), border-color var(--dur-fast) var(--ease-spring);
}
.product-card:not(.product-card-static):hover { transform: translateY(-3px); box-shadow: var(--sh-card-hover); border-color: var(--border-bright); }
.product-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.product-name { font-size: 16.5px; font-weight: 600; letter-spacing: -0.012em; }
.product-desc { font-size: 14px; line-height: 1.55; color: var(--text-sec); flex: 1 1 auto; }
.product-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px;
  font-size: 13.5px; font-weight: 500;
  color: var(--accent-2);
}
.product-link svg { transition: transform var(--dur-fast) var(--ease-spring); }
.product-card:hover .product-link svg { transform: translate(2px, -2px); }
.status {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
  padding: 4px 10px 4px 9px; border-radius: var(--r-pill);
  border: 1px solid var(--border);
}
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; }
.status-live { color: var(--c-live); background: color-mix(in oklab, var(--c-live) 14%, transparent); border-color: color-mix(in oklab, var(--c-live) 30%, transparent); }
.status-live::before { background: var(--c-live); box-shadow: 0 0 7px 0 var(--c-live); }
.status-beta { color: var(--c-beta); background: color-mix(in oklab, var(--c-beta) 14%, transparent); border-color: color-mix(in oklab, var(--c-beta) 30%, transparent); }
.status-beta::before { background: var(--c-beta); }
.status-dev { color: var(--text-sec); background: var(--tint-bg); }
.status-dev::before { background: var(--text-mut); }

/* ============================ APPROCHE ============================ */
.approche { padding: var(--s-7) 0; border-top: 1px solid var(--hairline); }
.approche-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.approche-h { font-size: clamp(26px, 3vw, 36px); font-weight: 400; line-height: 1.14; letter-spacing: -0.02em; margin-bottom: 18px; }
.approche-p { font-size: 16.5px; line-height: 1.65; color: var(--text-sec); }
.approche-points { display: flex; flex-direction: column; gap: 12px; }
.ap-point {
  display: flex; gap: 16px;
  padding: 20px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-spring);
}
.ap-point:hover { transform: translateY(-2px); box-shadow: var(--sh-card); }
.ap-point .pastille { margin-bottom: 0; flex: 0 0 auto; }
.ap-title { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.ap-desc { font-size: 14px; line-height: 1.55; color: var(--text-sec); }

/* ============================ CONTACT ============================ */
.contact { padding: var(--s-7) 0; border-top: 1px solid var(--hairline); }
.contact-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(0,102,255,0.10) 0%, transparent 55%),
    var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  box-shadow: var(--sh-card);
}
.contact-inner .overline { margin-bottom: 16px; }
.contact-h { font-size: clamp(26px, 3vw, 38px); font-weight: 400; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 14px; }
.contact-p { font-size: 17px; color: var(--text-sec); margin-bottom: 30px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ============================ FOOTER ============================ */
.footer { border-top: 1px solid var(--hairline); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-mono { width: 28px; height: 28px; font-size: 11.5px; }
.footer-name { font-size: 14.5px; font-weight: 500; }
.footer-links { display: flex; gap: 6px; margin-left: auto; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--text-sec); padding: 6px 11px; border-radius: var(--r-sm); transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out); }
.footer-links a:hover { color: var(--ink); background: var(--tint-bg); }
.footer-copy { font-size: 13px; color: var(--text-mut); width: 100%; padding-top: 20px; margin-top: 4px; border-top: 1px solid var(--hairline); }

/* ============================ MOTION : SCROLL-REVEAL (baseline) ============================
   ⚠️ BULLETPROOF : le contenu est VISIBLE PAR DÉFAUT. On ne cache (opacity:0) QUE les
   éléments que le JS a explicitement "armés" (.reveal-armed) parce qu'ils sont sous la
   ligne de flottaison. Sans JS / scroll rapide / cache partiel → rien n'est armé → JAMAIS de noir. */
.js [data-reveal].reveal-armed {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-rev) var(--ease-framer), transform var(--dur-rev) var(--ease-framer);
  will-change: opacity, transform;
}
.js [data-reveal].reveal-armed.is-visible { opacity: 1; transform: translateY(0); }
.js [data-reveal][data-reveal-delay="1"] { transition-delay: 0.07s; }
.js [data-reveal][data-reveal-delay="2"] { transition-delay: 0.14s; }
.js [data-reveal][data-reveal-delay="3"] { transition-delay: 0.21s; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .services, .cases, .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { height: 520px; }
  .panel-main { width: 84%; height: 460px; }
  .panel-float { width: 38%; height: 180px; }
  .approche-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .wrap { padding-left: 18px; padding-right: 18px; }
  .nav-links { display: none; }
  .hero { padding-top: 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 22px 32px; }
  .stat { flex: 1 1 40%; }
  .hero-visual { height: 380px; margin-top: var(--s-6); }
  .panel-main { top: 18px; width: 90%; height: 300px; }
  .panel-float { width: 46%; height: 130px; }
  .panel-float-a { left: -2%; bottom: 6px; }
  .panel-float-b { right: -2%; top: 0; }
  .brands-grid { grid-template-columns: 1fr; }
  .services, .cases, .products { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; padding-left: 24px; }
  .tl-period { padding-top: 0; }
  .contact-inner { padding: 40px 22px; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { margin-left: 0; }
}

/* ============================ REDUCED MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .js [data-float] { animation: none !important; transform: none !important; }
}

/* ===========================================================================
   RUNG 2 — STRUCTURE framer.com (mesurée, version F = E + structure)
   Source : 111 sections du raw-css (getBoundingClientRect réel). Le moteur
   structure dédié (extract-all-blocks.ts) est ressorti quasi vide sur le DOM
   Framer (1 section / 0 extraite, blocks/ vide) — on câble donc sur la
   géométrie mesurée du raw-css. Signatures framer retenues :
     · sections full-bleed 1440×(1127–1348), rythme vertical très ample
     · hero header court (327px) mais type d'affichage XL
     · grilles 3-up de GRANDES cartes (gridLayout 400px×480px)
   =========================================================================== */
:root {
  --max: 1320px;          /* framer full-bleed → conteneur plus large */
  --s-7: 120px;           /* rythme vertical ample (sections framer 1100–1350px) */
  --s-6: 76px;
}
/* Hero : type d'affichage plus grande (framer display), visuel plein cadre */
.hero-title { font-size: clamp(44px, 7.2vw, 88px); letter-spacing: -0.028em; line-height: 1.02; }
.hero-sub { font-size: clamp(18px, 1.7vw, 22px); max-width: 680px; }
.hero-visual { height: 680px; margin-top: var(--s-7); }
.panel-main { width: min(980px, 84%); height: 600px; }
.nav-inner { height: 72px; }

/* Bandes full-bleed alternées (sections framer = pleines largeurs) */
.axis-products, .approche, .contact { position: relative; }
.axis-products::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(70% 50% at 50% 0%, rgba(0,102,255,0.06), transparent 62%);
}
.axis-products .wrap, .approche .wrap, .contact .wrap { position: relative; z-index: 1; }

/* Grandes cartes (framer gridLayout 400×480) : 3-up mais hautes & généreuses */
.services, .products, .cases { gap: 24px; }
.service-card, .product-card, .case-card { min-height: 232px; padding: 30px; }
.service-card { display: flex; flex-direction: column; }
.service-title { margin-top: auto; }              /* pousse le titre vers le bas comme les cartes framer */
.product-card { padding: 26px; }

/* Espacement éditorial des têtes de section (framer respire) */
.axis-head { margin-bottom: var(--s-7); max-width: 820px; }
.axis-title { font-size: clamp(32px, 4vw, 52px); }

@media (max-width: 1024px) {
  .hero-visual { height: 560px; }
  .service-card, .product-card, .case-card { min-height: 0; }
}

/* ===========================================================================
   RUNG 3 — MOTION framer.com (mesurée, version G = F + animation)
   Source : motion-captured.json (moteur séparé anim-extract, WAAPI+sampler).
   Matière framer RÉELLE : durations 300ms/750ms, easings linear+ease-in-out,
   stagger {step:188ms, count:16}, scrollReveal:true. ⚠️ Matière mince côté
   framer (2 reveals 'view' + 3 'scroll' sur 19 specs ; 14 sont 'load') — on
   ré-AUTHORE la choré (le motion runtime JS n'est pas rejouable depuis un
   extract), fidèle aux durées/courbes/cadence mesurées.
   =========================================================================== */
:root {
  --dur-rev: 0.6s;                                       /* framer 600ms (mesuré motion-tokens) */
  --dur-fast: 0.4s;                                      /* framer 400ms (mesuré) */
  --ease-rev: cubic-bezier(0.15, 0.2448, 0.35, 0.8916); /* COURBE SIGNATURE framer.com (mesurée, ~15 occurrences) */
  --ease-framer: cubic-bezier(0.15, 0.2448, 0.35, 0.8916);
}
.js [data-reveal].reveal-armed {
  transform: translateY(26px);
  transition: opacity var(--dur-rev) var(--ease-framer), transform var(--dur-rev) var(--ease-framer);
}
/* cadence de stagger framer = 188ms (mesurée) */
.js [data-reveal][data-reveal-delay="1"] { transition-delay: .188s; }
.js [data-reveal][data-reveal-delay="2"] { transition-delay: .376s; }
.js [data-reveal][data-reveal-delay="3"] { transition-delay: .564s; }

/* Reveal des cartes/lignes en cascade (stagger 188ms appliqué en JS) */
.js [data-reveal-card].reveal-armed {
  opacity: 0;
  transform: translateY(28px) scale(0.94);                /* scale framer mesuré ~0.9 sur les cartes */
  transition: opacity var(--dur-rev) var(--ease-framer), transform var(--dur-rev) var(--ease-framer);
  will-change: opacity, transform;
}
.js [data-reveal-card].reveal-armed.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal-card] { opacity: 1 !important; transform: none !important; }
}

/* ===========================================================================
   RUNG 4 — SYNTHÈSE / CLONE INTÉGRAL BORNÉ (version H = E + F + G + synthèse)
   Le plus proche de framer.com appliqué à paulsainton : DA + structure + motion.
   ⚠️ Honnêteté R26 : un clone FIDÈLE d'un site Framer (runtime JS, scroll natif,
   WebGL, CMS) n'est PAS extractible — la bande .fidelity-note (bas de page)
   liste explicitement ce qui n'est pas capturable.
   =========================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 100;
  background: linear-gradient(90deg, var(--accent), var(--lime));
  box-shadow: 0 0 10px rgba(0,153,255,.5);
}
.eyebrow-dot { background: var(--lime); box-shadow: 0 0 9px 0 var(--lime); }   /* lime framer plus marqué */

/* ===========================================================================
   RUNG 5 — REFONTE 2026-06-26 (header vivant · marquee logos · axes ·
   console Orchestrator + lightbox · previews produits · formulaire contact)
   Réf visuelle : extraction framer.com locale. Tokens de marque réutilisés.
   =========================================================================== */

/* ---------- HERO : 2 colonnes (header plus vivant) ---------- */
@media (min-width: 1000px) {
  .hero { padding-top: 84px; }
  .hero-inner { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(0,0.98fr); gap: 56px; align-items: center; }
  .hero-copy { max-width: 600px; }
  .hero-visual { margin-top: 0; height: auto; }
  .hero-stats { max-width: 600px; }
}
/* parallax de profondeur (framer) — piloté en JS via --hero-shift ; 0 sous reduced-motion */
.hero-visual { transform: translate3d(0, var(--hero-shift, 0px), 0); }

/* ============================ MARQUEE LOGOS (T5) ============================ */
.brands { padding: var(--s-6) 0; border-top: 1px solid var(--hairline); overflow: hidden; }
.brands-kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mut); text-align: center; margin-bottom: 34px;
}
.marquee {
  position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.marquee-track { display: flex; width: max-content; animation: bmScroll 46s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.bm-group { display: flex; align-items: center; gap: 60px; padding-right: 60px; }
.bm-logo {
  height: 22px; width: auto; opacity: 0.80; filter: saturate(0);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.bm-word {
  font-size: 21px; font-weight: 600; letter-spacing: -0.01em; line-height: 1;
  color: rgba(255,255,255,0.64); white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.bm-logo:hover, .bm-word:hover { opacity: 1; color: #fff; transform: translateY(-2px); }
@keyframes bmScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ============================ SÉPARATEURS D'AXES (T3) ============================ */
.axis { border-top: 1px solid var(--hairline); }
.axis-index { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.axis-num {
  font-size: clamp(38px, 5vw, 60px); font-weight: 600; line-height: 0.9;
  letter-spacing: -0.04em; color: var(--accent);
  -webkit-text-stroke: 0; position: relative; padding-right: 18px;
}
.axis-num::after { content: ""; position: absolute; right: 0; top: 12%; bottom: 12%; width: 1px; background: var(--border-bright); }
.axis-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-sec);
}
.axis-kicker::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }
.axis--consulting .axis-num, .axis--consulting .axis-kicker::before { color: var(--accent); background: var(--accent); }
.axis--consulting .axis-num { color: var(--accent); }
.axis--products .axis-num { color: var(--lime); }
.axis--products .axis-kicker::before { background: var(--lime); }
.axis--consulting { background: radial-gradient(80% 50% at 0% 0%, rgba(0,102,255,0.06), transparent 60%); }

/* ============================ CONSOLE ORCHESTRATOR (T8) ============================ */
.orch-console {
  position: relative; display: block; width: 100%; margin: 0; padding: 0;
  border: 1px solid var(--border-bright); border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(180deg, #0c0f16 0%, #07090e 100%);
  box-shadow: var(--sh-panel); cursor: zoom-in; isolation: isolate;
  font-family: inherit; text-align: left; color: var(--ink);
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-spring), border-color var(--dur-fast) var(--ease-spring);
  animation: ocFloat 9s ease-in-out infinite;
}
.orch-console:hover { transform: translateY(-4px); box-shadow: var(--sh-panel), rgba(0,153,255,0.30) 0px 24px 70px -16px; border-color: rgba(0,153,255,0.45); }
.orch-console:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@keyframes ocFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.oc-chrome { display: flex; align-items: center; gap: 12px; padding: 11px 15px; border-bottom: 1px solid var(--hairline); background: rgba(255,255,255,0.02); }
.oc-dots { display: inline-flex; gap: 6px; }
.oc-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.oc-dots i:first-child { background: #ff5f57; } .oc-dots i:nth-child(2) { background: #febc2e; } .oc-dots i:nth-child(3) { background: #28c840; }
.oc-url { font-size: 12px; color: var(--text-mut); letter-spacing: -0.01em; }
.oc-url b { color: var(--text-sec); font-weight: 500; }
.oc-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-live); }
.oc-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--c-live); box-shadow: 0 0 8px 0 var(--c-live); animation: ocPulse 2s ease-in-out infinite; }
@keyframes ocPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.oc-body { display: grid; grid-template-columns: 52px 1fr; min-height: 340px; }
.oc-side { display: flex; flex-direction: column; align-items: center; gap: 11px; padding: 16px 0; border-right: 1px solid var(--hairline); background: rgba(255,255,255,0.015); }
.oc-logo { width: 26px; height: 26px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 0 16px -2px rgba(0,153,255,0.6); margin-bottom: 6px; }
.oc-nav { width: 22px; height: 22px; border-radius: 7px; background: rgba(255,255,255,0.07); }
.oc-nav.is-on { background: color-mix(in oklab, var(--accent) 38%, transparent); box-shadow: inset 0 0 0 1px rgba(0,153,255,0.5); }

.oc-main { padding: 18px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.oc-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.oc-kpi { padding: 11px 12px; border: 1px solid var(--hairline); border-radius: var(--r-sm); background: rgba(255,255,255,0.025); }
.oc-kpi-val { display: block; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.oc-kpi-lab { display: block; font-size: 10.5px; color: var(--text-mut); margin-top: 3px; letter-spacing: 0.02em; }
.oc-blur { filter: blur(5px); -webkit-user-select: none; user-select: none; color: var(--text-sec); }

.oc-panel { border: 1px solid var(--hairline); border-radius: var(--r-sm); background: rgba(255,255,255,0.02); padding: 12px 14px; }
.oc-panel-title { font-size: 11px; color: var(--text-sec); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.oc-chart { display: flex; align-items: flex-end; gap: 6px; height: 92px; margin-top: 12px; }
.oc-chart span { flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--accent-2), var(--accent)); transform-origin: bottom; transform: scaleY(0); animation: ocBar 0.75s var(--ease-rev) forwards; }
.oc-chart span:last-child { background: linear-gradient(180deg, var(--lime), #9bd400); }
.oc-chart span:nth-child(1){animation-delay:.05s}.oc-chart span:nth-child(2){animation-delay:.10s}.oc-chart span:nth-child(3){animation-delay:.15s}.oc-chart span:nth-child(4){animation-delay:.20s}.oc-chart span:nth-child(5){animation-delay:.25s}.oc-chart span:nth-child(6){animation-delay:.30s}.oc-chart span:nth-child(7){animation-delay:.35s}.oc-chart span:nth-child(8){animation-delay:.40s}.oc-chart span:nth-child(9){animation-delay:.45s}.oc-chart span:nth-child(10){animation-delay:.50s}.oc-chart span:nth-child(11){animation-delay:.55s}.oc-chart span:nth-child(12){animation-delay:.60s}
@keyframes ocBar { to { transform: scaleY(1); } }

.oc-rows { display: flex; flex-direction: column; gap: 8px; }
.oc-row { display: flex; align-items: center; gap: 10px; padding: 8px 11px; border: 1px solid var(--hairline); border-radius: var(--r-sm); background: rgba(255,255,255,0.02); }
.oc-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.oc-dot.is-live { background: var(--c-live); box-shadow: 0 0 7px 0 var(--c-live); } .oc-dot.is-beta { background: var(--c-beta); }
.oc-name { height: 9px; border-radius: 3px; background: rgba(255,255,255,0.28); }
.oc-name.oc-blur { filter: blur(4px); color: transparent; }
.oc-spark { flex: 1; height: 18px; border-radius: 4px; background: linear-gradient(90deg, rgba(0,153,255,0.05), rgba(0,153,255,0.28), rgba(203,255,0,0.18)); }
.oc-pct { font-size: 12px; font-weight: 600; color: var(--accent-2); flex: 0 0 auto; }

.oc-scan { position: absolute; left: 0; right: 0; top: 0; height: 30%; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0,153,255,0.10) 60%, rgba(203,255,0,0.06) 100%);
  animation: ocScan 6.5s linear infinite; mix-blend-mode: screen; }
@keyframes ocScan { 0% { transform: translateY(-110%); } 100% { transform: translateY(380%); } }

.oc-expand { position: absolute; right: 12px; bottom: 12px; z-index: 4; display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 500; color: var(--ink);
  background: rgba(10,12,18,0.72); border: 1px solid var(--border-bright); backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(6px); transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
.orch-console:hover .oc-expand, .orch-console:focus-visible .oc-expand { opacity: 1; transform: translateY(0); }
.oc-caption { margin-top: 16px; font-size: 12.5px; color: var(--text-mut); text-align: center; }
.oc-caption span { color: var(--accent-2); }

/* ---------- LIGHTBOX ---------- */
.orch-lightbox { border: none; background: transparent; padding: 0; max-width: min(1100px, 94vw); width: 100%; color: var(--ink); }
.orch-lightbox::backdrop { background: rgba(0,0,0,0.78); backdrop-filter: blur(8px); }
.olb-inner { position: relative; }
.olb-stage { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-panel); }
.olb-stage .orch-console { animation: none; cursor: default; transform: none; box-shadow: none; border-radius: var(--r-lg); }
.olb-stage .orch-console:hover { transform: none; }
.olb-stage .oc-body { min-height: min(64vh, 560px); }
.olb-close { position: absolute; top: -14px; right: -14px; z-index: 5; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  background: var(--surface-2); color: var(--ink); border: 1px solid var(--border-bright); box-shadow: var(--sh-card); }
.olb-close:hover { background: var(--surface-1); border-color: var(--ink); }
.olb-cap { margin-top: 16px; text-align: center; font-size: 13.5px; color: var(--text-sec); }
.olb-cap span { color: var(--text-mut); }

@media (prefers-reduced-motion: reduce) {
  .orch-console { animation: none; } .oc-scan { display: none; }
  .oc-live i { animation: none; } .oc-chart span { transform: scaleY(1); animation: none; }
}
@media (max-width: 680px) {
  .oc-kpis { grid-template-columns: repeat(2, 1fr); }
  .oc-body { min-height: 0; }
  .axis-num::after { display: none; }
}

/* ============================ PREVIEWS PRODUITS (T6 — framer) ============================ */
.cat-name { display: flex; align-items: center; gap: 12px; }
.cat-name::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--accent-2); box-shadow: 0 0 8px -1px var(--accent-2); }
.axis--products .cat-block:nth-of-type(3) .cat-name::before { background: var(--lime); box-shadow: 0 0 8px -1px var(--lime); }

.products .product-card { padding-top: 0; overflow: hidden; position: relative; }
.product-card::before {
  content: ""; display: block; height: 124px; margin: 0 -26px 20px;
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(120% 110% at 8% 0%, rgba(0,153,255,0.26), transparent 58%),
    radial-gradient(130% 130% at 100% 100%, rgba(203,255,0,0.10), transparent 52%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 22px),
    linear-gradient(160deg, #0d1320, #07090e);
  background-size: cover; background-position: center;
  transition: filter var(--dur-fast) var(--ease-out), transform var(--dur-rev) var(--ease-rev);
  filter: saturate(1) brightness(0.92);
}
.products .product-card:nth-child(3n+2)::before { background:
  radial-gradient(120% 110% at 92% 0%, rgba(203,255,0,0.18), transparent 56%),
  radial-gradient(120% 120% at 0% 100%, rgba(0,153,255,0.16), transparent 55%),
  repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 22px),
  repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 22px),
  linear-gradient(160deg, #0e1410, #07090e); }
.products .product-card:nth-child(3n)::before { background:
  radial-gradient(120% 120% at 50% 0%, rgba(0,102,255,0.30), transparent 60%),
  repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 22px),
  repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 22px),
  linear-gradient(160deg, #0b1018, #07090e); }
/* Cartes avec vrai screenshot */
.product-card.pv-img::before {
  background-image: var(--pv-img); background-size: cover; background-position: top center;
  filter: saturate(1.02) brightness(0.96);
}
.product-card:hover::before { filter: saturate(1.08) brightness(1.05); transform: scale(1.015); }
/* badge "aperçu" discret sur les previews génératifs (placeholder honnête) */
.products .product-card:not(.pv-img) .product-top { position: relative; }

/* ============================ FORMULAIRE CONTACT (T9) ============================ */
.contact-form { text-align: left; margin: 6px 0 18px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.cf-grid .cf-field { margin-bottom: 0; }
.cf-label { font-size: 12.5px; font-weight: 500; color: var(--text-sec); letter-spacing: 0.01em; }
.cf-input {
  font-family: inherit; font-size: 15px; color: var(--ink); width: 100%;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 12px 14px;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.cf-input::placeholder { color: var(--text-mut); }
.cf-input:focus { outline: none; border-color: var(--accent); background: rgba(0,102,255,0.05); box-shadow: 0 0 0 3px rgba(0,102,255,0.16); }
textarea.cf-input { resize: vertical; min-height: 112px; line-height: 1.55; }
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cf-foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 2px; }
.cf-status { font-size: 13.5px; color: var(--text-sec); }
.cf-status.is-ok { color: var(--c-live); }
.cf-status.is-err { color: #ff6b6b; }
.contact-form.is-sending .cf-submit { opacity: 0.6; pointer-events: none; }
.contact-alt { font-size: 13.5px; color: var(--text-mut); }
.contact-alt a { color: var(--text-sec); border-bottom: 1px solid var(--border-bright); }
.contact-alt a:hover { color: var(--ink); }
@media (max-width: 680px) { .cf-grid { grid-template-columns: 1fr; gap: 0; } .cf-grid .cf-field { margin-bottom: 14px; } }
