:root {
  --nav: #0a1d29;
  --nav-2: #102f3a;
  --surface: #f7f5ef;
  --surface-2: #eeeae0;
  --text: #10242b;
  --muted: #69747a;
  --teal: #176d64;
  --accent: #45cfc1;
  --accent-soft: #bcefe8;
  --line: rgba(16, 36, 43, 0.16);
  --white-line: rgba(255, 255, 255, 0.14);
  --success: #2f7d5b;
  --warning: #9a6700;
  --danger: #a84e3e;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --pad: clamp(24px, 5vw, 76px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--accent); color: var(--nav); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--accent);
  color: var(--nav);
  border-radius: 10px;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: #eef8f8;
  border-bottom: 1px solid transparent;
  transition: height .3s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(10, 29, 41, .82);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--white-line);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-name { font-size: 17px; font-weight: 760; letter-spacing: -.02em; }
.brand-by { color: rgba(255,255,255,.52); font-size: 12px; margin-left: 2px; }
.brand-mark { position: relative; width: 25px; height: 25px; display: inline-block; }
.brand-mark span { position: absolute; display: block; background: var(--accent); border-radius: 999px; transform-origin: center; }
.brand-mark span:nth-child(1) { width: 21px; height: 5px; left: 2px; top: 4px; transform: rotate(-16deg); }
.brand-mark span:nth-child(2) { width: 18px; height: 5px; left: 4px; top: 10px; transform: rotate(16deg); }
.brand-mark span:nth-child(3) { width: 12px; height: 5px; left: 7px; top: 17px; transform: rotate(-16deg); }
.brand-mark.small { transform: scale(.82); transform-origin: left center; }

.nav { display: flex; align-items: center; gap: 22px; font-size: 13px; }
.nav a:not(.nav-cta) { color: rgba(255,255,255,.68); transition: color .2s ease; }
.nav a:not(.nav-cta):hover { color: #fff; }
.language-toggle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  min-width: 78px;
  height: 38px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.52);
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  overflow: hidden;
}
.language-toggle::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: var(--accent);
  transition: transform .22s ease;
}
.language-toggle[data-language="fr"]::before { transform: translateX(100%); }
.language-toggle span { position: relative; z-index: 1; display: grid; place-items: center; height: 100%; transition: color .2s ease; }
.language-toggle[data-language="en"] [data-language-option="en"],
.language-toggle[data-language="fr"] [data-language-option="fr"] { color: var(--nav); }
.language-toggle:hover { border-color: rgba(255,255,255,.28); }
.language-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.nav-cta {
  background: var(--accent);
  color: var(--nav);
  padding: 11px 17px;
  border-radius: 999px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); background: #6be0d5; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
  padding: 138px var(--pad) 94px;
  background:
    radial-gradient(circle at 78% 20%, rgba(69,207,193,.13), transparent 25%),
    radial-gradient(circle at 54% 86%, rgba(23,109,100,.18), transparent 30%),
    var(--nav);
  color: #f8fbfa;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}
.hero-copy, .hero-stage { position: relative; z-index: 2; }
.hero-copy { max-width: 760px; }
.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 780;
  color: var(--teal);
}
.hero .eyebrow { color: rgba(199,246,239,.77); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(69,207,193,.46); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(69,207,193,0); } 100% { box-shadow: 0 0 0 0 rgba(69,207,193,0); } }

.hero h1 {
  margin: 24px 0 24px;
  max-width: 820px;
  font-size: clamp(58px, 6.2vw, 108px);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 620;
}
.hero h1 span { color: var(--accent); }
html[lang="fr"] .hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 5.7vw, 96px);
}
.hero-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(239,248,247,.66);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.58;
  letter-spacing: -.015em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--nav); box-shadow: 0 14px 40px rgba(69,207,193,.13); }
.button-primary:hover { background: #70e2d7; box-shadow: 0 18px 54px rgba(69,207,193,.2); }
.button-meta { opacity: .62; font-size: 11px; font-weight: 700; }
.button-ghost { color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.19); background: rgba(255,255,255,.035); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.button.large { min-height: 64px; padding-inline: 28px; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 9px 22px; margin-top: 36px; color: rgba(255,255,255,.46); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); opacity: .7; }

