{"id":32775,"date":"2026-09-24T09:35:38","date_gmt":"2026-09-24T09:35:38","guid":{"rendered":"https:\/\/www.cycloid.io\/?page_id=32775"},"modified":"2026-09-24T10:39:10","modified_gmt":"2026-09-24T10:39:10","slug":"accueil-developpeurs","status":"publish","type":"page","link":"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/","title":{"rendered":"Page d\u2019accueil \u2014 D\u00e9veloppeurs"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"32775\" class=\"elementor elementor-32775 elementor-32280\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4c7b760 e-con-full cy-pp-embed e-no-lazyload e-flex e-con e-parent\" data-id=\"4c7b760\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c537836 cy-pp-tpl elementor-widget elementor-widget-template\" data-id=\"c537836\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"32670\" class=\"elementor elementor-32670 elementor-32649 elementor-32649\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5e4f60 e-con-full cy-pp-js-root e-no-lazyload e-flex e-con e-parent\" data-id=\"a5e4f60\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6be3d7f cy-pp-js elementor-widget elementor-widget-shortcode\" data-id=\"6be3d7f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><script>\n\/* Homepage persona layer \u2014 behaviour only. No copy lives here.\n *\n * REDIRECT IS ON (Am\u00e9lia's decision, 2026-09-21): a returning visitor who chose a\n * persona is sent to that homepage. Both problems I raised are engineered around\n * rather than accepted \u2014 read this before changing any of it.\n *\n *  1. THE BACK BUTTON. The hop uses location.replace(), so \"\/\" is REPLACED in\n *     history rather than added to it. History goes [wherever they were] ->\n *     [Developers], so Back returns to where they came from, not to \"\/\" (which\n *     would bounce them forward again and trap them). Never change this to\n *     location.href = ... or assign to location.\n *\n *  2. THE FLASH. This script root is inserted as the FIRST root on the page and\n *     the redirect runs at PARSE TIME, not on DOMContentLoaded, so the decision\n *     is taken before the hero paints. It also hides the document until it has\n *     decided \u2014 behind a 400ms failsafe that reveals the page no matter what, so\n *     a JS error can never leave a blank homepage.\n *\n *  3. LOOPS. It redirects only when the stored key names a DIFFERENT page, only\n *     once per page load, and never when \"?nopersona=1\" is present \u2014 which is\n *     also the escape hatch for looking at the raw general page.\n *\n * IN-PLACE SWITCHING (her requirement, 2026-09-21): a pill segment or a chooser\n * card never reloads the page. The target persona's page is fetched once (on the\n * first hover or touch of the pill, or when the chooser opens), its widgets are\n * read by position, and the ones whose text differs are swapped into this page.\n * The section under the reader is re-anchored so nothing moves; the URL and title\n * follow with replaceState, so a refresh or a share lands on the right page. The\n * four pages stay the editable, crawlable source. Widgets are paired by class key,\n * nth with nth, so a widget added or re-classed on one page only excludes itself;\n * when fewer than 90% pair up the pages are no longer the same page and the click\n * is a plain navigation.\n *\n * Query switches (for review, never linked from the site):\n *     ?nopersona=1    no redirect, no chooser \u2014 the raw page\n *     ?persona=ask    no redirect, the chooser opens whatever is stored \u2014 this is\n *                     how to SEE the pop-up again after choosing or dismissing\n *   Inside the Elementor canvas (?elementor-preview=\u2026) the script does nothing at\n *   all: style.css renders both layers in flow there so they can be edited.\n *\/\n(function () {\n  'use strict';\n  var KEY = 'cy_pp_choice', HOURS = 24;\n  var URLS = {\"general\":\"\/fr\/\",\"platform\":\"\/fr\/accueil-plateforme-devops\/\",\"developers\":\"\/fr\/accueil-developpeurs\/\",\"executives\":\"\/fr\/accueil-dirigeants\/\"};                       \/* {persona: url} \u2014 the pill's native links override these at load *\/\n  var PAGES = {\"32771\":\"executives\",\"32773\":\"platform\",\"32775\":\"developers\",\"32777\":\"general\"};                     \/* {post id: persona} \u2014 which homepage this is *\/\n  \/* ONE shared template serves all four homepages, so the persona is read from the page\n     itself: WordPress puts page-id-N on <body>, and <body> is already open when this\n     script (the first thing inside it) runs. No match \u2192 behave as the general page. *\/\n  var ME = (function () {\n    var m = \/(?:^|\\s)page-id-(\\d+)(?:\\s|$)\/.exec((document.body && document.body.className) || '');\n    return (m && PAGES[m[1]]) || 'general';\n  })();\n  \/* the three colour knobs each page declares on :root (wp-port-homepage\/style.css KNOBS);\n     an inline declaration on <html> outranks :root, so the swap sets them there *\/\n  var KNOBS = {\n    executives: { pp: 'var(--cy-accent)', corner: 'var(--cy-accent)', glow: 'rgba(240,139,2,.55)' },\n    platform:   { pp: 'var(--cy-teal)',   corner: 'var(--cy-teal)',   glow: 'rgba(28,151,151,.55)' },\n    developers: { pp: 'var(--cy-devops)', corner: 'var(--cy-devops)', glow: 'rgba(60,84,119,.55)' },\n    general:    { pp: 'var(--cy-faint)',  corner: '#fff',             glow: 'rgba(128,132,139,.55)' }\n  };\n\n  function read() {\n    try {\n      var raw = localStorage.getItem(KEY);\n      if (!raw) return null;\n      var v = JSON.parse(raw);\n      if (!v || typeof v.t !== 'number') return null;\n      if (Date.now() - v.t > HOURS * 3600e3) { localStorage.removeItem(KEY); return null; }\n      return v.k;\n    } catch (e) { return null; }             \/* blocked storage: behave like a first visit *\/\n  }\n  function write(k) {\n    try { localStorage.setItem(KEY, JSON.stringify({ k: k, t: Date.now() })); } catch (e) {}\n  }\n  window.cyPP = { read: read, write: write, me: ME };\n\n  var params = String(window.location.search || '');\n  var inEditor = params.indexOf('elementor-preview') !== -1;\n  var ask = \/[?&]persona=ask(?:&|$)\/.test(params);\n  var optedOut = params.indexOf('nopersona=1') !== -1;\n  var el = document.documentElement;\n\n  if (inEditor) return;                      \/* the canvas is for editing, not for behaving *\/\n\n  \/* ---------- 1. the redirect, at parse time ---------- *\/\n  var HIDE = 'cy-pp-deciding';\n  function reveal() { el.classList.remove(HIDE); }\n\n  if (!optedOut && !ask && !window.__cyPPDecided) {\n    window.__cyPPDecided = true;\n    var stored = read();\n    if (stored && stored !== ME && URLS[stored]) {\n      el.classList.add(HIDE);\n      \/* failsafe: whatever happens, the page becomes visible *\/\n      setTimeout(reveal, 400);\n      window.addEventListener('pageshow', reveal);\n      try {\n        window.location.replace(URLS[stored]);   \/* replace, never assign \u2014 see note 1 *\/\n      } catch (e) { reveal(); }\n    }\n  }\n\n  \/* ---------- 2. the chooser, the pill and the in-place switch ---------- *\/\n  function ready(fn) {\n    if (document.readyState !== 'loading') fn();\n    else document.addEventListener('DOMContentLoaded', fn);\n  }\n\n  ready(function () {\n    reveal();\n    var root = document.querySelector('.cy-pp-modal-root');\n    var pill = document.querySelector('.cy-pp-pill-root');\n    var reduce = window.matchMedia && window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n    var qs = function (s, r) { return (r || document).querySelector(s); };\n    var qsa = function (s, r) { return Array.prototype.slice.call((r || document).querySelectorAll(s)); };\n    var revealPill = function () { if (pill) pill.classList.add('is-revealed'); };\n\n    \/* the destinations are the pill's own native links, so an edit in Elementor moves\n       the switch too; the baked copy above only serves the parse-time redirect *\/\n    if (pill) qsa('.cy-pp-seg', pill).forEach(function (s) {\n      var k = (s.className.match(\/cy-pp-seg-([a-z]+)\/) || [])[1], a = qs('a[href]', s);\n      if (k && a) URLS[k] = a.getAttribute('href');\n    });\n\n    \/* ---- the switch ---- *\/\n    var SEL = '[data-elementor-type=\"wp-page\"] .elementor-widget';\n    var OWN = '.cy-pp-modal-root,.cy-pp-pill-root,.cy-pp-js-root,.cy-pp-embed,.elementor-widget-template';\n    var cache = {}, pending = {};\n    function widgets(doc) { return qsa(SEL, doc).filter(function (w) { return !w.closest(OWN); }); }\n    function sigOne(w) {\n      return Array.prototype.filter.call(w.classList, function (c) { return \/^cy-hp-|^elementor-widget-[a-z-]+$\/.test(c); }).join(' ');\n    }\n    function norm(s) { return String(s || '').replace(\/\\s+\/g, ' ').trim(); }\n    function prefetch(k) {\n      if (!URLS[k] || k === ME || cache[k]) return Promise.resolve(cache[k] || null);\n      if (pending[k]) return pending[k];\n      pending[k] = fetch(URLS[k], { credentials: 'same-origin' })\n        .then(function (r) { if (!r.ok) throw new Error(String(r.status)); return r.text(); })\n        .then(function (html) {\n          var doc = new DOMParser().parseFromString(html, 'text\/html');\n          var list = widgets(doc);\n          cache[k] = { title: doc.title, widgets: list };\n          return cache[k];\n        })\n        .catch(function () { return null; })\n        .then(function (t) { delete pending[k]; return t; });\n      return pending[k];\n    }\n    function prefetchAll() { Object.keys(URLS).forEach(prefetch); }\n    \/* the page we started on is never fetched, so coming back to it would wait \u2014\n       snapshot its own widgets now (before the homepage script splits any words) *\/\n    cache[ME] = { title: document.title, widgets: widgets(document).map(function (w) { return w.cloneNode(true); }) };\n\n    \/* the homepage script's own word split, byte for byte, so a swapped title paints\n       word by word exactly like the ones that were there on load *\/\n    var probe = document.createElement('div');\n    function splitWords(h) {\n      h.innerHTML = h.innerHTML.split(\/<br\\s*\\\/?>\/i).map(function (seg) { probe.innerHTML = seg; return probe.textContent.split(\/(\\s+)\/).map(function (ch) { if (ch.trim() === '') return ch; return ch.split(\/(?<=-)\/).map(function (p) { return '<span class=\"w\">' + p + '<\/span>'; }).join(''); }).join(''); }).join('<br>');\n    }\n    \/* the testimonial's word list is captured once by the homepage script and goes\n       stale after a swap; this mirrors its formula for the words only *\/\n    var quoteWords = null;\n    function quoteUpdate() {\n      var pin = qs('.cy-hp-qregion'), sticky = qs('.cy-hp-qsticky');\n      if (!pin || !sticky || !quoteWords) return;\n      var r = pin.getBoundingClientRect(), vh = window.innerHeight, sc = r.height - vh, p = sc > 0 ? Math.min(1, Math.max(0, -r.top \/ sc)) : 1;\n      if (getComputedStyle(sticky).position !== 'sticky' || reduce) p = 1;\n      var lp = Math.min(1, Math.max(0, (p - 0.15) \/ 0.40));\n      var cut = lp > 0 ? Math.max(1, Math.round(lp * quoteWords.length)) : 0;\n      quoteWords.forEach(function (w, i) { w.style.opacity = i < cut ? '1' : ''; });\n    }\n    window.addEventListener('scroll', quoteUpdate, { passive: true });\n    window.addEventListener('resize', quoteUpdate);\n\n    function setCurrent(k) {\n      if (!pill) return;\n      Object.keys(KNOBS).forEach(function (p) { pill.classList.remove('cy-pp-me-' + p); });\n      pill.classList.add('cy-pp-me-' + k);\n      qsa('.cy-pp-seg', pill).forEach(function (s) { s.classList.toggle('is-current', s.classList.contains('cy-pp-seg-' + k)); });\n      var seg = qs('.cy-pp-seg-' + k + ' .elementor-button-text', pill), name = qs('.cy-pp-cur-name p', pill);\n      if (seg && name) name.textContent = seg.textContent.trim();\n    }\n\n    \/* widgets are paired by their cy-hp-* class key, nth with nth \u2014 the same\n       class#index addressing the four pages were built with \u2014 so a widget she adds\n       or re-classes on ONE page only excludes itself; everything else still swaps.\n       Below 90% pairing the pages are no longer the same page: plain navigation. *\/\n    function pair(cur, target) {\n      var pool = {};\n      target.widgets.forEach(function (w) { var key = sigOne(w); (pool[key] = pool[key] || []).push(w); });\n      var pairs = [], used = {};\n      cur.forEach(function (w) {\n        var key = sigOne(w), list = pool[key] || [], n = used[key] || 0;\n        if (n < list.length) { pairs.push([w, list[n]]); used[key] = n + 1; }\n      });\n      return pairs;\n    }\n    function apply(k, target) {\n      var t0 = (window.performance && performance.now) ? performance.now() : 0;\n      var cur = widgets(document);\n      if (!target || !target.widgets.length) return false;\n      var pairs = pair(cur, target);\n      if (pairs.length < cur.length * 0.9) return false;\n      \/* the first block under the top edge keeps its offset, whatever the copy above or\n         inside its band does to the heights. Anchoring on the band's own top was not\n         enough: copy inside the band above the reading point reflowed and the reader\n         drifted 107px (measured 2026-09-21). *\/\n      var anchor = null;\n      cur.some(function (w) { if (w.getBoundingClientRect().bottom > 24) { anchor = w; return true; } return false; });\n      var aTop = anchor ? anchor.getBoundingClientRect().top : 0;\n\n      var changed = [];\n      pairs.forEach(function (pr) {\n        var w = pr[0], t = pr[1];\n        var a1 = w.querySelector('a'), a2 = t.querySelector('a');\n        var hrefDiff = a1 && a2 && a1.getAttribute('href') !== a2.getAttribute('href');\n        if (norm(w.textContent) === norm(t.textContent) && !hrefDiff) return;\n        var h = w.querySelector('.elementor-heading-title'), th = t.querySelector('.elementor-heading-title');\n        if (h && th) {\n          h.innerHTML = th.innerHTML;\n          if (w.classList.contains('cy-hp-qtext')) { splitWords(h); quoteWords = qsa('.w', h); }\n          else if (w.classList.contains('cy-hp-sc') && !reduce) splitWords(h);\n        } else {\n          var bt = w.querySelector('.elementor-button-text'), tbt = t.querySelector('.elementor-button-text');\n          if (bt && tbt) {\n            bt.innerHTML = tbt.innerHTML;\n            var a = w.querySelector('a.elementor-button'), ta = t.querySelector('a.elementor-button');\n            if (a && ta && ta.getAttribute('href')) a.setAttribute('href', ta.getAttribute('href'));\n          } else {\n            var c = w.querySelector('.elementor-widget-container'), tc = t.querySelector('.elementor-widget-container');\n            if (c && tc) c.innerHTML = tc.innerHTML; else w.innerHTML = t.innerHTML;\n          }\n        }\n        w.classList.remove('cy-pp-swapped');\n        changed.push(w);\n      });\n      \/* one animation restart for all of them on the next frame \u2014 restarting each one with a\n         forced layout cost ~1s for 75 widgets (measured 2026-09-21); the swap must be instant *\/\n      if (!reduce && changed.length) {\n        requestAnimationFrame(function () { changed.forEach(function (w) { w.classList.add('cy-pp-swapped'); }); });\n      }\n      window.__cyPPLastSwap = { changed: changed.length, ms: 0 };\n\n      var kn = KNOBS[k];\n      if (kn) { el.style.setProperty('--cy-pp', kn.pp); el.style.setProperty('--cy-pp-corner', kn.corner); el.style.setProperty('--cy-glow', kn.glow); }\n      if (target.title) document.title = target.title;\n      try { history.replaceState(null, '', URLS[k]); } catch (e) {}\n      ME = k; window.cyPP.me = k; write(k);\n      setCurrent(k);\n\n      if (anchor) {\n        var d = anchor.getBoundingClientRect().top - aTop;\n        if (Math.abs(d) > 0.5) {\n          var sb = el.style.scrollBehavior; el.style.scrollBehavior = 'auto';\n          window.scrollBy(0, d);\n          el.style.scrollBehavior = sb;\n        }\n      }\n      if (window.__cyHpPaint) { try { window.__cyHpPaint(); } catch (e) {} }\n      quoteUpdate();\n      window.dispatchEvent(new Event('scroll'));\n      if (t0) window.__cyPPLastSwap.ms = Math.round(performance.now() - t0);\n      return true;\n    }\n    function nav(k) { write(k); window.location.href = URLS[k]; }\n    function loading(k, on) {\n      var seg = pill && qs('.cy-pp-seg-' + k, pill);\n      if (seg) seg.classList.toggle('is-loading', !!on);\n    }\n    \/* swap when the page is here; when it is still on its way the clicked segment\n       pulses and the swap runs the moment it lands; navigate only when it never does *\/\n    function go(k) {\n      if (k === ME || !URLS[k]) return;\n      if (cache[k]) { if (!apply(k, cache[k])) nav(k); return; }\n      var done = false;\n      loading(k, true);\n      var timer = setTimeout(function () { if (!done) { done = true; loading(k, false); nav(k); } }, 8000);\n      prefetch(k).then(function (t) {\n        if (done) return; done = true; clearTimeout(timer); loading(k, false);\n        if (!apply(k, t)) nav(k);\n      });\n    }\n\n    \/* ---- the chooser ---- *\/\n    if (root) {\n      \/* after 6s of no decision the dismiss control reveals itself \u2014 the same state as\n         :hover, no pointer needed (the wireframe's .hint). Cleared on close so it cannot\n         fire into a closed chooser; dropped the moment the pointer reaches the control, so\n         moving away returns it to the plain \u00d7 rather than snapping back to the arrow. *\/\n      var x = qs('.cy-pp-dismiss a, .cy-pp-dismiss button', root);\n      var xw = x ? (x.closest('.cy-pp-dismiss') || x) : null, hintT = null;\n      var hintOff = function () { clearTimeout(hintT); if (xw) xw.classList.remove('hint'); };\n      if (xw) xw.addEventListener('mouseenter', hintOff);\n      var close = function (k) {\n        write(k || 'general');\n        hintOff();\n        root.classList.remove('is-open');\n        el.classList.remove('cy-pp-locked');\n        setTimeout(revealPill, 450);\n      };\n      qsa('.cy-pp-card', root).forEach(function (c) {\n        var k = (c.className.match(\/cy-pp-card-([a-z]+)\/) || [])[1];\n        c.addEventListener('click', function (e) {\n          if (!k || !URLS[k]) return;\n          e.preventDefault();\n          close(k);\n          go(k);\n        });\n      });\n      if (x) x.addEventListener('click', function (e) { e.preventDefault(); close('general'); });\n      var scrim = qs('.cy-pp-scrim', root);\n      if (scrim) scrim.addEventListener('click', function () { close('general'); });\n      document.addEventListener('keydown', function (e) {\n        if (e.key === 'Escape' && root.classList.contains('is-open')) close('general');\n      });\n\n      if (ask || (read() === null && !optedOut)) {\n        root.classList.add('is-open');\n        el.classList.add('cy-pp-locked');\n        hintOff();\n        hintT = setTimeout(function () { if (xw && root.classList.contains('is-open')) xw.classList.add('hint'); }, 6000);\n        var t = qs('.cy-pp-title', root);\n        if (t) { t.setAttribute('tabindex', '-1'); t.focus({ preventScroll: true }); }\n        prefetchAll();                       \/* a card click should never have to wait *\/\n      } else {\n        setTimeout(revealPill, 400);\n      }\n    } else {\n      setTimeout(revealPill, 400);\n    }\n\n    if (!pill) return;\n    setTimeout(prefetchAll, 800);              \/* warm the other three as soon as the page is parsed *\/\n    window.addEventListener('load', prefetchAll);\n\n    \/* ---- the pill: the wireframe's .ppill, state for state ----\n       Which page this is decides the dot colour (cy-pp-me-*) and which segment is lit.\n       No .has-general: on the General page too, 04 waits for the 3s hover (her call). *\/\n    setCurrent(ME);                          \/* dot colour, lit segment and the name, from this page's persona *\/\n\n    var hover = false, idleT = null, moreT = null, openY = 0;\n    var canHover = window.matchMedia && window.matchMedia('(hover:hover) and (pointer:fine)').matches;\n\n    function isOpen() { return pill.classList.contains('is-open'); }\n    function open() {\n      pill.classList.add('is-open');\n      pill.setAttribute('aria-expanded', 'true');\n      openY = window.scrollY;\n      resetIdle();\n      prefetchAll();                         \/* the other three pages, before any click *\/\n    }\n    \/* while the pointer is on the pill NOTHING may collapse it \u2014 not the 5s idle\n       timer, not the scroll threshold, not an outside click. Only leaving does. *\/\n    function collapse() { if (hover) return; forceCollapse(); }\n    function forceCollapse() {\n      pill.classList.remove('is-open');\n      pill.classList.remove('more');\n      pill.setAttribute('aria-expanded', 'false');\n      clearTimeout(idleT); clearTimeout(moreT);\n    }\n    function resetIdle() { clearTimeout(idleT); idleT = setTimeout(collapse, 5000); }\n\n    if (canHover) {\n      pill.addEventListener('mouseenter', function () {\n        hover = true; clearTimeout(idleT); open();\n        \/* the fourth tab waits 3s of continuous hover \u2014 long enough that someone who\n           opened the pill just to switch persona never sees a new option appear\n           under their pointer. *\/\n        clearTimeout(moreT);\n        moreT = setTimeout(function () { pill.classList.add('more'); }, 3000);\n      });\n      pill.addEventListener('mouseleave', function () { hover = false; forceCollapse(); });\n    }\n    pill.addEventListener('touchstart', function () { prefetchAll(); }, { passive: true });\n\n    var cur = qs('.cy-pp-cur', pill);\n    if (cur) {\n      cur.setAttribute('role', 'button');\n      cur.setAttribute('tabindex', '0');\n      var toggle = function (e) {\n        e.preventDefault(); e.stopPropagation();\n        if (isOpen()) forceCollapse(); else open();\n      };\n      cur.addEventListener('click', toggle);\n      cur.addEventListener('keydown', function (e) {\n        if (e.key === 'Enter' || e.key === ' ') toggle(e);\n      });\n      cur.addEventListener('focus', prefetchAll);\n    }\n    qsa('.cy-pp-seg a', pill).forEach(function (a) {\n      a.addEventListener('click', function (e) {\n        var seg = a.closest('.cy-pp-seg');\n        var k = seg && (seg.className.match(\/cy-pp-seg-([a-z]+)\/) || [])[1];\n        if (!k || !URLS[k]) return;          \/* an unknown segment stays an ordinary link *\/\n        e.preventDefault();\n        go(k);\n        if (canHover) resetIdle(); else forceCollapse();\n      });\n    });\n    document.addEventListener('click', function (e) {\n      if (isOpen() && !pill.contains(e.target)) collapse();\n    });\n    window.addEventListener('scroll', function () {\n      if (isOpen() && Math.abs(window.scrollY - openY) > 260) collapse();\n    }, { passive: true });\n    document.addEventListener('keydown', function (e) {\n      if (e.key === 'Escape' && isOpen()) forceCollapse();\n    });\n  });\n})();\n\n<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-26057fb e-con-full cy-pp-modal-root e-no-lazyload e-flex e-con e-parent\" data-id=\"26057fb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-716215c e-con-full cy-pp-scrim e-flex e-con e-child\" data-id=\"716215c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0968c3d cy-pp-modal e-flex e-con-boxed e-con e-child\" data-id=\"0968c3d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b6aa2b9 cy-pp-dismiss elementor-widget elementor-widget-button\" data-id=\"b6aa2b9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#cy-pp-dismiss\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Vous h\u00e9sitez&nbsp;? <b>Tout voir<\/b><\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2c606d9 cy-pp-eyebrow elementor-widget elementor-widget-text-editor\" data-id=\"2c606d9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Avant de commencer<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e41d186 cy-pp-title elementor-widget elementor-widget-heading\" data-id=\"e41d186\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">De quoi avez-vous besoin aujourd\u2019hui&nbsp;?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-df65514 cy-pp-sub elementor-widget elementor-widget-text-editor\" data-id=\"df65514\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Choisissez la page d\u2019accueil Cycloid qui correspond \u00e0 votre besoin, ou fermez cette fen\u00eatre pour une vue d\u2019ensemble. Vous pouvez changer de page d\u2019accueil \u00e0 tout moment, en un clic.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-85a1509 e-con-full cy-pp-cards e-flex e-con e-child\" data-id=\"85a1509\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8405704 e-con-full cy-pp-card cy-pp-card-platform e-flex e-con e-child\" data-id=\"8405704\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e3f1f96 cy-pp-no elementor-widget elementor-widget-text-editor\" data-id=\"e3f1f96\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>01<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d415ac0 cy-pp-ic elementor-widget elementor-widget-text-editor\" data-id=\"d415ac0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u25a6<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-acc1661 cy-pp-role elementor-widget elementor-widget-heading\" data-id=\"acc1661\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"\/fr\/accueil-plateforme-devops\/\">Plateforme &amp; DevOps<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-04e75c4 cy-pp-say elementor-widget elementor-widget-text-editor\" data-id=\"04e75c4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>J\u2019ai besoin de contr\u00f4le<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c99e407 e-con-full cy-pp-card cy-pp-card-developers e-flex e-con e-child\" data-id=\"c99e407\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-263ecf4 cy-pp-no elementor-widget elementor-widget-text-editor\" data-id=\"263ecf4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>02<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-996281e cy-pp-ic elementor-widget elementor-widget-text-editor\" data-id=\"996281e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u2442<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b3a8ef8 cy-pp-role elementor-widget elementor-widget-heading\" data-id=\"b3a8ef8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"\/fr\/accueil-developpeurs\/\">D\u00e9veloppeurs<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-59fa313 cy-pp-say elementor-widget elementor-widget-text-editor\" data-id=\"59fa313\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Je veux de la libert\u00e9<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-094f5e5 e-con-full cy-pp-card cy-pp-card-executives e-flex e-con e-child\" data-id=\"094f5e5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e9c5fca cy-pp-no elementor-widget elementor-widget-text-editor\" data-id=\"e9c5fca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>03<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd25cc2 cy-pp-ic elementor-widget elementor-widget-text-editor\" data-id=\"cd25cc2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u25ce<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0c12e68 cy-pp-role elementor-widget elementor-widget-heading\" data-id=\"0c12e68\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\"><a href=\"\/fr\/accueil-dirigeants\/\">Dirigeants<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b93dea7 cy-pp-say elementor-widget elementor-widget-text-editor\" data-id=\"b93dea7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>J\u2019exige de la visibilit\u00e9<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-accaede cy-pp-aside elementor-widget elementor-widget-text-editor\" data-id=\"accaede\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Vous venez pour l\u2019IA&nbsp;?<a href=\"\/solutions\/ai-cmp\/\"> D\u00e9couvrez comment les agents construisent sur Cycloid \u2197<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8dcf5a1 e-con-full cy-pp-pill-root e-no-lazyload e-flex e-con e-parent\" data-id=\"8dcf5a1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7780313 e-con-full cy-pp-pill e-flex e-con e-child\" data-id=\"7780313\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dd643bb cy-pp-lead elementor-widget elementor-widget-text-editor\" data-id=\"dd643bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Vous consultez la vue<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-918d17e e-con-full cy-pp-cur e-flex e-con e-child\" data-id=\"918d17e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d31c993 cy-pp-cur-name elementor-widget elementor-widget-text-editor\" data-id=\"d31c993\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>G\u00e9n\u00e9rale<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-377f1ea e-con-full cy-pp-segwrap e-flex e-con e-child\" data-id=\"377f1ea\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6eb75d5 e-con-full cy-pp-seg-row e-flex e-con e-child\" data-id=\"6eb75d5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e3567d cy-pp-seg cy-pp-s1 cy-pp-seg-platform elementor-widget elementor-widget-button\" data-id=\"2e3567d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/accueil-plateforme-devops\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Plateforme &amp; DevOps<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-34d6b42 cy-pp-seg cy-pp-s2 cy-pp-seg-developers elementor-widget elementor-widget-button\" data-id=\"34d6b42\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/accueil-developpeurs\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">D\u00e9veloppeurs<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4741021 cy-pp-seg cy-pp-s3 cy-pp-seg-executives elementor-widget elementor-widget-button\" data-id=\"4741021\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/accueil-dirigeants\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Dirigeants<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5d1883f cy-pp-seg cy-pp-s4 cy-pp-seg-general elementor-widget elementor-widget-button\" data-id=\"5d1883f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Vue g\u00e9n\u00e9rale<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-79e6c0f cy-hp cy-hp-hero e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"79e6c0f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-25f115b cy-hp-h1 elementor-widget elementor-widget-heading\" data-id=\"25f115b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Tout* ce qu\u2019il vous faut. Quand et o\u00f9 il vous le faut.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a04846 cy-hp-hsub elementor-widget elementor-widget-text-editor\" data-id=\"0a04846\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>*des environnements en libre-service, des requ\u00eates d\u2019infrastructure et des actions Day-2, avec un agent IA qui n\u2019atteint que ce que vous atteignez d\u00e9j\u00e0. Rien que vous puissiez casser.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-056a850 cy-hp-demolink elementor-widget elementor-widget-button\" data-id=\"056a850\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/comparaisons\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Voir un Blueprint Form d\u00e9ployer en 3 minutes \u2197<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c1c76ce e-con-full cy-hp-logoframe cy-hp-logoreveal e-flex e-con e-child\" data-id=\"c1c76ce\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-37649fd e-con-full cy-hp-frtop e-flex e-con e-child\" data-id=\"37649fd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a69fb20 cy-hp-frlabel elementor-widget elementor-widget-text-editor\" data-id=\"a69fb20\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>En production chez<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5933b12 e-con-full cy-hp-logorow e-flex e-con e-child\" data-id=\"5933b12\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b169c04 cy-hp-logo cy-hp-logo-ec elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"b169c04\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"168\" height=\"64\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png\" class=\"attachment-full size-full wp-image-28148\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7fd7888 cy-hp-logo cy-hp-logo-cma elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"7fd7888\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"102\" height=\"62\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/12\/CMA_CGM_logo.webp\" class=\"attachment-full size-full wp-image-21607\" alt=\"logo of CMA CGM\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ab04618 cy-hp-logo cy-hp-logo-siemens elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"ab04618\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"684\" height=\"163\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/03\/siemens.svg\" class=\"attachment-full size-full wp-image-7879\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8ea8d30 cy-hp-logo cy-hp-logo-capgemini elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"8ea8d30\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/06\/Capgemini_201x_logo.svg\" class=\"attachment-full size-full wp-image-18274\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-21b782f cy-hp-logo cy-hp-logo-ntt elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"21b782f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"171\" height=\"47\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/12\/GlobalLogo_NTTDATA_FutureBlue_RGB.webp\" class=\"attachment-full size-full wp-image-21604\" alt=\"logo of NTT Data\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-11e901d cy-hp-code elementor-widget elementor-widget-shortcode\" data-id=\"11e901d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><script>\n\/* Cycloid homepage (V2) \u2014 page script, carried by the ONE shortcode widget (script only; CSS lives in the\n   document's Custom CSS). Every routine fails open: without JS the page is static and complete.\n   The widget rides at the end of the hero root and the targets live in later roots, so it runs at\n   DOMContentLoaded (or at once if the document is already parsed). Nothing runs in the editor canvas. *\/\nfunction cyHomeInit(){\n  var qs=function(s,r){return (r||document).querySelector(s)}, qsa=function(s,r){return Array.prototype.slice.call((r||document).querySelectorAll(s))};\n  if(document.body.classList.contains('elementor-editor-active')) return;\n  var reduce=window.matchMedia&&window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n\n  \/* scroll reveals \u2014 containers carrying .cy-hp-reveal get .in as they enter (200px early) *\/\n  (function(){\n    var targets=qsa('.cy-hp-reveal');\n    if(!targets.length) return;\n    if(!('IntersectionObserver' in window)||reduce){ targets.forEach(function(el){el.classList.add('in')}); return; }\n    var io=new IntersectionObserver(function(entries){ entries.forEach(function(e){ if(e.isIntersecting){ e.target.classList.add('in'); io.unobserve(e.target); } }); },{threshold:0,rootMargin:'0px 0px 200px 0px'});\n    targets.forEach(function(el){io.observe(el)});\n  })();\n\n  \/* hero logo frame \u2014 rises on the first scroll *\/\n  (function(){\n    var f=qs('.cy-hp-logoreveal'); if(!f) return;\n    if(reduce){ f.classList.add('in'); return; }\n    var done=false; function reveal(){ if(done) return; done=true; f.classList.add('in'); window.removeEventListener('scroll',reveal); }\n    window.addEventListener('scroll',reveal,{passive:true});\n    setTimeout(function(){ if(window.scrollY>10) reveal(); },800);\n  })();\n\n  \/* word paint \u2014 titles carrying .cy-hp-sc rest at ghost opacity .16 and paint word by word,\n     bottom-anchored: complete when the title's bottom reaches the viewport's middle *\/\n  (function(){\n    var titles=qsa('.cy-hp-sc .elementor-heading-title'); if(!titles.length) return;\n    if(reduce){ return; }\n    var probe=document.createElement('div');\n    titles.forEach(function(el){\n      el.innerHTML=el.innerHTML.split(\/<br\\s*\\\/?>\/i).map(function(seg){ probe.innerHTML=seg; return probe.textContent.split(\/(\\s+)\/).map(function(ch){ if(ch.trim()==='') return ch; return ch.split(\/(?<=-)\/).map(function(p){return '<span class=\"w\">'+p+'<\/span>'}).join(''); }).join(''); }).join('<br>');\n    });\n    var ticking=false;\n    function paint(){\n      var line=window.innerHeight*0.5, band=window.innerHeight*0.5;\n      titles.forEach(function(el){\n        var words=qsa('.w',el), r=el.getBoundingClientRect(), f=Math.min(1,Math.max(0,(line+band-r.bottom)\/band));\n        var cut=f>0?Math.max(1,Math.round(f*words.length)):0;\n        words.forEach(function(w,i){ w.classList.toggle('on',i<cut); });\n      });\n      ticking=false;\n    }\n    window.addEventListener('scroll',function(){ if(!ticking){ requestAnimationFrame(paint); ticking=true; } },{passive:true});\n    window.addEventListener('resize',paint); paint();\n    window.__cyHpPaint=paint;\n  })();\n\n  \/* 12 \u00b7 testimonial \u2014 pinned for 2.3 viewports, quote reveals word by word, then attribution + link *\/\n  (function(){\n    var pin=qs('.cy-hp-qregion'), sticky=qs('.cy-hp-qsticky'), mark=qs('.cy-hp-qmark'), attr=qs('.cy-hp-qattr'), cta=qs('.cy-hp-testi .cy-hp-fine'), q=qs('.cy-hp-qtext .elementor-heading-title')||qs('.cy-hp-qtext');\n    if(!pin||!sticky||!mark||!attr||!q) return;\n    try{\n      var probe=document.createElement('div');\n      q.innerHTML=q.innerHTML.split(\/<br\\s*\\\/?>\/i).map(function(seg){ probe.innerHTML=seg; return probe.textContent.split(\/(\\s+)\/).map(function(ch){ if(ch.trim()==='') return ch; return ch.split(\/(?<=-)\/).map(function(p){return '<span class=\"w\">'+p+'<\/span>'}).join(''); }).join(''); }).join('<br>');\n      var words=qsa('.w',q);\n      function update(){\n        var r=pin.getBoundingClientRect(), vh=window.innerHeight, sc=r.height-vh, p=sc>0?Math.min(1,Math.max(0,-r.top\/sc)):1;\n        if(getComputedStyle(sticky).position!=='sticky'||reduce) p=1;\n        var mp=Math.min(1,Math.max(0,(p-0.08)\/0.10)), lp=Math.min(1,Math.max(0,(p-0.15)\/0.40)), ap=Math.min(1,Math.max(0,(p-0.55)\/0.10)), cp=Math.min(1,Math.max(0,(p-0.65)\/0.25));\n        mark.style.opacity=mp; mark.style.transform='translateY('+((1-mp)*16)+'px)';\n        attr.style.opacity=ap; attr.style.transform='translateY('+((1-ap)*16)+'px)';\n        if(cta){ cta.style.opacity=cp; cta.style.transform='translateY('+((1-cp)*16)+'px)'; }\n        var cut=lp>0?Math.max(1,Math.round(lp*words.length)):0;\n        words.forEach(function(w,i){ w.style.opacity=i<cut?'1':''; });\n      }\n      window.addEventListener('scroll',update,{passive:true}); window.addEventListener('resize',update); update();\n      window.__cyHpQuote=update;\n    }catch(e){ [mark,attr,cta].forEach(function(el){ if(el){el.style.opacity=1;el.style.transform='none'} }); qsa('.w',q).forEach(function(w){w.style.opacity=1}); }\n  })();\n\n  \/* 11 \u00b7 deployment table \u2014 the gradient border follows the pointer *\/\n  (function(){\n    var m=qs('.cy-hp-deptable'); if(!m||reduce) return;\n    function aim(e){ var r=m.getBoundingClientRect(), cx=r.left+r.width\/2, cy=r.top+r.height\/2; var deg=(Math.atan2(e.clientY-cy,e.clientX-cx)*180\/Math.PI+90+360)%360; m.style.setProperty('--sweep-ang',deg.toFixed(1)+'deg'); }\n    window.addEventListener('pointermove',aim,{passive:true});\n    document.addEventListener('pointerleave',function(){ m.style.setProperty('--sweep-ang','160deg'); });\n  })();\n\n  \/* 07 \u00b7 build-vs-buy banner \u2014 the whole banner is the link *\/\n  (function(){\n    var b=qs('.cy-hp-banner'), a=qs('.cy-hp-banner a.elementor-button'); if(!b||!a) return;\n    b.addEventListener('click',function(e){ if(e.target.closest('a')) return; window.location.href=a.getAttribute('href'); });\n  })();\n}\nif(document.readyState==='loading'){document.addEventListener('DOMContentLoaded',cyHomeInit)}else{cyHomeInit()}\n\n<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6ab663c cy-hp cy-hp-trio e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"6ab663c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-8573bb0 e-con-full cy-hp-xf cy-hp-vframe e-flex e-con e-child\" data-id=\"8573bb0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2066ccd e-con-full cy-hp-xf-in e-flex e-con e-child\" data-id=\"2066ccd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-11f35bf e-con-full cy-hp-hatch e-flex e-con e-child\" data-id=\"11f35bf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-eb52776 e-con-full cy-hp-v3top e-flex e-con e-child\" data-id=\"eb52776\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d24b7ad e-con-full cy-hp-v3col e-flex e-con e-child\" data-id=\"d24b7ad\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b0f3005 cy-hp-h2 cy-hp-sc cy-hp-v3h2 elementor-widget elementor-widget-heading\" data-id=\"b0f3005\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Le code n\u2019a jamais \u00e9t\u00e9 le probl\u00e8me<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5529567 e-con-full cy-hp-v3col e-flex e-con e-child\" data-id=\"5529567\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-94caecb cy-hp-v3p elementor-widget elementor-widget-text-editor\" data-id=\"94caecb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Obtenir un environnement demande le bon canal, assez de contexte pour agir, puis de l\u2019attente. Ensuite viennent les questions&nbsp;: quelle r\u00e9gion, quelle taille, qui en est propri\u00e9taire&nbsp;?<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ff59f84 e-con-full cy-hp-v3col e-flex e-con e-child\" data-id=\"ff59f84\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0d1b548 cy-hp-v3p elementor-widget elementor-widget-text-editor\" data-id=\"0d1b548\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Une demi-journ\u00e9e d\u2019approbations. Le temps de comprendre ce que fait le Terraform. Rien de tout cela n\u2019\u00e9tait la partie difficile du travail, et rien de tout cela n\u2019est ce pour quoi vous avez \u00e9t\u00e9 recrut\u00e9.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b13ab92 e-con-full cy-hp-v3col e-flex e-con e-child\" data-id=\"b13ab92\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e16a18c cy-hp-v3p elementor-widget elementor-widget-text-editor\" data-id=\"e16a18c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Atlassian a interrog\u00e9 3 500 d\u00e9veloppeurs en 2025. L\u2019IA fait gagner environ 10 heures par semaine, les frictions internes en co\u00fbtent environ 10. Seuls 16&nbsp;% de la semaine servent \u00e0 \u00e9crire du code.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9ec0a7e e-con-full cy-hp-v3stats e-flex e-con e-child\" data-id=\"9ec0a7e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-20b70e4 e-con-full cy-hp-stat e-flex e-con e-child\" data-id=\"20b70e4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-92abd48 cy-hp-v3num elementor-widget elementor-widget-text-editor\" data-id=\"92abd48\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>11<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4b1a7c2 cy-hp-v3label elementor-widget elementor-widget-text-editor\" data-id=\"4b1a7c2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Jours de bout en bout,<br\/>par la voie manuelle<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fcd4c26 e-con-full cy-hp-stat e-flex e-con e-child\" data-id=\"fcd4c26\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a59e9d2 cy-hp-v3num elementor-widget elementor-widget-text-editor\" data-id=\"a59e9d2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>9<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-71a64e2 cy-hp-v3label elementor-widget elementor-widget-text-editor\" data-id=\"71a64e2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Minutes avec<br\/>un Blueprint Form<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-57dc308 e-con-full cy-hp-stat e-flex e-con e-child\" data-id=\"57dc308\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2378094 cy-hp-v3num elementor-widget elementor-widget-text-editor\" data-id=\"2378094\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>0<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-858c41f cy-hp-v3label elementor-widget elementor-widget-text-editor\" data-id=\"858c41f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Interm\u00e9diaire entre vous<br\/>et le d\u00e9ploiement<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b6e8606 e-con-full cy-hp-stat e-flex e-con e-child\" data-id=\"b6e8606\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-35b1ab9 cy-hp-v3num elementor-widget elementor-widget-text-editor\" data-id=\"35b1ab9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>16&nbsp;%<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-50eb9d4 cy-hp-v3label elementor-widget elementor-widget-text-editor\" data-id=\"50eb9d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Du temps pass\u00e9<br\/>\u00e0 \u00e9crire du code<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4df9312 e-con-full cy-hp-hatch e-flex e-con e-child\" data-id=\"4df9312\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9394822 e-con-boxed cy-hp cy-hp-pillars e-flex e-con e-parent\" data-id=\"9394822\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-087aa81 e-con-full cy-hp-plhead e-flex e-con e-child\" data-id=\"087aa81\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4d8e21e cy-hp-eyebrow cy-hp-plkick elementor-widget elementor-widget-text-editor\" data-id=\"4d8e21e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Solutions<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1485a1a cy-hp-h2 cy-hp-sc cy-hp-ondark cy-hp-plh2 elementor-widget elementor-widget-heading\" data-id=\"1485a1a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">L\u00e0 o\u00f9 se passe vraiment votre journ\u00e9e<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e0b3100 cy-hp-plsub elementor-widget elementor-widget-text-editor\" data-id=\"e0b3100\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>C\u2019est en libre-service que vous passerez votre temps. Le portail montre ce dont vous \u00eates responsable. La gouvernance fait que personne n\u2019a \u00e0 l\u2019approuver \u00e0 la main.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b45f1de e-con-full cy-hp-plrow e-flex e-con e-child\" data-id=\"b45f1de\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e0b15f4 e-con-full cy-hp-plcol e-flex e-con e-child\" data-id=\"e0b15f4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-313bded e-con-full cy-hp-plnode e-flex e-con e-child\" data-id=\"313bded\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a7dfdc5 cy-hp-pln elementor-widget elementor-widget-text-editor\" data-id=\"a7dfdc5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>01<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e7068d2 cy-hp-plt elementor-widget elementor-widget-heading\" data-id=\"e7068d2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Libre-service<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f12fa58 cy-hp-pld elementor-widget elementor-widget-text-editor\" data-id=\"f12fa58\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Choisissez un Golden Path ou composez le v\u00f4tre, puis d\u00e9ployez, exploitez et promouvez-le depuis un seul portail.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-65e124f cy-hp-pllink elementor-widget elementor-widget-heading\" data-id=\"65e124f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/www.cycloid.io\/solutions\/infrastructure-automation\/\">Explorer l\u2019automatisation d\u2019infrastructure \u2192<\/a><\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a8e6930 e-con-full cy-hp-plcol e-flex e-con e-child\" data-id=\"a8e6930\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c53207b e-con-full cy-hp-plnode e-flex e-con e-child\" data-id=\"c53207b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9339223 cy-hp-pln elementor-widget elementor-widget-text-editor\" data-id=\"9339223\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>02<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f3912a7 cy-hp-plt elementor-widget elementor-widget-heading\" data-id=\"f3912a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Portail &amp; visibilit\u00e9<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-83a357b cy-hp-pld elementor-widget elementor-widget-text-editor\" data-id=\"83a357b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Chaque service dont vous \u00eates responsable, ses d\u00e9pendances et son \u00e9tat de sant\u00e9, sans avoir \u00e0 demander autour de vous.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-51f3442 cy-hp-pllink elementor-widget elementor-widget-heading\" data-id=\"51f3442\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/www.cycloid.io\/solutions\/developer-portal\/\">Explorer le portail et la visibilit\u00e9 \u2192<\/a><\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-98b3aed e-con-full cy-hp-plcol e-flex e-con e-child\" data-id=\"98b3aed\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3d66812 e-con-full cy-hp-plnode e-flex e-con e-child\" data-id=\"3d66812\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e3a63f cy-hp-pln elementor-widget elementor-widget-text-editor\" data-id=\"2e3a63f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>03<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-76fa5c9 cy-hp-plt elementor-widget elementor-widget-heading\" data-id=\"76fa5c9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Gouvernance &amp; plateforme<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5b5f134 cy-hp-pld elementor-widget elementor-widget-text-editor\" data-id=\"5b5f134\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Les r\u00e8gles sont pos\u00e9es en amont\u00a0: les approbations n\u2019apparaissent que l\u00e0 o\u00f9 votre organisation en a besoin.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9205711 cy-hp-pllink elementor-widget elementor-widget-heading\" data-id=\"9205711\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/www.cycloid.io\/solutions\/cloud-governance\/\">Explorer la plateforme de gouvernance cloud \u2192<\/a><\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1261d44 cy-hp cy-hp-dora e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"1261d44\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3ab6eed e-con-full cy-hp-doragrid e-flex e-con e-child\" data-id=\"3ab6eed\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-009ba1e e-con-full cy-hp-doraleft e-flex e-con e-child\" data-id=\"009ba1e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-52ea301 cy-hp-h2 cy-hp-dorah2 elementor-widget elementor-widget-heading\" data-id=\"52ea301\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Il est 3 h du matin et vous ne pouvez contacter personne<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-59c33ba e-con-full cy-hp-quote e-flex e-con e-child\" data-id=\"59c33ba\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1502641 cy-hp-quotep elementor-widget elementor-widget-text-editor\" data-id=\"1502641\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Lorsque la qualit\u00e9 de la plateforme est \u00e9lev\u00e9e, l\u2019effet de l\u2019adoption de l\u2019IA sur la performance de l\u2019organisation devient fort et positif. \u00c0 l\u2019inverse, lorsque la qualit\u00e9 de la plateforme est faible, l\u2019effet de l\u2019adoption de l\u2019IA sur la performance de l\u2019organisation est n\u00e9gligeable.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1756c71 cy-hp-cite elementor-widget elementor-widget-text-editor\" data-id=\"1756c71\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>DORA, Platform engineering capability, janvier 2026<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-08b1b1e e-con-full cy-hp-doraright e-flex e-con e-child\" data-id=\"08b1b1e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-747576c cy-hp-dorap elementor-widget elementor-widget-text-editor\" data-id=\"747576c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Les Day-2 Actions sont d\u00e9finies une fois dans le Blueprint par l\u2019\u00e9quipe plateforme \u2014 ensuite, vous les d\u00e9clenchez depuis la vue Resource. Faites tourner les identifiants, prolongez un TTL, lancez un plan, revenez en arri\u00e8re. M\u00eame cha\u00eene d\u2019autorisation et m\u00eame journal d\u2019audit qu\u2019en Day-1.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a0a7f10 cy-hp-dorap elementor-widget elementor-widget-text-editor\" data-id=\"a0a7f10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>S\u2019il vous faut savoir ce qui a chang\u00e9, demandez simplement \u00e0 l\u2019agent&nbsp;: il vous rend chaque d\u00e9ploiement, rotation d\u2019identifiants et action planifi\u00e9e des 24 derni\u00e8res heures, dans la limite de vos permissions. Pas trois consoles. Et pas \u00e0 3 h du matin.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-89fc0b4 cy-hp-dorap elementor-widget elementor-widget-text-editor\" data-id=\"89fc0b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Pas d\u2019attente d\u2019un ticket. Pas d\u2019attente d\u2019un message priv\u00e9.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7204e62 cy-hp-dorap elementor-widget elementor-widget-text-editor\" data-id=\"7204e62\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><strong>Celui qui a trouv\u00e9 le probl\u00e8me peut le corriger.<\/strong><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f3b35fb elementor-widget__width-initial elementor-widget elementor-widget-html\" data-id=\"f3b35fb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"cy-wistia-facade\" data-video-id=\"4jhgzl24ep\" style=\"position:relative; cursor:pointer; width:100%; aspect-ratio:16\/9; background:#000; overflow:hidden;border-radius:2%;\">\n\n  <img decoding=\"async\"\n    src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-platform-demo-video-promotion-pipeline.webp\"\n    alt=\"Vid\u00e9o de d\u00e9monstration de la plateforme Cycloid : promotion d\u2019une version de Development \u00e0 Production\"\n    style=\"width:100%; height:100%; object-fit:cover; opacity:1; display:block;border-radius:2%;\">\n\n  <div class=\"cy-vf-veil\" aria-hidden=\"true\"><\/div>\n\n  <div style=\"position:absolute; inset:0; display:flex; align-items:center; justify-content:center;\">\n    <span class=\"cy-vf-play\"><span>Voir la d\u00e9mo<\/span><svg viewBox=\"0 0 448 512\" aria-hidden=\"true\"><path d=\"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z\"\/><\/svg><\/span>\n  <\/div>\n\n  <script>\n  (function(){\n    var videoId = '4jhgzl24ep';\n    if (window['cyWistiaBound_' + videoId]) return;\n    window['cyWistiaBound_' + videoId] = true;\n    document.addEventListener('click', function(e){\n      var facade = e.target.closest && e.target.closest('[data-video-id=\"' + videoId + '\"]');\n      if (!facade || facade.getAttribute('data-playing')) return;\n      facade.setAttribute('data-playing', '1');\n      facade.style.cursor = 'default';\n      facade.innerHTML = '<div class=\"wistia_embed wistia_async_' + videoId + '\" style=\"height:100%;width:100%\">&nbsp;<\/div>';\n      window._wq = window._wq || [];\n      window._wq.push({ id: videoId, onReady: function(video) { video.play(); } });\n      if(!document.querySelector('script[src*=\"fast.wistia.com\/assets\/external\/E-v1\"]')){\n        var s = document.createElement('script');\n        s.src = 'https:\/\/fast.wistia.com\/assets\/external\/E-v1.js';\n        s.async = true;\n        document.head.appendChild(s);\n      }\n    });\n  })();\n  <\/script>\n\n<\/div>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d8b761a e-con-full cy-hp-statsrow e-flex e-con e-child\" data-id=\"d8b761a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b286651 e-con-full cy-hp-stat cy-hp-stat4 e-flex e-con e-child\" data-id=\"b286651\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a719842 cy-hp-statnum elementor-widget elementor-widget-text-editor\" data-id=\"a719842\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>&lt;1&nbsp;h<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a5d6b61 cy-hp-statlab elementor-widget elementor-widget-text-editor\" data-id=\"a5d6b61\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Par environnement chez Alchemy<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2f47868 e-con-full cy-hp-stat cy-hp-stat4 e-flex e-con e-child\" data-id=\"2f47868\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a109029 cy-hp-statnum elementor-widget elementor-widget-text-editor\" data-id=\"a109029\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>En heures<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eb48575 cy-hp-statlab elementor-widget elementor-widget-text-editor\" data-id=\"eb48575\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Pour les d\u00e9ploiements chez Valiantys<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b89fa3d e-con-full cy-hp-stat cy-hp-stat4 e-flex e-con e-child\" data-id=\"b89fa3d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-78d3365 cy-hp-statnum elementor-widget elementor-widget-text-editor\" data-id=\"78d3365\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>2 400<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-adb38bb cy-hp-statlab elementor-widget elementor-widget-text-editor\" data-id=\"adb38bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Sp\u00e9cialistes DevOps chez Orange Cloud<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-65cd4ee e-con-full cy-hp-stat cy-hp-stat4 e-flex e-con e-child\" data-id=\"65cd4ee\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-99d808e cy-hp-statnum elementor-widget elementor-widget-text-editor\" data-id=\"99d808e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>0<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a96e5e1 cy-hp-statlab elementor-widget elementor-widget-text-editor\" data-id=\"a96e5e1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Ticket pour d\u00e9ployer depuis le catalogue<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-85746c1 cy-hp cy-hp-manifesto e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"85746c1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6d140da e-con-full cy-hp-mframe cy-hp-reveal e-flex e-con e-child\" data-id=\"6d140da\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e30c60a e-con-full cy-hp-mtop e-flex e-con e-child\" data-id=\"e30c60a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a2c31e9 e-con-full cy-hp-mhead e-flex e-con e-child\" data-id=\"a2c31e9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ec52463 cy-hp-eyebrow cy-hp-eyebrow-teal elementor-widget elementor-widget-text-editor\" data-id=\"ec52463\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Sous le capot<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-06f392a cy-hp-h2 cy-hp-sc cy-hp-ondark elementor-widget elementor-widget-heading\" data-id=\"06f392a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Con\u00e7ue avec le droit de r\u00e9parer<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b1e09f7 cy-hp-mp elementor-widget elementor-widget-text-editor\" data-id=\"b1e09f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Chaque couche est document\u00e9e et rempla\u00e7able. TerraCognita, InfraMap et TerraCost sont publics. Rien ici n\u2019est un secret industriel que vous devriez croire sur parole.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-39fd358 e-con-full cy-hp-btnrow e-flex e-con e-child\" data-id=\"39fd358\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4c4cf2f cy-hp-obtn cy-on-dark elementor-widget elementor-widget-button\" data-id=\"4c4cf2f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Voir l\u2019architecture<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d831c7a cy-hp-millu elementor-widget elementor-widget-image\" data-id=\"d831c7a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"1887\" height=\"909\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png\" class=\"attachment-full size-full wp-image-32157\" alt=\"\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png 1887w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-300x145.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1024x493.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-768x370.png 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1536x740.png 1536w\" sizes=\"auto, (max-width: 1887px) 100vw, 1887px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0e73ee3 cy-hp cy-hp-bvb e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"0e73ee3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-855fd65 e-con-full cy-hp-banner e-flex e-con e-child\" data-id=\"855fd65\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8a1be16 e-con-full cy-hp-bvbtxt e-flex e-con e-child\" data-id=\"8a1be16\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dbfc5fa cy-hp-eyebrow cy-hp-eyebrow-faintw elementor-widget elementor-widget-text-editor\" data-id=\"dbfc5fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Build vs buy<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9f29016 cy-hp-h2 cy-hp-ondark cy-hp-bvbh2 elementor-widget elementor-widget-heading\" data-id=\"9f29016\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Construire le portail, ou en utiliser un<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aea490c cy-hp-bvbsub elementor-widget elementor-widget-text-editor\" data-id=\"aea490c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>La comparaison compl\u00e8te, ligne par ligne, du d\u00e9lai de mise en production \u00e0 celui qui porte l\u2019astreinte.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba6b616 cy-hp-btn elementor-widget elementor-widget-button\" data-id=\"ba6b616\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/comparaisons\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Voir le comparatif complet<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2a057fe e-con-full cy-hp-bvbhold e-flex e-con e-child\" data-id=\"2a057fe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-dec4db5 e-con-full cy-hp-contable e-flex e-con e-child\" data-id=\"dec4db5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0136b22 e-con-full cy-hp-colheads e-flex e-con e-child\" data-id=\"0136b22\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6cc0b64 cy-hp-colh elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"6cc0b64\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>En interne<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-55c8507 cy-hp-colh-logo elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"55c8507\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"1435\" height=\"384\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/logo.png\" class=\"attachment-full size-full wp-image-32219\" alt=\"\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/logo.png 1435w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/logo-300x80.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/logo-1024x274.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/logo-768x206.png 768w\" sizes=\"auto, (max-width: 1435px) 100vw, 1435px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0874ea9 e-con-full cy-hp-conrow2 e-flex e-con e-child\" data-id=\"0874ea9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-869f70a cy-hp-rowtitle elementor-widget elementor-widget-text-editor\" data-id=\"869f70a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>D\u00e9lai avant de pouvoir vous servir vous-m\u00eame<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-487c94f e-con-full cy-hp-rowcells e-flex e-con e-child\" data-id=\"487c94f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f9a035 cy-hp-cell elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"6f9a035\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>6 \u00e0 12 mois jusqu\u2019en production<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-adcfd97 cy-hp-cell cy-hp-cell-cy elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"adcfd97\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Moins de quatre semaines chez CloudXcelerate<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-eadf64c e-con-full cy-hp-conrow2 e-flex e-con e-child\" data-id=\"eadf64c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fe6e61f cy-hp-rowtitle elementor-widget elementor-widget-text-editor\" data-id=\"fe6e61f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Ing\u00e9nieurs pour le faire tourner<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-abb28f2 e-con-full cy-hp-rowcells e-flex e-con e-child\" data-id=\"abb28f2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a824a63 cy-hp-cell elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"a824a63\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>3 ou plus, en permanence<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7643768 cy-hp-cell cy-hp-cell-cy elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"7643768\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Aucun. C\u2019est tout l\u2019int\u00e9r\u00eat.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e96bbcd e-con-full cy-hp-conrow2 e-flex e-con e-child\" data-id=\"e96bbcd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-af90368 cy-hp-rowtitle elementor-widget elementor-widget-text-editor\" data-id=\"af90368\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Co\u00fbt annuel de ces ing\u00e9nieurs<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3a91fb6 e-con-full cy-hp-rowcells e-flex e-con e-child\" data-id=\"3a91fb6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cb41305 cy-hp-cell elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"cb41305\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>~450 000 $ par an<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-40f6467 cy-hp-cell cy-hp-cell-cy elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"40f6467\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u00c0 partir de 39 \u20ac par utilisateur et par mois, en annuel. Tarifs publi\u00e9s.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-48dc06e e-con-full cy-hp-conrow2 e-flex e-con e-child\" data-id=\"48dc06e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3a953e6 cy-hp-rowtitle elementor-widget elementor-widget-text-editor\" data-id=\"3a953e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Quand vous apprenez que c\u2019est non conforme<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7b31d8d e-con-full cy-hp-rowcells e-flex e-con e-child\" data-id=\"7b31d8d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0a8d6e4 cy-hp-cell elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"0a8d6e4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u00c0 la revue, ou dans l\u2019audit deux semaines plus tard<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1ef0bd0 cy-hp-cell cy-hp-cell-cy elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"1ef0bd0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u00c0 la soumission. Le Form rejette une ressource non conforme avant qu\u2019elle n\u2019existe&nbsp;: il n\u2019y a rien \u00e0 corriger ensuite.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fb06834 cy-hp cy-hp-flow e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"fb06834\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-684797d e-con-full cy-hp-cmphead cy-hp-reveal e-flex e-con e-child\" data-id=\"684797d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b5137f cy-hp-eyebrow cy-hp-eyebrow-faint elementor-widget elementor-widget-text-editor\" data-id=\"9b5137f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>De votre c\u00f4t\u00e9 du ticket<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-22efbea cy-hp-h2 elementor-widget elementor-widget-heading\" data-id=\"22efbea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Il vous faut un environnement de staging ce jeudi\u2026<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8a09aac e-con-full cy-hp-flowgrid e-flex e-con e-child\" data-id=\"8a09aac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f68e49e e-con-full cy-hp-flowpanel cy-hp-reveal e-flex e-con e-child\" data-id=\"f68e49e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0dd76ea cy-hp-flowimg elementor-widget elementor-widget-image\" data-id=\"0dd76ea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"1887\" height=\"909\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png\" class=\"attachment-full size-full wp-image-32157\" alt=\"\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png 1887w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-300x145.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1024x493.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-768x370.png 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1536x740.png 1536w\" sizes=\"auto, (max-width: 1887px) 100vw, 1887px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-06b5463 e-con-full cy-hp-flowpanel cy-hp-flow-cy cy-hp-reveal e-flex e-con e-child\" data-id=\"06b5463\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a3faacc cy-hp-flowimg elementor-widget elementor-widget-image\" data-id=\"a3faacc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"1887\" height=\"909\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png\" class=\"attachment-full size-full wp-image-32157\" alt=\"\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png 1887w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-300x145.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1024x493.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-768x370.png 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1536x740.png 1536w\" sizes=\"auto, (max-width: 1887px) 100vw, 1887px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9801cf9 cy-hp cy-hp-pv e-no-lazyload elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"9801cf9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d189d0c e-con-full cy-hp-pvhead cy-hp-reveal e-flex e-con e-child\" data-id=\"d189d0c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-12069f9 cy-hp-eyebrow cy-hp-eyebrow-teal elementor-widget elementor-widget-text-editor\" data-id=\"12069f9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Dans la plateforme<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b7bbae7 cy-hp-h2 cy-hp-sc cy-hp-ondark elementor-widget elementor-widget-heading\" data-id=\"b7bbae7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u00c0 quoi ressemble la \u00ab&nbsp;production&nbsp;\u00bb quand elle rend des comptes<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b20b31c cy-hp-pvp elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"b20b31c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Chaque environnement porte son blueprint, son propri\u00e9taire, son fournisseur et l\u2019\u00e9tat en temps r\u00e9el de tout ce qui y est d\u00e9ploy\u00e9. \u00ab Qu\u2019est-ce qui tourne vraiment en production ? \u00bb devient un \u00e9cran, et non une r\u00e9union.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-35c1e18 e-con-full cy-hp-pvshot e-flex e-con e-child\" data-id=\"35c1e18\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d32b77 cy-hp-pvimg elementor-widget elementor-widget-image\" data-id=\"2d32b77\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"1887\" height=\"909\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png\" class=\"attachment-full size-full wp-image-32157\" alt=\"\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png 1887w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-300x145.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1024x493.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-768x370.png 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1536x740.png 1536w\" sizes=\"auto, (max-width: 1887px) 100vw, 1887px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b45d1ad e-con-full cy-hp-pvcaps e-flex e-con e-child\" data-id=\"b45d1ad\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-52effa0 e-con-full cy-hp-pvcap cy-hp-reveal e-flex e-con e-child\" data-id=\"52effa0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-db89769 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"db89769\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Le blueprint voyage avec l\u2019environnement<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8c19aa0 cy-hp-pvcapp elementor-widget elementor-widget-text-editor\" data-id=\"8c19aa0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Propri\u00e9taire, fournisseur, r\u00e9gion et version sont des attributs de l\u2019environnement lui-m\u00eame, et non pas une page wiki que quelqu\u2019un doit penser \u00e0 mettre \u00e0 jour.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7eb8d34 e-con-full cy-hp-pvcap cy-hp-reveal e-flex e-con e-child\" data-id=\"7eb8d34\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f75d073 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"f75d073\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">La d\u00e9rive remonte, on ne la d\u00e9couvre pas<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dd578ff cy-hp-pvcapp elementor-widget elementor-widget-text-editor\" data-id=\"dd578ff\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>En \u00e9chec, en d\u00e9rive, en cours de d\u00e9ploiement\u00a0: ce sont des \u00e9tats affich\u00e9s \u00e0 l\u2019\u00e9cran. Personne n\u2019a \u00e0 les chercher, et personne ne les d\u00e9couvre lors d\u2019un audit.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5f4d6c5 e-con-full cy-hp-pvcap cy-hp-reveal e-flex e-con e-child\" data-id=\"5f4d6c5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4b82692 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"4b82692\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Un seul saut vers les outils que vous exploitez d\u00e9j\u00e0<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-028364f cy-hp-pvcapp elementor-widget elementor-widget-text-editor\" data-id=\"028364f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Grafana, Jira et Linear sont rattach\u00e9s \u00e0 l\u2019environnement\u00a0: de l\u2019alerte au ticket qui la prend en charge, il n\u2019y a qu\u2019un clic.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-491933d cy-hp cy-hp-certs e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"491933d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-af64738 e-con-full cy-hp-ctahead e-flex e-con e-child\" data-id=\"af64738\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-77260a0 cy-hp-h2 cy-hp-sc elementor-widget elementor-widget-heading\" data-id=\"77260a0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">La gouvernance \u00e9tait valid\u00e9e avant m\u00eame votre arriv\u00e9e<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0618c52 cy-hp-ctap elementor-widget elementor-widget-text-editor\" data-id=\"0618c52\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Certifi\u00e9 ISO 27001, score B Corp 95. Personne ne relit votre demande \u00e0 la main.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-59d17d8 e-con-full cy-hp-badgerow e-flex e-con e-child\" data-id=\"59d17d8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-0298fa2 e-con-full cy-hp-badge cy-hp-badge-iso e-flex e-con e-child\" data-id=\"0298fa2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-edff231 e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"edff231\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0164aee elementor-widget elementor-widget-image\" data-id=\"0164aee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"300\" height=\"303\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/iso-27001.webp\" class=\"attachment-medium_large size-medium_large wp-image-21792\" alt=\"logo of the certification ISO 27001\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/iso-27001.webp 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/iso-27001-297x300.webp 297w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-83eec39 cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"83eec39\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Certifi\u00e9 ISO 27001<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f80246f e-con-full cy-hp-badge cy-hp-badge-gartner e-flex e-con e-child\" data-id=\"f80246f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a5dc75f e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"a5dc75f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d935ee cy-hp-badgeimg elementor-widget elementor-widget-image\" data-id=\"2d935ee\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"177\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-768x177.png\" class=\"attachment-medium_large size-medium_large wp-image-32692\" alt=\"logo of Gartner\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-768x177.png 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-300x69.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-1024x236.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-1536x354.png 1536w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-2048x471.png 2048w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7e8b9f5 cy-hp-hypebar elementor-widget elementor-widget-text-editor\" data-id=\"7e8b9f5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>HYPE CYCLE 2026<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d9175c1 cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"d9175c1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Platform Engineering<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f710aa3 e-con-full cy-hp-badge cy-hp-badge-bcorp e-flex e-con e-child\" data-id=\"f710aa3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2d6eee4 e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"2d6eee4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-50e689a cy-hp-badgeimg elementor-widget elementor-widget-image\" data-id=\"50e689a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"619\" height=\"495\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/bcorp-mark.png\" class=\"attachment-full size-full wp-image-32222\" alt=\"\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/bcorp-mark.png 619w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/bcorp-mark-300x240.png 300w\" sizes=\"auto, (max-width: 619px) 100vw, 619px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0616db9 cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"0616db9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Certifi\u00e9 B Corp<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0781c19 e-con-full cy-hp-badge cy-hp-badge-gartner e-flex e-con e-child\" data-id=\"0781c19\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5024ebf e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"5024ebf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-19d89c0 cy-hp-badgeimg elementor-widget elementor-widget-image\" data-id=\"19d89c0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"233\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/IDC-logo-768x233.webp\" class=\"attachment-medium_large size-medium_large wp-image-22699\" alt=\"\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/IDC-logo-768x233.webp 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/IDC-logo-300x91.webp 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/IDC-logo.webp 1000w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a909412 cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"a909412\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>IDC Market Glance<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6f1b7ed e-con-full cy-hp-badge cy-hp-badge-cool e-flex e-con e-child\" data-id=\"6f1b7ed\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-16195d1 e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"16195d1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0d658e0 cy-hp-badgeimg elementor-widget elementor-widget-image\" data-id=\"0d658e0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"768\" height=\"177\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-768x177.png\" class=\"attachment-medium_large size-medium_large wp-image-32692\" alt=\"logo of Gartner\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-768x177.png 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-300x69.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-1024x236.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-1536x354.png 1536w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-2048x471.png 2048w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8bc6153 cy-hp-hypebar elementor-widget elementor-widget-text-editor\" data-id=\"8bc6153\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>COOL VENDOR 2024<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-872c470 cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"872c470\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Cool Vendor 2024<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5b5ed4e cy-hp-fine elementor-widget elementor-widget-button\" data-id=\"5b5ed4e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/certification-bcorp\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">En savoir plus sur notre conformit\u00e9 &rarr;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-20164b1 cy-hp cy-hp-op e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"20164b1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5411a28 e-con-full cy-hp-opsplit e-flex e-con e-child\" data-id=\"5411a28\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c3a2bf4 e-con-full cy-hp-oplines cy-hp-reveal e-flex e-con e-child\" data-id=\"c3a2bf4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a8b2d46 cy-hp-opline cy-hp-opfaint elementor-widget elementor-widget-text-editor\" data-id=\"a8b2d46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u00ab&nbsp;Merci de remplir les quatre champs.&nbsp;\u00bb<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1398804 cy-hp-opline cy-hp-opbold elementor-widget elementor-widget-text-editor\" data-id=\"1398804\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Et l\u2019environnement existe, sans aucun ticket.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-529d258 e-con-full cy-hp-xf cy-hp-opframe e-flex e-con e-child\" data-id=\"529d258\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9b0d1d8 e-con-full cy-hp-xf-in e-flex e-con e-child\" data-id=\"9b0d1d8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8fd5a67 cy-hp-h2 cy-hp-sc cy-hp-ondark cy-hp-optitle elementor-widget elementor-widget-heading\" data-id=\"8fd5a67\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Une plateforme, cinq fonctions<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-33206f4 e-con-full cy-hp-oprows e-flex e-con e-child\" data-id=\"33206f4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-dbbb118 e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"dbbb118\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-39cc748 cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"39cc748\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>01<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1d8ceb7 e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"1d8ceb7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a0ab133 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"a0ab133\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Un catalogue de ce que vous avez le droit de d\u00e9ployer<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c8d2797 cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"c8d2797\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Landing zones, infrastructure, applications. Chaque Blueprint porte d\u00e9j\u00e0 la d\u00e9cision d\u2019architecture&nbsp;: ce qu\u2019on vous propose est ce qui est autoris\u00e9.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0b34949 e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"0b34949\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-84a85e6 cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"84a85e6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>02<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3628e12 e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"3628e12\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e52cf9d cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"e52cf9d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Un formulaire au lieu du Terraform de quelqu\u2019un d\u2019autre<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e1dc70c cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"e1dc70c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Forms transforme un Blueprint en formulaire web, en n\u2019affichant que ce qui s\u2019applique \u00e0 votre stack. La politique valide avant la soumission, donc vous apprenez maintenant que la r\u00e9gion est mauvaise, et non apr\u00e8s l\u2019incident.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-16649b7 e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"16649b7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d349474 cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"d349474\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>03<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3318e7a e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"3318e7a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-05330a9 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"05330a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Des limites que vous ne pouvez pas franchir par accident<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-073b8b6 cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"073b8b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>La m\u00eame autorisation s\u2019applique que vous remplissiez le Form ou que votre agent le remplisse pour vous. La production exige toujours une approbation, et ni l\u2019un ni l\u2019autre n\u2019atteint ce que votre r\u00f4le n\u2019autorise pas. Fail-closed : une v\u00e9rification non r\u00e9solue vaut un refus.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ade5593 e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"ade5593\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-707abd5 cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"707abd5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>04<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e40750e e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"e40750e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c0ffd75 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"c0ffd75\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Les approbations, avant d\u2019appuyer sur d\u00e9ployer<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-66841ae cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"66841ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Les approbations sont sur le Form d\u00e8s aujourd\u2019hui&nbsp;: une demande qui exige un feu vert, comme un cluster GPU, est rout\u00e9e vers le bon approbateur au lieu d\u2019\u00eatre rejet\u00e9e, et vous voyez o\u00f9 elle en est. L\u2019estimation des co\u00fbts sur le Form arrive bient\u00f4t.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2d28354 e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"2d28354\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-76e4b2d cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"76e4b2d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>05<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a7e6f9f e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"a7e6f9f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a1f8fa9 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"a1f8fa9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Vibe codez. Dans les garde-fous.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f8825c9 cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"f8825c9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Un serveur MCP donne \u00e0 l\u2019agent de votre \u00e9diteur exactement vos acc\u00e8s&nbsp;: lister les ressources, lire un Blueprint, d\u00e9clencher une Day-2 Action.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1cb8b24 cy-hp cy-hp-deploy e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"1cb8b24\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-5619145 e-con-full cy-hp-congrid e-flex e-con e-child\" data-id=\"5619145\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-dc17fc3 e-con-full cy-hp-conhead cy-hp-reveal e-flex e-con e-child\" data-id=\"dc17fc3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-58f330b cy-hp-eyebrow cy-hp-eyebrow-faint elementor-widget elementor-widget-text-editor\" data-id=\"58f330b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>D\u00e9ploiement<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-51fd770 cy-hp-h2 cy-hp-conh2 elementor-widget elementor-widget-heading\" data-id=\"51fd770\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Tourne sur votre estate, accessible depuis votre \u00e9diteur<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-17b4f46 cy-hp-conp elementor-widget elementor-widget-text-editor\" data-id=\"17b4f46\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Compatible avec Terraform, Ansible, Helm et Argo CD, accessible via MCP. TerraCognita, InfraMap et TerraCost sont open source.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-50c7df6 e-con-full cy-hp-deptablecol e-flex e-con e-child\" data-id=\"50c7df6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e4094f8 e-con-full cy-hp-deptable e-flex e-con e-child\" data-id=\"e4094f8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ccac72d e-con-full cy-hp-colheads3 e-flex e-con e-child\" data-id=\"ccac72d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f5ba1e cy-hp-colh3-empty elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"7f5ba1e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-423066a cy-hp-colh3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"423066a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Ce que cela signifie<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d4e0570 cy-hp-colh3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"d4e0570\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>O\u00f9 r\u00e9sident vos donn\u00e9es<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-baffdc5 e-con-full cy-hp-conrow3 e-flex e-con e-child\" data-id=\"baffdc5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-65dc080 cy-hp-rowlabel elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"65dc080\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Auto-h\u00e9berg\u00e9, sur site ou bare metal<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-81138d3 cy-hp-cell3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"81138d3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Tous les modules sur votre infrastructure. Cycloid n\u2019y a ensuite aucun acc\u00e8s.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-19433e0 cy-hp-cell3 cy-hp-cell3-cy elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"19433e0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Votre r\u00e9seau. Air-gapped pris en charge.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1107a91 e-con-full cy-hp-conrow3 e-flex e-con e-child\" data-id=\"1107a91\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f56e58c cy-hp-rowlabel elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"f56e58c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>SaaS d\u00e9di\u00e9<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-30b8e2a cy-hp-cell3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"30b8e2a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Nous d\u00e9ployons et exploitons tous les modules dans un compte cloud que vous choisissez.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b3c607e cy-hp-cell3 cy-hp-cell3-cy elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"b3c607e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Compte isol\u00e9 sur AWS, Azure, GCP, Scaleway, OVH ou Outscale.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c1e30b e-con-full cy-hp-conrow3 e-flex e-con e-child\" data-id=\"9c1e30b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f0835e2 cy-hp-rowlabel elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"f0835e2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Hybride<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b80deb7 cy-hp-cell3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"b80deb7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Control plane g\u00e9r\u00e9 par nos soins, workers dans votre environnement.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e055921 cy-hp-cell3 cy-hp-cell3-cy elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"e055921\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Les charges de travail restent chez vous.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-68edf3a e-con-full cy-hp-conrow3 e-flex e-con e-child\" data-id=\"68edf3a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9abe02c cy-hp-rowlabel elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"9abe02c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>SaaS<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0c46fbd cy-hp-cell3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"0c46fbd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Enti\u00e8rement g\u00e9r\u00e9, la voie la plus rapide vers une plateforme op\u00e9rationnelle.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dbda8c3 cy-hp-cell3 cy-hp-cell3-cy elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"dbda8c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>H\u00e9bergement dans l\u2019UE disponible.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e0e1f5d e-con-full cy-hp cy-hp-testi e-no-lazyload e-flex e-con e-parent\" data-id=\"e0e1f5d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a98d447 e-con-full cy-hp-qregion e-flex e-con e-child\" data-id=\"a98d447\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9f56a03 e-con-full cy-hp-qsticky e-flex e-con e-child\" data-id=\"9f56a03\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2fc6333 e-con-full cy-hp-quoteblock e-flex e-con e-child\" data-id=\"2fc6333\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8b9d596 cy-hp-qmark elementor-widget elementor-widget-text-editor\" data-id=\"8b9d596\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>\u00ab<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d707995 cy-hp-qtext elementor-widget elementor-widget-heading\" data-id=\"d707995\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">L\u2019objectif&nbsp;: que chacun d\u00e9ploie un nouveau projet en quelques clics, dans le respect des bonnes pratiques, de la scalabilit\u00e9 et de l\u2019automatisation.<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0039c0b e-con-full cy-hp-qattr e-flex e-con e-child\" data-id=\"0039c0b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7a685e1 cy-hp-qname elementor-widget elementor-widget-text-editor\" data-id=\"7a685e1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Guillaume Maubert<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1641244 cy-hp-qrole elementor-widget elementor-widget-text-editor\" data-id=\"1641244\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>CEO, Alchemy<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4fdd8e9 cy-hp-fine elementor-widget elementor-widget-button\" data-id=\"4fdd8e9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/temoignages-clients\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Lire les t\u00e9moignages clients &rarr;<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-93a7969 cy-hp cy-hp-closing e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"93a7969\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fbc2d91 cy-hp-ch2 elementor-widget elementor-widget-heading\" data-id=\"fbc2d91\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">D\u2019un formulaire \u00e0 <br>un environnement en service<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3624ad7 cy-hp-csub elementor-widget elementor-widget-text-editor\" data-id=\"3624ad7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Venez avec une chose qui vous demande aujourd\u2019hui un ticket. Un environnement de staging, une action Day-2, une requ\u00eate d\u2019infrastructure. Trois minutes et vous la voyez dans Cycloid.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ca1fc53 e-con-full cy-hp-btnrow e-flex e-con e-child\" data-id=\"ca1fc53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5816182 cy-hp-btn elementor-widget elementor-widget-button\" data-id=\"5816182\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/demander-une-demo\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Voir un d\u00e9ploiement en 3 minutes<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-70403e5 cy-hp-obtn cy-on-dark elementor-widget elementor-widget-button\" data-id=\"70403e5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"\/fr\/tarification\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Voir les tarifs<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-424bb92 e-con-full cy-hp-device e-flex e-con e-child\" data-id=\"424bb92\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-25973ca cy-hp-devshot elementor-widget elementor-widget-image\" data-id=\"25973ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"1887\" height=\"909\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png\" class=\"attachment-full size-full wp-image-32157\" alt=\"\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image.png 1887w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-300x145.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1024x493.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-768x370.png 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/product-image-1536x740.png 1536w\" sizes=\"auto, (max-width: 1887px) 100vw, 1887px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Tout* ce qu\u2019il vous faut. Quand et o\u00f9 il vous le faut. *des environnements en libre-service, des requ\u00eates d\u2019infrastructure et des actions Day-2, avec un agent IA qui n\u2019atteint que ce que vous atteignez d\u00e9j\u00e0. Rien que vous puissiez casser. Voir un Blueprint Form d\u00e9ployer en 3 minutes \u2197 En production chez Le code n\u2019a &#8230; <a title=\"Page d\u2019accueil \u2014 D\u00e9veloppeurs\" class=\"read-more\" href=\"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/\" aria-label=\"En savoir plus sur Page d\u2019accueil \u2014 D\u00e9veloppeurs\">Lire la suite<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-32775","page","type-page","status-publish"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Page d\u2019accueil \u2014 D\u00e9veloppeurs - Cycloid<\/title>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Page d\u2019accueil \u2014 D\u00e9veloppeurs - Cycloid\" \/>\n<meta property=\"og:description\" content=\"Tout* ce qu\u2019il vous faut. Quand et o\u00f9 il vous le faut. *des environnements en libre-service, des requ\u00eates d\u2019infrastructure et des actions Day-2, avec un agent IA qui n\u2019atteint que ce que vous atteignez d\u00e9j\u00e0. Rien que vous puissiez casser. Voir un Blueprint Form d\u00e9ployer en 3 minutes \u2197 En production chez Le code n\u2019a ... Lire la suite\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/\" \/>\n<meta property=\"og:site_name\" content=\"Cycloid\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-24T10:39:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png\" \/>\n\t<meta property=\"og:image:width\" content=\"168\" \/>\n\t<meta property=\"og:image:height\" content=\"64\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-developpeurs\\\/\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-developpeurs\\\/\",\"name\":\"Page d\u2019accueil \u2014 D\u00e9veloppeurs - Cycloid\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-developpeurs\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-developpeurs\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/cs-european-commission.png\",\"datePublished\":\"2026-09-24T09:35:38+00:00\",\"dateModified\":\"2026-09-24T10:39:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-developpeurs\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-developpeurs\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-developpeurs\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/cs-european-commission.png\",\"contentUrl\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/cs-european-commission.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-developpeurs\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Page d\u2019accueil \u2014 D\u00e9veloppeurs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/\",\"name\":\"Cycloid\",\"description\":\"Cycloid Internal Developer Portal and Platform revolutionizes governance, cloud management, sovereignty, and DevX. Available on-prem or in any cloud.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#organization\",\"name\":\"Cycloid\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/cycloid_logo.webp\",\"contentUrl\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/cycloid_logo.webp\",\"width\":406,\"height\":109,\"caption\":\"Cycloid\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Page d\u2019accueil \u2014 D\u00e9veloppeurs - Cycloid","robots":{"index":"noindex","follow":"follow"},"og_locale":"fr_FR","og_type":"article","og_title":"Page d\u2019accueil \u2014 D\u00e9veloppeurs - Cycloid","og_description":"Tout* ce qu\u2019il vous faut. Quand et o\u00f9 il vous le faut. *des environnements en libre-service, des requ\u00eates d\u2019infrastructure et des actions Day-2, avec un agent IA qui n\u2019atteint que ce que vous atteignez d\u00e9j\u00e0. Rien que vous puissiez casser. Voir un Blueprint Form d\u00e9ployer en 3 minutes \u2197 En production chez Le code n\u2019a ... Lire la suite","og_url":"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/","og_site_name":"Cycloid","article_modified_time":"2026-09-24T10:39:10+00:00","og_image":[{"width":168,"height":64,"url":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/","url":"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/","name":"Page d\u2019accueil \u2014 D\u00e9veloppeurs - Cycloid","isPartOf":{"@id":"https:\/\/www.cycloid.io\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/#primaryimage"},"image":{"@id":"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png","datePublished":"2026-09-24T09:35:38+00:00","dateModified":"2026-09-24T10:39:10+00:00","breadcrumb":{"@id":"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/#primaryimage","url":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png","contentUrl":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.cycloid.io\/fr\/accueil-developpeurs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.cycloid.io\/fr\/"},{"@type":"ListItem","position":2,"name":"Page d\u2019accueil \u2014 D\u00e9veloppeurs"}]},{"@type":"WebSite","@id":"https:\/\/www.cycloid.io\/fr\/#website","url":"https:\/\/www.cycloid.io\/fr\/","name":"Cycloid","description":"Cycloid Internal Developer Portal and Platform revolutionizes governance, cloud management, sovereignty, and DevX. Available on-prem or in any cloud.","publisher":{"@id":"https:\/\/www.cycloid.io\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.cycloid.io\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/www.cycloid.io\/fr\/#organization","name":"Cycloid","url":"https:\/\/www.cycloid.io\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/www.cycloid.io\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/12\/cycloid_logo.webp","contentUrl":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/12\/cycloid_logo.webp","width":406,"height":109,"caption":"Cycloid"},"image":{"@id":"https:\/\/www.cycloid.io\/fr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/pages\/32775","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/comments?post=32775"}],"version-history":[{"count":42,"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/pages\/32775\/revisions"}],"predecessor-version":[{"id":34393,"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/pages\/32775\/revisions\/34393"}],"wp:attachment":[{"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/media?parent=32775"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}