/* ════════════════════════════════════════════
   SUITE KARST — CSS unique, thèmes par page
   data-theme="home" | "pro"  → sombre (Gouffre)
   data-theme="entry"         → clair (Calcaire, carnet)
   ════════════════════════════════════════════ */

/* ── Fonts auto-hébergées ── */
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-var.woff2') format('woff2-variations');
  font-weight: 300 700; font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('fonts/space-mono.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  src: url('fonts/space-mono-bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}

/* ── Tokens ── */
:root {
  --pierre:     #2c2620;
  --pierre-2:   #4a3f33;
  --ocre:       #bb6a2e;
  --ocre-dk:    #9a5524;
  --gres:       #a89a82;
  --gres-lt:    #c9bda7;
  --gres-dk:    #6f6657;
  --calcaire:   #f3ede2;
  --calcaire-2: #ece4d2;
  --gouffre:    #1c1812;
  --ocre-clair: #e6c9a8;
}
/* thème sombre (home, pro) */
[data-theme="home"], [data-theme="pro"] {
  --bg:        var(--gouffre);
  --bg-alt:    #241e16;
  --bg-card:   rgba(243,237,226,.04);
  --fg:        var(--calcaire);
  --fg-soft:   var(--gres);
  --fg-mute:   var(--gres-dk);
  --line:      rgba(168,154,130,.16);
  --accent-bg: rgba(187,106,46,.1);
}
/* thème clair (entry) */
[data-theme="entry"] {
  --bg:        var(--calcaire);
  --bg-alt:    var(--calcaire-2);
  --bg-card:   #fff;
  --fg:        var(--pierre);
  --fg-soft:   var(--pierre-2);
  --fg-mute:   var(--gres);
  --line:      rgba(168,154,130,.38);
  --accent-bg: rgba(187,106,46,.09);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg); color: var(--fg);
  overflow-x: hidden; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
code {
  font-family: 'Space Mono', monospace; font-size: .85em;
  background: var(--bg-alt); padding: .05em .35em;
  color: var(--ocre); border: 1px solid var(--line);
}
[data-theme="entry"] code { color: var(--ocre-dk); }

/* grille carnet — uniquement thème entry */
[data-theme="entry"] body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(to bottom, transparent 0 31px, rgba(168,154,130,.16) 31px 32px);
}