.hero-stage { min-width: 0; perspective: 1600px; }
.stage-glow { position: absolute; width: 75%; aspect-ratio: 1; right: 2%; top: 3%; border-radius: 50%; background: rgba(69,207,193,.12); filter: blur(60px); }
.app-window {
  position: relative;
  width: min(100%, 880px);
  margin-left: auto;
  min-height: 610px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 40px 120px rgba(0,0,0,.46), 0 0 0 8px rgba(255,255,255,.025);
  transform: rotateY(-5deg) rotateX(2deg) translateZ(0);
}
.window-bar { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px 0 20px; border-bottom: 1px solid #d9dedc; background: rgba(255,255,255,.4); }
.window-brand { display: flex; align-items: center; gap: 8px; font-weight: 760; font-size: 13px; }
.mini-mark { width: 17px; height: 17px; border-radius: 5px; background: var(--teal); position: relative; overflow: hidden; }
.mini-mark::after { content:""; position:absolute; width: 12px; height: 4px; background: var(--accent); border-radius: 3px; left: 2px; top: 6px; transform: rotate(-18deg); }
.window-dots { display: flex; gap: 7px; }
.window-dots span { width: 9px; height: 9px; border-radius: 50%; background: #cbd1cf; }
.window-body { display: grid; grid-template-columns: 164px 1fr; min-height: 552px; }
.mock-sidebar { padding: 22px 12px; background: var(--nav); color: rgba(255,255,255,.56); font-size: 11px; display: flex; flex-direction: column; gap: 7px; }
.mock-sidebar div { display: flex; align-items: center; gap: 9px; padding: 11px 12px; border-radius: 8px; }
.mock-sidebar div span { width: 7px; height: 7px; border: 1px solid rgba(255,255,255,.45); border-radius: 2px; }
.mock-sidebar .sidebar-active { color: #fff; background: #17414a; }
.mock-sidebar .sidebar-active span { background: var(--accent); border-color: var(--accent); }
.mock-content { padding: 28px; min-width: 0; }
.mock-topline { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.mock-topline h2 { margin: 5px 0 0; font-size: 26px; letter-spacing: -.035em; }
.mock-kicker { font-size: 9px; letter-spacing: .16em; color: var(--teal); font-weight: 800; }
.status-pill, .soft-badge { display: inline-flex; align-items: center; white-space: nowrap; border-radius: 999px; padding: 7px 10px; font-size: 9px; font-weight: 800; }
.status-pill { background: #e7f3ec; color: var(--success); }
.soft-badge { background: #e7f1ee; color: var(--teal); }
.machine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; }
.machine-card { border: 1px solid #d9dedc; padding: 15px; border-radius: 12px; background: rgba(255,255,255,.5); }
.machine-card .metric-label { display: block; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.machine-card strong { display: block; margin-top: 10px; font-size: 14px; }
.machine-card small { display: block; margin-top: 4px; color: var(--success); font-size: 9px; }
.recommendation-card { margin-top: 14px; border: 1px solid #d9dedc; border-radius: 14px; background: #fff; overflow: hidden; }
.recommendation-head { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px 16px 13px; border-bottom:1px solid #e4e7e5; }
.recommendation-head strong { display:block; margin-top: 4px; font-size:13px; }
.app-list { padding: 3px 12px 9px; }
.app-row { display:grid; grid-template-columns: 34px 1fr auto; align-items:center; gap:10px; padding:11px 4px; border-bottom:1px solid #edf0ef; }
.app-row:last-child { border-bottom: 0; }
.app-row.faded { opacity: .5; }
.app-icon { width: 30px; height: 30px; display:grid; place-items:center; }
.app-icon img { width:28px; height:28px; display:block; object-fit:contain; }
.app-row strong { display:block; font-size:11px; }.app-row small { display:block; margin-top:3px; color:var(--muted); font-size:8.5px; }
.installed, .ready, .gem { font-size:8px; font-weight:800; padding:5px 7px; border-radius:999px; }
.installed { color:var(--success); background:#e7f3ec; }.ready { color:var(--teal); background:#e7f1ee; }.gem { color:#6a5310; background:#f7eedb; }

.floating-note { position: absolute; z-index: 3; display:flex; align-items:center; gap:10px; min-width: 170px; padding: 12px 14px; border-radius: 14px; background: rgba(7,22,30,.82); color:#fff; border:1px solid rgba(255,255,255,.13); backdrop-filter:blur(14px); box-shadow:0 18px 45px rgba(0,0,0,.25); }
.floating-note .note-icon { width:28px; height:28px; border-radius:50%; display:grid; place-items:center; color:var(--nav); background:var(--accent); font-size:13px; font-weight:900; }
.floating-note strong { display:block; font-size:10px; }.floating-note small { display:block; margin-top:2px; color:rgba(255,255,255,.5); font-size:8.5px; }
.note-a { right: -20px; top: 18%; }.note-b { left: -26px; bottom: 12%; }
.hero-orbit { position:absolute; border-radius:50%; border:1px solid rgba(69,207,193,.11); pointer-events:none; }
.hero-orbit-a { width:680px; height:680px; right:-240px; top:30px; }.hero-orbit-b { width:980px; height:980px; right:-420px; top:-120px; }
.scroll-hint { position:absolute; left:var(--pad); bottom:24px; z-index:2; display:flex; align-items:center; gap:14px; color:rgba(255,255,255,.32); font-size:10px; text-transform:uppercase; letter-spacing:.12em; }
.scroll-hint i { display:block; width:44px; height:1px; background:rgba(255,255,255,.3); position:relative; overflow:hidden; }
.scroll-hint i::after { content:""; position:absolute; width:14px; height:1px; background:var(--accent); animation:scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { from { left:-14px; } to { left:44px; } }

.section { padding: clamp(92px, 10vw, 160px) var(--pad); }
.manifesto { background: var(--surface); }
.section-label { margin-bottom: 34px; }
.section-label.light { color: var(--accent-soft); }
.manifesto-grid { display:grid; grid-template-columns:minmax(0,1.4fr) minmax(320px,.6fr); gap: clamp(50px,8vw,120px); align-items:start; }
.display-copy { margin:0; font-size:clamp(48px,6vw,92px); line-height:.98; letter-spacing:-.055em; font-weight:570; }
.display-copy em { color:var(--muted); font-style:normal; font-weight:430; }.display-copy span { color:var(--teal); }
.manifesto-copy { padding-top:12px; }
.manifesto-copy p { margin:0 0 25px; font-size:17px; line-height:1.72; color:var(--muted); }
.proof-strip { margin-top: clamp(70px,9vw,130px); display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.proof-card { position:relative; min-height:170px; padding:30px 28px 30px 0; border-right:1px solid var(--line); display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-start; }
.proof-card:not(:first-child) { padding-left:28px; }
.proof-card:last-child { border-right:0; }
.proof-icon { width:46px; height:46px; margin:0 0 24px; display:grid; place-items:center; border-radius:14px; color:var(--teal); background:rgba(23,109,100,.08); border:1px solid rgba(23,109,100,.12); }
.proof-icon svg { width:25px; height:25px; display:block; stroke:currentColor; stroke-width:1.65; stroke-linecap:round; stroke-linejoin:round; }
.proof-card strong { display:block; font-size:13px; }
.proof-card > span:last-child { display:block; margin-top:8px; color:var(--muted); font-size:12px; line-height:1.5; }

.flow { background:#e9eee9; }
.flow-layout { display:grid; grid-template-columns:minmax(280px,.38fr) minmax(0,.62fr); gap:clamp(60px,9vw,150px); align-items:start; }
.flow-intro { position:sticky; top:110px; }
.flow-intro h2, .catalogue-head h2, .trust-copy h2, .closing-card h2 { margin:0; font-size:clamp(44px,5vw,76px); line-height:1; letter-spacing:-.05em; font-weight:590; }
.flow-intro p { max-width:420px; margin:24px 0 0; color:var(--muted); font-size:16px; line-height:1.65; }
.flow-steps { display:flex; flex-direction:column; gap:18px; }
.flow-step { display:grid; grid-template-columns:58px minmax(220px,.9fr) minmax(260px,1.1fr); gap:24px; align-items:center; min-height:300px; padding:30px; background:rgba(247,245,239,.82); border:1px solid rgba(16,36,43,.11); border-radius:26px; box-shadow:0 10px 50px rgba(16,36,43,.035); }
.step-number { align-self:start; color:var(--teal); font-size:11px; font-weight:800; letter-spacing:.1em; }
.step-visual { min-height:190px; border-radius:20px; position:relative; overflow:hidden; background:var(--nav); }
.step-copy .step-kicker { display:block; color:var(--teal); font-size:10px; letter-spacing:.14em; font-weight:800; }
.step-copy h3 { margin:10px 0 13px; font-size:clamp(24px,2.25vw,36px); line-height:1.08; letter-spacing:-.035em; }
.step-copy p { margin:0; color:var(--muted); font-size:14px; line-height:1.62; }
.radar { position:absolute; width:146px; height:146px; border:1px solid rgba(69,207,193,.22); border-radius:50%; left:50%; top:50%; transform:translate(-50%,-50%); }
.radar::before,.radar::after,.radar i { content:""; position:absolute; inset:18%; border:1px solid rgba(69,207,193,.16); border-radius:50%; }.radar::after { inset:36%; }.radar i:nth-child(1) { inset:50% 0 auto; height:1px; border:0; border-top:1px solid rgba(69,207,193,.18); border-radius:0; }.radar i:nth-child(2){ inset:0 auto 0 50%; width:1px; border:0; border-left:1px solid rgba(69,207,193,.18); border-radius:0; }.radar b { position:absolute; width:38px; height:38px; background:rgba(69,207,193,.16); border:1px solid var(--accent); border-radius:50%; left:54%; top:33%; box-shadow:0 0 34px rgba(69,207,193,.28); }
.radar-tag { position:absolute; padding:6px 8px; border-radius:999px; background:rgba(255,255,255,.08); color:#d7f5f1; border:1px solid rgba(255,255,255,.1); font-size:8px; }.tag-one{left:12px;top:22px}.tag-two{right:10px;top:78px}.tag-three{left:28px;bottom:20px}
.profile-visual { display:flex; flex-wrap:wrap; align-content:center; justify-content:center; gap:9px; padding:24px; }.profile-chip { padding:10px 12px; border-radius:999px; color:rgba(255,255,255,.5); border:1px solid rgba(255,255,255,.13); font-size:10px; }.profile-chip.active { background:var(--accent); color:var(--nav); border-color:var(--accent); transform:scale(1.08); font-weight:800; }
.stack-visual { display:grid; place-items:center; }.stack-card { position:absolute; width:70%; padding:17px; border-radius:14px; background:#f7f5ef; color:var(--text); font-size:10px; border:1px solid #d9dedc; box-shadow:0 12px 30px rgba(0,0,0,.18); }.stack-card.back{transform:translateY(-40px) rotate(-7deg);opacity:.46}.stack-card.middle{transform:translateY(1px) rotate(5deg);opacity:.72}.stack-card.front{transform:translateY(42px) rotate(-1deg);border-color:var(--accent);}
.install-visual { padding:28px 22px; color:#fff; }.install-track{height:6px;background:rgba(255,255,255,.11);border-radius:999px;overflow:hidden;margin:8px 0 27px}.install-track span{display:block;width:var(--w);height:100%;background:var(--accent);border-radius:inherit}.install-row{display:flex;justify-content:space-between;gap:10px;padding:11px 0;border-bottom:1px solid rgba(255,255,255,.1);font-size:9px}.install-row span{color:var(--accent)}.install-row.muted{opacity:.45}
.recipe-visual { display:grid;place-items:center;padding:20px}.recipe-file{width:72%;padding:22px;border-radius:14px;background:#f7f5ef;color:var(--text);font-family:"SFMono-Regular",Consolas,monospace;font-size:10px;box-shadow:0 20px 50px rgba(0,0,0,.24)}.recipe-file span,.recipe-file small{display:block}.recipe-file small{padding:6px 0 6px 16px;color:var(--teal)}

.catalogue { overflow:hidden; }
.catalogue-head { display:flex; justify-content:space-between; align-items:end; gap:60px; }
.catalogue-head > div { max-width:900px; }.catalogue-head p { max-width:350px; margin:0 0 7px; color:var(--muted); font-size:15px; line-height:1.65; }
.marquee { margin:80px calc(var(--pad) * -1) 0; overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.marquee-track { width:max-content; display:flex; gap:48px; padding:25px 0; animation:marquee 30s linear infinite; }
.marquee span { display:inline-flex; align-items:center; gap:11px; font-size:14px; font-weight:650; white-space:nowrap; }
.app-logo { width:32px; height:32px; display:block; object-fit:contain; flex:0 0 auto; }
@keyframes marquee { to { transform:translateX(-50%); } }

.trust { background:var(--nav); color:#fff; }
.trust-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(440px,1.1fr); gap:clamp(60px,10vw,160px); align-items:start; }
.trust-copy h2 { color:#f4f8f7; max-width:820px; }.trust-copy p { max-width:700px; margin:30px 0 0; color:rgba(255,255,255,.58); font-size:17px; line-height:1.72; }
.text-link { display:inline-flex; gap:10px; margin-top:28px; color:var(--accent); font-size:13px; font-weight:760; }
.trust-board { border-top:1px solid var(--white-line); }
.trust-row { display:grid; grid-template-columns:54px 1fr; gap:18px; padding:25px 0; border-bottom:1px solid var(--white-line); }
.trust-icon { color:var(--accent); font-size:10px; letter-spacing:.08em; font-weight:800; }.trust-row strong{display:block;font-size:18px}.trust-row small{display:block;margin-top:8px;color:rgba(255,255,255,.5);font-size:13px;line-height:1.55}

.closing { background:var(--surface); }
.closing-card { position:relative; overflow:hidden; padding:clamp(46px,7vw,92px); border-radius:var(--radius-lg); background:var(--teal); color:#fff; min-height:520px; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; }
.closing-card .section-label { color:var(--accent-soft); }.closing-card h2 { max-width:980px; font-size:clamp(58px,7vw,108px); line-height:.92; }.closing-card > p { max-width:620px; color:rgba(255,255,255,.65); font-size:17px; line-height:1.65; }
.closing-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }.light-ghost{color:#fff;border-color:rgba(255,255,255,.26)}.release-note{font-size:10px!important;text-transform:uppercase;letter-spacing:.09em;opacity:.8}
.closing-orbit { position:absolute; width:700px; height:700px; border-radius:50%; border:1px solid rgba(255,255,255,.13); right:-240px; bottom:-360px; }.closing-orbit::before,.closing-orbit::after{content:"";position:absolute;border:1px solid rgba(255,255,255,.12);border-radius:50%}.closing-orbit::before{inset:14%}.closing-orbit::after{inset:30%}

.footer { display:grid; grid-template-columns:1fr auto auto; align-items:center; gap:36px; padding:34px var(--pad); background:#071820; color:#fff; border-top:1px solid var(--white-line); }
.footer-brand { display:flex; align-items:center; gap:8px; }.footer-brand strong{display:block;font-size:13px}.footer-brand small{display:block;margin-top:3px;color:rgba(255,255,255,.4);font-size:9px}.footer-links{display:flex;gap:24px}.footer-links a,.footer-copy{color:rgba(255,255,255,.5);font-size:10px}.footer-links a:hover{color:#fff}

.reveal { opacity:0; transform:translateY(24px); transition:opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 1180px) {
  .hero { grid-template-columns:1fr; padding-top:132px; min-height:auto; }
  .hero-copy { max-width:860px; }.hero h1{font-size:clamp(64px,9.6vw,100px)}html[lang="fr"] .hero h1{font-size:clamp(54px,7.9vw,82px)}
  .hero-stage { max-width:900px; margin:24px auto 20px; width:100%; }.app-window{margin:0 auto;transform:none}.note-a{right:-4px}.note-b{left:-6px}.scroll-hint{display:none}
  .manifesto-grid,.trust-grid { grid-template-columns:1fr; }.manifesto-copy{max-width:740px}.proof-strip{grid-template-columns:repeat(2,1fr)}.proof-card:nth-child(2){border-right:0}.proof-card:nth-child(3),.proof-card:nth-child(4){border-top:1px solid var(--line)}
  .flow-layout { grid-template-columns:1fr; }.flow-intro{position:static;max-width:800px}.flow-step{grid-template-columns:54px minmax(200px,.8fr) minmax(260px,1.2fr)}
}

@media (max-width: 820px) {
  :root { --pad: 22px; }
  .site-header { height:70px; }.brand-by,.nav a:not(.nav-cta){display:none}.nav{gap:9px}.language-toggle{min-width:70px;height:36px}
  .hero { padding-top:112px; padding-bottom:72px; }.hero h1{font-size:clamp(54px,14vw,76px)}html[lang="fr"] .hero h1{font-size:clamp(46px,11.5vw,64px);line-height:.94}.hero-lead{font-size:17px}.hero-proof{gap:8px 16px}
  .app-window{min-height:510px;border-radius:18px}.window-body{grid-template-columns:1fr;min-height:452px}.mock-sidebar{display:none}.mock-content{padding:20px}.machine-grid{grid-template-columns:1fr 1fr}.machine-card:last-child{display:none}.recommendation-head{align-items:flex-start;flex-direction:column}.note-a,.note-b{display:none}
  .section{padding-top:88px;padding-bottom:88px}.manifesto-grid{gap:38px}.display-copy{font-size:clamp(44px,12vw,68px)}.proof-strip{grid-template-columns:1fr}.proof-card,.proof-card:not(:first-child){min-height:0;padding:24px 0;border-right:0;border-top:1px solid var(--line)}.proof-card:first-child{border-top:0}.proof-icon{margin-bottom:18px}
  .flow-step{grid-template-columns:38px 1fr;padding:22px}.step-visual{grid-column:2;min-height:170px}.step-copy{grid-column:2}.flow-steps{gap:12px}
  .catalogue-head{align-items:start;flex-direction:column;gap:20px}.catalogue-head h2{font-size:clamp(42px,11vw,64px)}.marquee{margin-top:54px}
  .trust-grid{gap:52px}.trust-copy h2{font-size:clamp(42px,11vw,64px)}
  .closing-card{padding:38px 24px;border-radius:26px;min-height:500px}.closing-card h2{font-size:clamp(52px,14vw,76px)}.closing-actions{width:100%}.closing-actions .button{width:100%}
  .footer{grid-template-columns:1fr;gap:24px}.footer-links{justify-content:flex-start}.footer-copy{order:3}
}

@media (max-width: 520px) {
  .language-toggle{min-width:66px}.nav-cta{padding:10px 14px}.hero-actions{flex-direction:column}.hero-actions .button{width:100%}.button{justify-content:space-between}.hero-proof{font-size:9px}.machine-grid{grid-template-columns:1fr}.machine-card:nth-child(2){display:none}.mock-content{padding:16px}.mock-topline h2{font-size:21px}.app-window{min-height:470px}.window-body{min-height:412px}.app-row{grid-template-columns:30px 1fr}.app-row>span:last-child{display:none}
  .flow-step{grid-template-columns:1fr}.step-number,.step-visual,.step-copy{grid-column:1}.step-number{margin-bottom:-8px}.step-visual{min-height:160px}
}

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