/* ── Reveal (progressive enhancement) ── */
.no-js .reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.in { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 2rem; gap: 1rem;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
[data-theme="home"] nav, [data-theme="pro"] nav { background: rgba(28,24,18,.92); }
[data-theme="entry"] nav { background: rgba(243,237,226,.92); }
.nav-brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-brand img, .nav-brand svg { height: 34px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  font-family: 'Space Mono', monospace; font-size: .68rem; letter-spacing: .08em;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-gh { margin-left: auto; }
.nav-links a {
  color: var(--fg-soft); text-decoration: none; padding: .5rem .8rem;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a[aria-current="page"] { color: var(--ocre); border-bottom-color: var(--ocre); font-weight: 700; }
.nav-gh {
  display: inline-flex; align-items: center; gap: .4rem; flex-shrink: 0;
  background: var(--ocre); color: var(--calcaire); text-decoration: none;
  font-family: 'Space Mono', monospace; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; padding: .5rem .95rem;
  transition: background .2s, transform .2s;
}
.nav-gh:hover { background: var(--ocre-dk); transform: translateY(-1px); }
[data-theme="entry"] .nav-gh { background: var(--pierre); }
[data-theme="entry"] .nav-gh:hover { background: var(--ocre); }

/* ── Conteneurs & sections ── */
.container { width: min(1200px, 92vw); margin: 0 auto; position: relative; z-index: 1; }
.section { padding: 5.5rem 0; border-bottom: 1px solid var(--line); position: relative; }
.section.alt { background: var(--bg-alt); }
.s-label {
  font-family: 'Space Mono', monospace; font-size: .64rem;
  letter-spacing: .28em; color: var(--ocre); text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.s-title {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -.01em; margin-bottom: 1.2rem; max-width: 26ch;
}
.s-title em {
  font-style: normal; color: var(--ocre);
  background: linear-gradient(transparent 62%, rgba(187,106,46,.2) 62%); padding: 0 .08em;
}
.s-intro { font-size: 1.02rem; max-width: 64ch; color: var(--fg-soft); margin-bottom: 2.2rem; }

/* ── Boutons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ocre); color: var(--calcaire); text-decoration: none;
  font-family: 'Space Mono', monospace; font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; padding: .85rem 1.4rem;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--ocre-dk); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--fg); text-decoration: none;
  font-family: 'Space Mono', monospace; font-size: .78rem; font-weight: 700;
  letter-spacing: .04em; padding: .85rem 1.4rem;
  border: 1px solid var(--fg);
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: var(--fg); color: var(--bg); }

/* ── Cadre capture d'écran ── */
.shot {
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: .5rem;
  box-shadow: 8px 8px 0 rgba(187,106,46,.16);
}
.shot img { display: block; width: 100%; }
.shot-cap {
  font-family: 'Space Mono', monospace; font-size: .62rem;
  letter-spacing: .1em; color: var(--fg-mute);
  padding: .55rem .25rem .15rem; text-transform: uppercase;
}

/* ════════ HOME — écosystème ════════ */
.home-hero {
  min-height: 88svh; display: grid; align-items: center;
  padding: 8rem 0 4rem; position: relative; overflow: hidden;
}
#lidar-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
/* le nuage de points reste visible derrière les sections de l'accueil */
[data-theme="home"] .section.alt { background: rgba(36,30,22,.82); }
.home-hero-inner { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.home-tag {
  font-family: 'Space Mono', monospace; font-size: .66rem;
  letter-spacing: .3em; color: var(--ocre); margin-bottom: 1.4rem;
}
.home-h1 {
  font-size: clamp(2.3rem, 5.5vw, 4.2rem); font-weight: 700;
  line-height: 1.05; letter-spacing: -.02em; margin-bottom: 1.4rem;
}
.home-h1 em { font-style: normal; color: var(--ocre); }
.home-sub { font-size: 1.1rem; color: var(--fg-soft); max-width: 56ch; margin: 0 auto 2.4rem; }

/* cycle — 5 étapes */
.cycle { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-top: 1rem; }
.cycle-step {
  position: relative; padding: 1.4rem 1.2rem 1.5rem;
  background: var(--bg-card); border: 1px solid var(--line);
  text-align: left;
}
.cycle-step::after {
  content: '→'; position: absolute; right: -.95rem; top: 50%; transform: translateY(-50%);
  font-family: 'Space Mono', monospace; font-size: 1.2rem; color: var(--ocre);
  z-index: 2;
}
.cycle-step:last-child::after { content: '↻'; right: .8rem; top: 1rem; transform: none; background: none; opacity: .6; }
.cycle-num { font-family: 'Space Mono', monospace; font-size: .6rem; letter-spacing: .2em; color: var(--fg-mute); display: block; margin-bottom: .6rem; }
.cycle-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.cycle-text { font-size: .85rem; color: var(--fg-soft); margin-bottom: .8rem; }
.cycle-prod {
  font-family: 'Space Mono', monospace; font-size: .58rem; font-weight: 700;
  letter-spacing: .12em; padding: .2rem .55rem; display: inline-block;
}
.cycle-prod.pro { background: rgba(187,106,46,.18); color: var(--ocre-clair); }
.cycle-prod.entry { background: rgba(230,201,168,.14); color: var(--gres-lt); border: 1px solid rgba(230,201,168,.3); }

/* cartes produit */
.products { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 880px) { .products { grid-template-columns: 1fr 1fr; } }
.product {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); background: var(--bg-card);
  text-decoration: none; color: var(--fg);
  transition: transform .25s, border-color .25s;
}
.product:hover { transform: translateY(-4px); border-color: var(--ocre); }
.product-img { border-bottom: 1px solid var(--line); }
.product-img img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: top; }
.product-body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.product-logo { height: 30px; width: auto; align-self: flex-start; }
.product-pitch { color: var(--fg-soft); font-size: .96rem; flex: 1; }
.product-cta {
  font-family: 'Space Mono', monospace; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; color: var(--ocre);
}
.product:hover .product-cta { text-decoration: underline; }

/* bandeau synergie */
.syn-strip {
  display: grid; gap: 1.6rem; grid-template-columns: 1fr;
  border-left: 4px solid var(--ocre); background: var(--accent-bg);
  padding: 2rem 1.8rem;
}
@media (min-width: 800px) { .syn-strip { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
.syn-strip h3 {
  font-family: 'Space Mono', monospace; font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ocre); margin-bottom: .5rem;
}
.syn-strip p { color: var(--fg-soft); font-size: .96rem; }
.syn-strip strong { color: var(--fg); }

/* conférence — facade vidéo (pas d'iframe avant clic) */
.video { max-width: 880px; }
.video-facade, .video iframe {
  display: block; width: 100%; aspect-ratio: 16/9; border: 0;
  position: relative; padding: 0; cursor: pointer; overflow: hidden;
  background: var(--gouffre); border: 1px solid var(--line);
  box-shadow: 8px 8px 0 rgba(187,106,46,.16);
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .25s, transform .4s; }
.video-facade:hover img { opacity: .82; transform: scale(1.02); }
.video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.video-play svg { filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); transition: transform .25s; }
.video-facade:hover .video-play svg { transform: scale(1.12); }
.video-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-family: 'Space Mono', monospace; font-size: .66rem; letter-spacing: .08em;
  color: var(--calcaire); text-align: left; padding: 1.4rem 1rem .7rem;
  background: linear-gradient(transparent, rgba(28,24,18,.85));
}

/* ════════ PRO — page produit ════════ */
.pro-hero { padding: 8.5rem 0 4.5rem; }
.pro-hero-grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .pro-hero-grid { grid-template-columns: .95fr 1.05fr; } }
.pro-hero .s-title { font-size: clamp(2.2rem, 4.6vw, 3.4rem); max-width: none; }
.hero-tagline {
  font-family: 'Space Mono', monospace; font-size: .66rem;
  letter-spacing: .28em; color: var(--ocre); margin-bottom: 1.2rem;
}
.hero-logo { height: 56px; width: auto; margin-bottom: 1.6rem; display: block; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.8rem 0 1.2rem; }
.hero-meta { font-family: 'Space Mono', monospace; font-size: .66rem; letter-spacing: .12em; color: var(--fg-mute); }
.hero-choices { justify-content: center; gap: 2.5rem; }
.hero-choice { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.hero-choice .btn-primary, .hero-choice .btn-ghost { width: 100%; justify-content: center; }
.hero-choice-logo { height: 36px; width: auto; display: block; opacity: .85; transition: opacity .2s; }
.hero-choice a:hover .hero-choice-logo { opacity: 1; }

/* problème compact — liste inline */
.prob-line { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.prob-item { border-top: 2px solid var(--ocre); padding-top: 1rem; }
.prob-item h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.prob-item h3 span { font-family: 'Space Mono', monospace; font-size: .7rem; color: var(--ocre); margin-right: .5rem; }
.prob-item p { font-size: .9rem; color: var(--fg-soft); }

/* pipeline compact — grille 2×3 */
.pipe-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); grid-template-columns: 1fr; }
@media (min-width: 720px) { .pipe-grid { grid-template-columns: 1fr 1fr 1fr; } }
.pipe-cell { background: var(--bg); padding: 1.4rem 1.3rem 1.5rem; }
.section.alt .pipe-cell { background: var(--bg-alt); }
.pipe-cell .n { font-family: 'Space Mono', monospace; font-size: .62rem; letter-spacing: .2em; color: var(--ocre); display: block; margin-bottom: .55rem; }
.pipe-cell h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.pipe-cell p { font-size: .85rem; color: var(--fg-soft); }
.pipe-note {
  margin-top: 1.6rem; padding: 1rem 1.2rem; font-size: .85rem; line-height: 1.55;
  color: var(--fg-soft); border-left: 3px solid var(--ocre); background: var(--accent-bg);
}
.pipe-note strong { color: var(--fg); }

/* priorités inline */
.prio-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.prio {
  font-family: 'Space Mono', monospace; font-size: .68rem; font-weight: 700;
  padding: .45rem .8rem; letter-spacing: .06em; border-left: 3px solid;
}
.prio-p1 { color: #e74c3c; border-color: #c0392b; background: rgba(192,57,43,.1); }
.prio-p2 { color: #e67e22; border-color: #d4841a; background: rgba(212,132,26,.1); }
.prio-p3 { color: #d4b50c; border-color: #b8960a; background: rgba(184,150,10,.1); }
.prio-ex { color: #95a5a6; border-color: #7f8c8d; background: rgba(127,140,141,.1); }

/* terrain + IA : split avec téléphones */
.field-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 920px) { .field-grid { grid-template-columns: 1.25fr .75fr; } }
.phones { display: flex; gap: 1rem; justify-content: center; align-items: flex-start; }
.phone {
  width: min(42%, 170px); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; background: var(--bg-card);
  box-shadow: 5px 5px 0 rgba(187,106,46,.14);
  flex-shrink: 1; min-width: 0;
}
.phone img { display: block; width: 100%; }
.phone:last-child { margin-top: 1.4rem; }
.feat-list { list-style: none; display: grid; gap: 1rem; }
.feat-list li { position: relative; padding-left: 2.2rem; font-size: .95rem; color: var(--fg-soft); }
.feat-list li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--ocre); font-family: 'Space Mono', monospace; }
.feat-list strong { color: var(--fg); }

/* limites compactes */
.lim-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.lim-item { font-size: .9rem; color: var(--fg-soft); padding-left: 1rem; border-left: 2px solid var(--line); }
.lim-item strong { color: var(--fg); display: block; margin-bottom: .25rem; }

/* ════════ ENTRY — carnet (repris du design existant) ════════ */
[data-theme="entry"] .container.carnet { padding-left: 3rem; }
[data-theme="entry"] .container.carnet::before {
  content: ''; position: absolute; left: 1.4rem; top: 0; bottom: 0;
  width: 1px; background: var(--ocre); opacity: .35;
}
.entry-hero { padding: 8.5rem 0 4.5rem; }
.entry-hero-grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .entry-hero-grid { grid-template-columns: 1.05fr .95fr; } }

/* tabs (repris, branchés sur tokens) */
.tabs-wrap { background: var(--bg-alt); border: 1px solid var(--line); }
.tabs-head { display: flex; flex-wrap: wrap; background: var(--pierre); }
.tab-btn {
  flex: 1 1 auto; min-width: 105px; padding: .9rem .8rem;
  background: transparent; border: 0; border-right: 1px solid rgba(243,237,226,.08);
  font-family: 'Space Mono', monospace; font-size: .66rem; font-weight: 700;
  letter-spacing: .06em; color: var(--gres-lt); cursor: pointer;
  display: flex; flex-direction: column; gap: .2rem; text-align: left;
  transition: color .15s, background .15s;
}
.tab-btn .tab-n { font-size: .54rem; letter-spacing: .2em; opacity: .55; }
.tab-btn:hover { color: var(--ocre-clair); }
.tab-btn.is-active { color: var(--pierre); background: var(--bg-alt); position: relative; }
.tab-btn.is-active .tab-n { color: var(--ocre); opacity: 1; }
.tab-btn.is-active::after { content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 3px; background: var(--ocre); }
.tabs-body { padding: 2.2rem 1.8rem; }
.tab-panel { display: none; }
.tab-panel.is-active { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .tab-panel.is-active { grid-template-columns: 1.1fr .9fr; align-items: start; } }
.tab-h { font-size: 1.5rem; font-weight: 700; margin-bottom: .7rem; }
.tab-p { color: var(--fg-soft); margin-bottom: .8rem; font-size: .97rem; }

/* schémas couches */
.schema-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.schema { background: var(--bg-card); border: 1px solid var(--gres); padding: 1.4rem; box-shadow: 4px 4px 0 var(--ocre-clair); }
.schema-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1rem; padding-bottom: .7rem; border-bottom: 1px dashed var(--gres); }
.schema-name { font-size: 1.15rem; font-weight: 700; }
.schema-type { font-family: 'Space Mono', monospace; font-size: .68rem; color: var(--ocre-dk); letter-spacing: .12em; background: var(--ocre-clair); padding: .15rem .55rem; }
.schema-fields { list-style: none; display: grid; gap: .3rem; font-family: 'Space Mono', monospace; font-size: .8rem; color: var(--fg-soft); }
.schema-fields li { display: flex; justify-content: space-between; gap: 1rem; padding: .15rem 0; border-bottom: 1px dotted var(--line); }
.schema-fields li b { color: var(--fg); }
.schema-fields li span { color: var(--fg-mute); font-size: .7rem; }

/* à retenir */
.retenir { background: var(--bg-alt); border-top: 3px solid var(--ocre); border-bottom: 3px solid var(--ocre); padding: 1.6rem 1.4rem; }
.retenir-list { list-style: none; counter-reset: rt; display: grid; gap: 1rem; }
.retenir-list li { counter-increment: rt; display: grid; grid-template-columns: 2.4rem 1fr; gap: .9rem; padding-bottom: 1rem; border-bottom: 1px dotted var(--gres); font-size: .94rem; color: var(--fg-soft); }
.retenir-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.retenir-list li::before { content: counter(rt, decimal-leading-zero); font-family: 'Space Mono', monospace; font-size: 1.15rem; color: var(--ocre); font-weight: 700; }
.retenir-list strong { color: var(--fg); }

/* ── FOOTER ── */
footer {
  padding: 4rem 2rem 3rem; text-align: center;
  background: var(--pierre); color: var(--gres-lt);
  border-top: 4px solid var(--ocre); position: relative; z-index: 1;
}
.ft-logos { display: flex; gap: 2rem; justify-content: center; align-items: center; margin-bottom: 1.6rem; flex-wrap: wrap; }
.ft-logos img, .ft-logos svg { height: 44px; width: auto; opacity: .9; }
.ft-sub { font-size: .93rem; max-width: 52ch; margin: 0 auto 1.2rem; }
.ft-contact { font-family: 'Space Mono', monospace; font-size: .76rem; letter-spacing: .04em; color: var(--gres); margin-bottom: 1.6rem; }
.ft-contact a { color: var(--ocre-clair); text-decoration: none; border-bottom: 1px dotted var(--ocre); }
.ft-contact a:hover { color: var(--calcaire); }
.ft-actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.ft-meta { font-family: 'Space Mono', monospace; font-size: .6rem; letter-spacing: .08em; color: var(--gres-dk); line-height: 1.9; }
.ft-meta a { color: var(--gres); text-decoration: none; }
.ft-meta a:hover { color: var(--ocre-clair); }

/* ── MOBILE ── */
@media (max-width: 720px) {
  nav { padding: .65rem .9rem; gap: .5rem; }
  .nav-brand img, .nav-brand svg { height: 26px; }
  .nav-links { font-size: .58rem; position: static; transform: none; }
  .nav-links a { padding: .45rem .45rem; }
  .nav-gh { padding: .45rem .65rem; font-size: .6rem; }
  .nav-gh .gh-txt { display: none; }

  .section { padding: 3.6rem 0; }
  .home-hero, .pro-hero, .entry-hero { padding-top: 6.2rem; }
  .home-sub, .s-intro { font-size: .96rem; }
  .btn-primary, .btn-ghost { padding: .75rem 1.05rem; font-size: .7rem; }
  .cycle-step::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -1rem; transform: translateX(-50%); }
  .cycle-step:last-child::after { content: '↻'; left: auto; right: .8rem; bottom: auto; top: 1rem; transform: none; }
  .shot { box-shadow: 4px 4px 0 rgba(187,106,46,.16); }
  .phones { gap: .8rem; }
  .phone:last-child { margin-top: 1.4rem; }
  [data-theme="entry"] .container.carnet { padding-left: 1.9rem; }
  [data-theme="entry"] .container.carnet::before { left: .85rem; }
  .tab-btn { min-width: calc(50% - 1px); }
  .tabs-body { padding: 1.5rem 1rem; }
  .ft-logos img, .ft-logos svg { height: 34px; }
}
