/* ==========================================================================
   Azuling — landing page
   ========================================================================== */

:root {
  --ink: #070d1f;
  --ink-2: #0c1430;
  --text: #0e1630;
  --muted: #586379;
  --line: #e3e7f0;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;

  --azure: #2f6bff;
  --azure-soft: #eaf0ff;
  --violet: #7c5cff;
  --violet-soft: #efebff;
  --cyan: #22c3ee;
  --green: #0e8a45;
  --green-soft: #e5f6ec;
  --amber: #b45309;
  --amber-soft: #fdf1e2;

  --grad: linear-gradient(135deg, #1f5fff 0%, #1aa6f0 100%);
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(14, 22, 48, .05);
  --shadow: 0 1px 2px rgba(14, 22, 48, .05), 0 12px 32px -12px rgba(14, 22, 48, .14);
  --ease-out: cubic-bezier(.2, .7, .2, 1);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  background: #fff; color: var(--text); padding: 8px 14px; border-radius: 8px;
}
.skip:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--azure); outline-offset: 3px; border-radius: 6px; }

.ico {
  width: 22px; height: 22px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ─── Boutons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding-inline: 22px; border-radius: 12px;
  font-weight: 600; font-size: 15.5px; letter-spacing: -.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { height: 38px; padding-inline: 16px; font-size: 14.5px; border-radius: 10px; }
.btn--primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(31, 95, 255, .6), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn--primary:hover { box-shadow: 0 12px 30px -8px rgba(26, 166, 240, .7), inset 0 1px 0 rgba(255, 255, 255, .2); }
.btn--ghost { color: #e8edff; border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .04); }
.btn--ghost:hover { border-color: rgba(255, 255, 255, .34); background: rgba(255, 255, 255, .08); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: #eef2ff; }

/* ─── Pastilles de statut ─── */
.status {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 11px; border-radius: 999px;
  font-family: var(--font); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0; text-transform: none; line-height: 1.5; white-space: nowrap;
}
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status--live { color: var(--green); background: var(--green-soft); }
.status--dev { color: #5a3fe0; background: var(--violet-soft); }
.status--dev-dark { color: #c8bbff; background: rgba(124, 92, 255, .18); }
.status--live-dark { color: #86efac; background: rgba(34, 197, 94, .14); }
.status--ask-dark { color: #8fd3ff; background: rgba(76, 195, 247, .14); }
.status--inline { margin-left: 6px; padding: 2px 9px; font-size: 11.5px; vertical-align: 1px; }

/* ==========================================================================
   En-tête
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo { height: 36px; width: auto; max-width: none; object-fit: contain; }

.main-nav { display: flex; gap: 20px; }
.main-nav a { position: relative; color: #4b5570; font-size: 14px; font-weight: 500; transition: color .15s; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { transform: scaleX(1); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden; overflow: clip;
  background: var(--ink); color: #fff;
}
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(47, 107, 255, .38) 0%, transparent 70%),
    radial-gradient(40% 40% at 85% 35%, rgba(26, 166, 240, .2) 0%, transparent 70%),
    radial-gradient(35% 35% at 10% 45%, rgba(124, 92, 255, .14) 0%, transparent 70%);
  animation: glow-drift 14s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 20%, #000 20%, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 20%, #000 20%, transparent 75%);
}
@keyframes glow-drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(0, 2%, 0) scale(1.06); } }

.hero__inner { position: relative; text-align: center; padding-block: 88px 64px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 12px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .05);
  color: #c9d4f4; font-size: 13.5px; font-weight: 500;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); } 70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); } 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); } }

.hero__title {
  margin: 26px auto 0; max-width: 980px;
  font-size: clamp(38px, 6.2vw, 70px); line-height: 1.04;
  font-weight: 700; letter-spacing: -.038em;
}
.grad-text {
  background: linear-gradient(90deg, #6fa4ff 0%, #4cc3f7 25%, #8fe0ff 50%, #4cc3f7 75%, #6fa4ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 9s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero__lead { margin: 24px auto 0; max-width: 740px; color: #b3bfdf; font-size: clamp(16.5px, 1.9vw, 19px); line-height: 1.65; }
.hero__cta { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Entrée du hero au chargement */
.hero__eyebrow, .hero__title, .hero__lead, .hero__cta, .mock, .hero__facts { animation: rise .9s var(--ease-out) both; }
.hero__title { animation-delay: .08s; }
.hero__lead { animation-delay: .16s; }
.hero__cta { animation-delay: .24s; }
.mock { animation-delay: .36s; }
.hero__facts { animation-delay: .5s; }
@keyframes rise { from { opacity: 0; translate: 0 22px; } to { opacity: 1; translate: 0 0; } }

/* ─── Maquette ─── */
.mock {
  margin: 64px auto 0; max-width: 1080px; text-align: left;
  background: #fff; color: var(--text);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .1), 0 40px 100px -30px rgba(0, 0, 0, .7), 0 0 120px -20px rgba(47, 107, 255, .35);
}
.mock__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px; border-bottom: 1px solid var(--line); background: #fafbfd;
  font-size: 13px;
}
.dots { display: inline-flex; gap: 6px; flex: none; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: #e1e5ee; }
.mock__title { font-weight: 600; color: var(--text); }
.mock__title .sep { color: #aab2c5; margin-inline: 4px; }
.mock__pill { margin-left: auto; font-size: 12px; font-weight: 600; color: #5a3fe0; background: var(--violet-soft); padding: 3px 10px; border-radius: 999px; }

.mock__body { display: grid; grid-template-columns: 1fr 250px; }
.mock__grid { font-size: 13.5px; }
.mrow {
  display: grid; grid-template-columns: 34px 1fr 1fr 118px; gap: 16px; align-items: start;
  padding: 14px 18px; border-bottom: 1px solid #eef1f6; line-height: 1.5;
}
.mrow:last-child { border-bottom: 0; }
.mrow--head { padding-block: 10px; font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #8a93a8; background: #fcfcfe; }
.mrow .n { font-family: var(--mono); font-size: 12px; color: #9aa3b6; padding-top: 1px; }
.mrow--active { background: linear-gradient(90deg, rgba(47, 107, 255, .07), rgba(47, 107, 255, .02)); box-shadow: inset 3px 0 0 var(--azure); }
.mrow mark { background: rgba(47, 107, 255, .12); color: #1f4fd6; border-radius: 4px; padding: 0 3px; border-bottom: 1.5px solid rgba(47, 107, 255, .5); }
.caret { display: inline-block; width: 2px; height: 1.05em; margin-left: 2px; vertical-align: -2px; background: var(--azure); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.chip { display: inline-block; font-style: normal; font-size: 11.5px; font-weight: 600; padding: 3px 9px; border-radius: 6px; white-space: nowrap; }
.chip--tm { color: var(--green); background: var(--green-soft); }
.chip--gl { color: #1f4fd6; background: var(--azure-soft); }
.chip--ai { color: #5a3fe0; background: var(--violet-soft); animation: chip-pulse 2s ease-in-out infinite; }
.chip--fz { color: var(--amber); background: var(--amber-soft); }
@keyframes chip-pulse { 50% { box-shadow: 0 0 0 4px rgba(124, 92, 255, .12); } }

.mock__side { border-left: 1px solid var(--line); background: #fafbfd; padding: 14px; display: grid; gap: 12px; align-content: start; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.side-card__label { font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #8a93a8; }
.side-card__big { font-size: 26px; font-weight: 700; letter-spacing: -.03em; margin-top: 2px; }
.side-card__meta { font-size: 12px; color: var(--muted); margin-top: 6px; }
.gauge { height: 6px; border-radius: 99px; background: #eef1f6; margin-top: 6px; overflow: hidden; }
.gauge span { display: block; height: 100%; width: var(--v); background: linear-gradient(90deg, #f5a524, #16a34a); border-radius: inherit; transform-origin: left; animation: gauge 1.4s .9s var(--ease-out) both; }
@keyframes gauge { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.term { display: flex; gap: 6px; align-items: center; margin-top: 6px; font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.term span:not(.arrow) { background: var(--azure-soft); color: #1f4fd6; padding: 2px 8px; border-radius: 6px; }
.term .arrow { color: #9aa3b6; }
.checks { margin-top: 6px; display: grid; gap: 3px; font-size: 12.5px; color: var(--muted); }
.checks li::before { content: "✓"; color: var(--green); font-weight: 700; margin-right: 7px; }

/* ─── Faits ─── */
.hero__facts {
  margin: 56px auto 0; max-width: 1080px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.hero__facts li { padding: 26px 16px 0; display: grid; gap: 4px; }
.hero__facts li + li { border-left: 1px solid rgba(255, 255, 255, .08); }
.hero__facts strong { font-size: clamp(18px, 2.2vw, 26px); font-weight: 700; letter-spacing: -.02em; color: #fff; }
.hero__facts span { font-size: 14px; color: #8f9cc2; }

/* ─── Défilement des langues ─── */
.marquee {
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-block: 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 70s linear infinite; }
.marquee__track span { padding-inline: 22px; font-size: 15px; font-weight: 500; color: #7f8dba; white-space: nowrap; }
.marquee__track span:nth-child(3n + 1) { color: #b3c3f0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { position: relative; padding-block: clamp(80px, 10vw, 128px); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink); color: #fff; overflow: hidden; overflow: clip; }
.section--dark .wrap { position: relative; }

.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--azure);
}
.eyebrow--dark { color: #8fb2ff; }
.section-head h2, .cta h2, .dev h2 {
  margin-top: 16px;
  font-size: clamp(30px, 4.2vw, 48px); line-height: 1.08;
  font-weight: 700; letter-spacing: -.034em;
}
.lead { margin-top: 18px; font-size: clamp(16.5px, 1.7vw, 18.5px); line-height: 1.65; color: var(--muted); }
.section--dark .lead { color: #aab6d8; }

.dark-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 40% at 90% 0%, rgba(124, 92, 255, .2), transparent 70%),
    radial-gradient(45% 35% at 0% 40%, rgba(47, 107, 255, .18), transparent 70%);
}
.dark-glow--dev {
  background:
    radial-gradient(45% 50% at 100% 30%, rgba(26, 166, 240, .18), transparent 70%),
    radial-gradient(40% 40% at 0% 100%, rgba(47, 107, 255, .2), transparent 70%);
}
.dark-glow--deploy {
  background:
    radial-gradient(55% 45% at 50% 0%, rgba(26, 166, 240, .2), transparent 70%),
    radial-gradient(40% 40% at 100% 100%, rgba(47, 107, 255, .18), transparent 70%);
}

/* ─── Coches ─── */
.ticks { margin-top: 16px; display: grid; gap: 8px; font-size: 14px; color: #36405a; }
.ticks li { position: relative; padding-left: 24px; line-height: 1.45; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--azure-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2 7 10.5l4.5-5' fill='none' stroke='%232f6bff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.ticks--2col { grid-template-columns: 1fr 1fr; column-gap: 20px; }
.ticks--dark { color: #c3cdea; }
.ticks--dark li::before {
  background: rgba(76, 195, 247, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2 7 10.5l4.5-5' fill='none' stroke='%238fd3ff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat;
}

/* ─── Cartes plateforme ─── */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d6dcea; }
.card h3 { margin-top: 18px; font-size: 17.5px; font-weight: 650; letter-spacing: -.015em; }
.card > p { margin-top: 8px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.card .ticks { padding-top: 16px; border-top: 1px solid #eef1f6; }

.card__icon {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: grid; place-items: center;
  color: var(--azure); background: var(--azure-soft);
  box-shadow: inset 0 0 0 1px rgba(47, 107, 255, .12);
  transition: transform .25s var(--ease-out);
}
.card:hover .card__icon, .pillar:hover .card__icon { transform: rotate(-6deg) scale(1.06); }
.card__icon--violet { color: #6a4cf5; background: var(--violet-soft); box-shadow: inset 0 0 0 1px rgba(124, 92, 255, .15); }

/* ─── Nouvelles capacités ─── */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  padding: 32px; box-shadow: var(--shadow-sm);
}
.feature h3 { margin-top: 18px; font-size: clamp(21px, 2.3vw, 26px); font-weight: 700; letter-spacing: -.025em; }
.feature > p, .feature__text > p { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.feature__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.feature--wide { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; padding: 44px; }
.feature-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }

.callout {
  margin-top: 22px; padding: 16px 18px; border-radius: 12px;
  background: linear-gradient(90deg, rgba(124, 92, 255, .1), rgba(47, 107, 255, .04));
  border: 1px solid rgba(124, 92, 255, .22);
}
.callout__title { font-weight: 650; color: #3d2bb0; }
.callout p:not(.callout__title) { margin-top: 4px; font-size: 14.5px; color: #4b4f6b; }

/* Appel */
.call {
  background: var(--ink); color: #fff; border-radius: 18px; padding: 20px;
  box-shadow: 0 30px 60px -30px rgba(7, 13, 31, .6);
  background-image: radial-gradient(80% 60% at 100% 0%, rgba(124, 92, 255, .25), transparent 70%);
}
.call__top { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: #9eabd0; }
.call__time { margin-left: auto; font-family: var(--mono); }
.live { display: inline-flex; align-items: center; gap: 6px; color: #fca5a5; font-weight: 600; }
.live i { width: 7px; height: 7px; border-radius: 50%; background: #ef4444; animation: blink 1.4s steps(1) infinite; }

.speaker {
  margin-top: 16px; display: grid; grid-template-columns: 38px 1fr; gap: 6px 12px; align-items: center;
  padding: 14px; border-radius: 14px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08);
}
.speaker--out { margin-top: 0; border-color: rgba(124, 92, 255, .45); background: rgba(124, 92, 255, .1); }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 700; background: linear-gradient(135deg, #f59e0b, #ec4899); }
.speaker__meta { display: grid; line-height: 1.3; }
.speaker__meta strong { font-size: 14px; }
.speaker__meta span { font-size: 12.5px; color: #9eabd0; }
.speaker--out .speaker__meta span { color: #c8bbff; }

.wave { grid-column: 1 / -1; display: flex; align-items: center; gap: 3px; height: 40px; }
.wave i { flex: 1; height: var(--h); border-radius: 3px; background: linear-gradient(180deg, #7fb0ff, #3b7bff); transform-origin: center; animation: wave 1.6s ease-in-out infinite; }
.wave--out i { background: linear-gradient(180deg, #c3b4ff, #7c5cff); animation-duration: 1.8s; }
.wave i:nth-child(2n) { animation-delay: -.4s; }
.wave i:nth-child(3n) { animation-delay: -.8s; }
.wave i:nth-child(5n) { animation-delay: -1.1s; }
@keyframes wave { 0%, 100% { transform: scaleY(.55); } 50% { transform: scaleY(1); } }

.call__bridge { display: flex; align-items: center; gap: 10px; padding-block: 12px; }
.bridge__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(160, 140, 255, .6), transparent); }
.bridge__tag { font-family: var(--mono); font-size: 11px; letter-spacing: .02em; color: #c8bbff; text-align: center; }

.caption { margin-top: 14px; padding: 10px 12px; border-radius: 10px; background: rgba(0, 0, 0, .35); font-size: 13.5px; color: #eef2ff; display: flex; gap: 10px; align-items: baseline; }
.caption span { font-family: var(--mono); font-size: 10.5px; font-weight: 500; color: var(--ink); background: #c8bbff; border-radius: 4px; padding: 1px 5px; }

.integrations { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.integrations span { font-size: 12px; color: #b9c4e4; padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .12); }

/* Documents */
.docs { margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 22px; border-radius: 14px; background: var(--bg-soft); }
.doc { position: relative; width: 112px; height: 140px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 22px 14px 14px; display: grid; gap: 7px; align-content: start; box-shadow: var(--shadow-sm); }
.doc--out { border-color: rgba(124, 92, 255, .4); box-shadow: 0 10px 24px -12px rgba(124, 92, 255, .45); }
.doc__tag { position: absolute; top: 6px; right: 8px; font-family: var(--mono); font-size: 10px; font-weight: 500; color: var(--muted); }
.doc--out .doc__tag { color: #5a3fe0; }
.doc .l { display: block; height: 5px; border-radius: 3px; background: #dfe4ee; }
.doc .l--h { width: 62%; height: 7px; background: #b9c3d6; }
.doc .l--s { width: 72%; }
.doc--out .l { background: #e3dcff; }
.doc--out .l--h { background: #b9a8ff; }
.doc .blk { display: block; height: 26px; border-radius: 4px; background: #eef1f6; }
.doc--out .blk { background: #f1edff; }
.doc--out i { transform-origin: left; animation: fill-line 6s ease-in-out infinite; }
.doc--out i:nth-of-type(2) { animation-delay: .15s; }
.doc--out i:nth-of-type(3) { animation-delay: .3s; }
.doc--out i:nth-of-type(4) { animation-delay: .45s; }
.doc--out i:nth-of-type(5) { animation-delay: .6s; }
.doc--out i:nth-of-type(6) { animation-delay: .75s; }
@keyframes fill-line { 0% { transform: scaleX(0); } 25%, 85% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
.docs__arrow { font-size: 20px; color: #9a86ff; animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(4px); } }

.formats { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.formats span { font-family: var(--mono); font-size: 11.5px; color: #4b5570; background: var(--bg-soft); border: 1px solid var(--line); padding: 3px 8px; border-radius: 6px; }

/* Vidéo */
.video { margin-top: 22px; }
.video__frame {
  position: relative; aspect-ratio: 16 / 8; max-width: 100%; border-radius: 14px; overflow: hidden;
  background:
    radial-gradient(40% 60% at 30% 40%, rgba(59, 123, 255, .55), transparent 70%),
    radial-gradient(40% 60% at 75% 60%, rgba(124, 92, 255, .5), transparent 70%),
    linear-gradient(135deg, #111a3a, #070d1f);
}
.video__badge { position: absolute; top: 10px; left: 10px; font-size: 11.5px; font-weight: 600; color: #fff; background: rgba(124, 92, 255, .85); padding: 3px 9px; border-radius: 999px; }
.video__play { position: absolute; left: 50%; top: 44%; width: 44px; height: 44px; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .3); }
.video__play::after { content: ""; position: absolute; left: 17px; top: 13px; border-left: 13px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; }
.video__sub { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); white-space: nowrap; font-size: 13px; color: #fff; background: rgba(0, 0, 0, .6); padding: 4px 10px; border-radius: 6px; }
.video__track { position: relative; height: 22px; margin-top: 10px; border-radius: 6px; background: var(--bg-soft); border: 1px solid var(--line); }
.video__track i { position: absolute; top: 4px; bottom: 4px; left: var(--l); width: var(--w); border-radius: 4px; background: linear-gradient(90deg, #b9a8ff, #8fb2ff); }
.video__track b { position: absolute; top: -4px; bottom: -4px; left: 38%; width: 2px; background: var(--ink); border-radius: 2px; animation: playhead 12s linear infinite; }
@keyframes playhead { from { left: 2%; } to { left: 96%; } }

/* ==========================================================================
   Développeurs
   ========================================================================== */
.dev { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); gap: 56px; align-items: center; }
.dev h2 { font-size: clamp(30px, 3.4vw, 40px); }
.dev-list { margin-top: 32px; display: grid; gap: 18px; }
.dev-list li { display: grid; gap: 3px; padding-left: 18px; border-left: 2px solid rgba(143, 178, 255, .22); transition: border-color .2s ease; }
.dev-list li:hover { border-left-color: #4cc3f7; }
.dev-list strong { font-size: 15.5px; font-weight: 600; color: #fff; }
.dev-list li > span { font-size: 14.5px; color: #aab6d8; }

.tabs {
  position: relative; min-width: 0;
  background: #0b1330; border: 1px solid rgba(255, 255, 255, .09); border-radius: 18px; overflow: hidden; overflow: clip;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .8), 0 0 90px -30px rgba(31, 95, 255, .45);
}
.tabs__radio { position: absolute; opacity: 0; pointer-events: none; }
.tabs__bar { display: flex; align-items: center; gap: 4px; padding: 10px 12px; border-bottom: 1px solid rgba(255, 255, 255, .08); overflow-x: auto; }
.tabs__bar .dots { margin-right: 10px; }
.tabs__bar .dots i { background: rgba(255, 255, 255, .16); }
.tabs__bar label {
  font-family: var(--mono); font-size: 12.5px; color: #8f9cc2;
  padding: 6px 12px; border-radius: 8px; white-space: nowrap; cursor: pointer;
  transition: color .15s ease, background-color .15s ease;
}
.tabs__bar label:hover { color: #fff; }
.tabs__panel {
  display: none; margin: 0; padding: 20px 22px; min-height: 440px; overflow-x: auto;
  font-family: var(--mono); font-size: 13px; line-height: 1.7; color: #d7def5;
}
#tab-curl:checked ~ .panel-curl,
#tab-ts:checked ~ .panel-ts,
#tab-py:checked ~ .panel-py,
#tab-ci:checked ~ .panel-ci { display: block; animation: fade-in .35s ease both; }
#tab-curl:checked ~ .tabs__bar label[for="tab-curl"],
#tab-ts:checked ~ .tabs__bar label[for="tab-ts"],
#tab-py:checked ~ .tabs__bar label[for="tab-py"],
#tab-ci:checked ~ .tabs__bar label[for="tab-ci"] { color: #fff; background: rgba(255, 255, 255, .09); box-shadow: inset 0 -2px 0 #4cc3f7; }
#tab-curl:focus-visible ~ .tabs__bar label[for="tab-curl"],
#tab-ts:focus-visible ~ .tabs__bar label[for="tab-ts"],
#tab-py:focus-visible ~ .tabs__bar label[for="tab-py"],
#tab-ci:focus-visible ~ .tabs__bar label[for="tab-ci"] { outline: 2px solid #8fb2ff; outline-offset: 1px; }
@keyframes fade-in { from { opacity: 0; translate: 0 6px; } to { opacity: 1; translate: 0 0; } }
.tabs__foot { padding: 10px 22px 14px; border-top: 1px solid rgba(255, 255, 255, .06); font-size: 12.5px; color: #6c7899; }

.c-cmd { color: #7fb0ff; }
.c-kw { color: #c8bbff; }
.c-fn { color: #7fd4ff; }
.c-str { color: #a5e3b8; }
.c-key { color: #c8bbff; }
.c-num { color: #fbbf77; }
.c-com { color: #6c7899; }

.formats-strip { margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .08); display: flex; align-items: center; gap: 14px 22px; flex-wrap: wrap; }
.formats-strip > p { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #7f8fbd; }
.formats--dark { margin-top: 0; }
.formats--dark span { color: #c3cdea; background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }

/* ==========================================================================
   Solutions entreprise
   ========================================================================== */
.rotator { display: block; height: 1.15em; overflow: hidden; }
.rotator__track { display: block; animation: words 10s cubic-bezier(.76, 0, .24, 1) infinite; }
.rotator__track span {
  display: block; height: 1.15em; line-height: 1.15em; white-space: nowrap;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes words {
  0%, 18% { transform: translateY(0); }
  25%, 43% { transform: translateY(-1.15em); }
  50%, 68% { transform: translateY(-2.3em); }
  75%, 93% { transform: translateY(-3.45em); }
  100% { transform: translateY(-4.6em); }
}

.usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.usecase {
  position: relative; overflow: hidden; overflow: clip;
  padding: 28px 26px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.usecase::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out);
}
.usecase:hover { box-shadow: var(--shadow); border-color: #d6dcea; }
.usecase:hover::after { transform: scaleX(1); }
.usecase .ico { width: 26px; height: 26px; color: var(--azure); }
.usecase h3 { margin-top: 16px; font-size: 17px; font-weight: 650; letter-spacing: -.015em; }
.usecase p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
.tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.tags span { font-size: 12px; color: #44506b; background: var(--bg-soft); border: 1px solid var(--line); padding: 2px 9px; border-radius: 999px; }

/* Pipeline de localisation continue */
.pipeline { margin-top: 24px; padding: 30px; border-radius: 22px; border: 1px solid var(--line); background: linear-gradient(180deg, #f7f9ff, #fff); }
.pipeline__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.pipeline__title { font-family: var(--mono); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--azure); }

.steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.steps::before {
  content: ""; position: absolute; top: 27px; height: 2px; z-index: 0;
  left: 28px; right: calc((100% - 56px) / 5 - 28px);
  background: linear-gradient(90deg, #d5e0ff, #c9ecfc);
}
.steps::after {
  content: ""; position: absolute; top: 24px; left: 24px; z-index: 1;
  width: 8px; height: 8px; border-radius: 50%; background: var(--azure);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, .18), 0 0 14px rgba(47, 107, 255, .6);
  animation: travel 10s linear infinite;
}
@keyframes travel {
  0% { left: 24px; opacity: 0; }
  3% { opacity: 1; }
  87% { opacity: 1; }
  90%, 100% { left: calc((100% - 56px) / 5 * 4 + 56px + 24px); opacity: 0; }
}
.step { position: relative; }
.step__num {
  position: relative; z-index: 2;
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--azure);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  animation: step-glow 10s linear infinite;
}
.step:nth-child(2) .step__num { animation-delay: 2.25s; }
.step:nth-child(3) .step__num { animation-delay: 4.5s; }
.step:nth-child(4) .step__num { animation-delay: 6.75s; }
.step:nth-child(5) .step__num { animation-delay: 9s; }
@keyframes step-glow {
  0%, 9% { background-color: #2f6bff; color: #fff; border-color: #2f6bff; box-shadow: 0 10px 24px -8px rgba(47, 107, 255, .7); }
  20%, 100% { background-color: #fff; color: #2f6bff; border-color: #e3e7f0; box-shadow: 0 1px 2px rgba(14, 22, 48, .05); }
}
.step strong { display: block; margin-top: 16px; font-size: 15px; font-weight: 650; letter-spacing: -.01em; }
.step > span:last-child { display: block; margin-top: 4px; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* Besoin particulier */
.custom {
  margin-top: 24px;
  display: grid; grid-template-columns: 1.1fr 1.2fr auto; gap: 36px; align-items: center;
  padding: 32px 36px; border-radius: 22px; background: var(--bg-soft); border: 1px solid var(--line);
}
.custom h3 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.custom__text p { margin-top: 8px; color: var(--muted); font-size: 15px; }
.custom__list { margin-top: 0; }

/* ==========================================================================
   Domaines
   ========================================================================== */
.domains { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.domain {
  position: relative; overflow: hidden; overflow: clip;
  display: flex; flex-direction: column;
  padding: 22px 20px 18px; border-radius: 14px; background: #fff; border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.domain::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad); opacity: 0; transition: opacity .2s ease; }
.domain:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfdaf5; }
.domain:hover::before { opacity: 1; }
.domain h3 { font-size: 15.5px; font-weight: 650; letter-spacing: -.01em; line-height: 1.35; }
.domain__desc { margin-top: 4px; font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.domain__term {
  margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px 6px;
  font-family: var(--mono); font-size: 11.5px;
}
.domain__desc + .domain__term { margin-top: 14px; }
.domain__term span:first-child { color: #44506b; }
.domain__term i { font-style: normal; color: #9aa3b6; transition: transform .25s ease; }
.domain__term span:last-child { color: #1f4fd6; background: var(--azure-soft); padding: 1px 6px; border-radius: 4px; }
.domain:hover .domain__term i { transform: translateX(3px); color: var(--azure); }

/* ==========================================================================
   R&D
   ========================================================================== */
.arch {
  border: 1px solid rgba(255, 255, 255, .09); border-radius: 22px;
  padding: 32px; background: rgba(255, 255, 255, .025);
}
.arch__layer { display: grid; grid-template-columns: 190px 1fr; gap: 20px; align-items: center; }
.arch__label { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #8fa0cf; }
.arch__nodes { display: flex; flex-wrap: wrap; gap: 8px; }
.node {
  padding: 9px 14px; border-radius: 10px; font-size: 14px; color: #dfe6ff;
  border: 1px solid rgba(255, 255, 255, .11); background: rgba(255, 255, 255, .04);
  transition: border-color .2s ease, background-color .2s ease;
}
.node:hover { border-color: rgba(143, 178, 255, .45); background: rgba(255, 255, 255, .07); }
.node--core {
  color: #fff; font-weight: 600;
  background: linear-gradient(135deg, rgba(47, 107, 255, .32), rgba(26, 166, 240, .26));
  border-color: rgba(76, 195, 247, .55);
  animation: core-pulse 3s ease-in-out infinite;
}
@keyframes core-pulse { 0%, 100% { box-shadow: 0 0 22px -8px rgba(76, 195, 247, .5); } 50% { box-shadow: 0 0 36px -6px rgba(76, 195, 247, .85); } }
.arch__link { position: relative; height: 30px; margin-left: 210px; }
.arch__link::before { content: ""; position: absolute; left: 20px; top: 3px; bottom: 7px; border-left: 1px dashed rgba(143, 178, 255, .45); }
.arch__link::after { content: ""; position: absolute; left: 16px; bottom: 2px; border-top: 5px solid rgba(143, 178, 255, .7); border-left: 4.5px solid transparent; border-right: 4.5px solid transparent; }
.arch__link i {
  position: absolute; left: 17px; top: 0; width: 7px; height: 7px; border-radius: 50%;
  background: #8fe0ff; box-shadow: 0 0 10px 2px rgba(76, 195, 247, .7);
  opacity: 0; animation: drop 1.8s ease-in infinite;
}
.arch__link:nth-child(4) i { animation-delay: .45s; }
.arch__link:nth-child(6) i { animation-delay: .9s; }
.arch__link:nth-child(8) i { animation-delay: 1.35s; }
@keyframes drop { 0% { top: 0; opacity: 0; } 20%, 75% { opacity: 1; } 100% { top: 18px; opacity: 0; } }

.axes { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.axis {
  padding: 26px; border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .09); background: rgba(255, 255, 255, .03);
  display: flex; flex-direction: column;
  transition: border-color .2s ease, background-color .2s ease;
}
.axis:hover { border-color: rgba(76, 195, 247, .4); background: rgba(255, 255, 255, .05); }
.axis__num { font-family: var(--mono); font-size: 12px; color: #6fc5f5; letter-spacing: .06em; }
.axis h3 { margin-top: 10px; font-size: 18px; font-weight: 650; letter-spacing: -.015em; }
.axis > p:not(.axis__num):not(.axis__lock) { margin-top: 8px; font-size: 14.5px; color: #aab6d8; line-height: 1.6; }
.axis__lock { margin-top: auto; padding-top: 18px; font-size: 13.5px; color: #cfd8f5; line-height: 1.55; }
.axis__lock span { display: block; margin-bottom: 4px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .08); font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #7f8fbd; }

.rd-note {
  margin-top: 28px; display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px; border-radius: 16px;
  background: linear-gradient(90deg, rgba(47, 107, 255, .14), rgba(26, 166, 240, .07));
  border: 1px solid rgba(143, 178, 255, .25);
}
.rd-note .ico { color: #8fd3ff; margin-top: 2px; }
.rd-note p { font-size: 15px; color: #c3cdea; }
.rd-note strong { color: #fff; }

/* ==========================================================================
   Gouvernements et grandes entreprises
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pillar {
  display: flex; gap: 20px; padding: 30px; border-radius: 20px;
  border: 1px solid var(--line); background: linear-gradient(160deg, #fff 45%, #f1f6ff);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.pillar:hover { box-shadow: var(--shadow); border-color: #d3dcf0; }
.pillar h3 { font-size: 18.5px; font-weight: 650; letter-spacing: -.015em; }
.pillar p { margin-top: 8px; font-size: 15px; color: var(--muted); }

.subhead { margin: 56px 0 20px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 20px; font-weight: 650; letter-spacing: -.015em; }

.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.trust__item { display: flex; gap: 16px; padding: 28px 26px; background: #fff; transition: background-color .2s ease; }
.trust__item:hover { background: #fafcff; }
.trust__item .ico { color: var(--azure); margin-top: 2px; }
.trust__item h4 { font-size: 16px; font-weight: 650; letter-spacing: -.01em; }
.trust__item p { margin-top: 4px; font-size: 14.5px; color: var(--muted); }

/* ==========================================================================
   Déploiement dans votre cloud
   ========================================================================== */
.boundary {
  display: grid; grid-template-columns: minmax(0, 190px) minmax(0, 1fr) minmax(0, 200px);
  gap: 34px; align-items: center;
}
.boundary__side { display: grid; gap: 14px; }
.ext {
  position: relative; display: grid; gap: 2px;
  padding: 12px 14px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .04);
  font-size: 14px; font-weight: 600; color: #e6ecff; line-height: 1.35;
}
.ext small { font-family: var(--mono); font-size: 11px; font-weight: 400; color: #8f9cc2; }
.boundary__side--in .ext::after {
  content: ""; position: absolute; right: -34px; top: 50%; width: 32px; height: 2px;
  background: repeating-linear-gradient(90deg, #8fb2ff 0 5px, transparent 5px 9px);
  animation: flow .8s linear infinite;
}
@keyframes flow { to { background-position: 9px 0; } }
.ext--blocked { color: #fecaca; font-weight: 500; border-color: rgba(248, 113, 113, .3); background: rgba(239, 68, 68, .07); padding-left: 38px; }
.ext--blocked::before {
  content: "✕"; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700; color: #fff; background: rgba(239, 68, 68, .75);
}
.ext--blocked::after {
  content: ""; position: absolute; left: -34px; top: 50%; width: 32px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(248, 113, 113, .6) 0 4px, transparent 4px 8px);
}

.boundary__box { position: relative; padding: 28px; border-radius: 22px; background: rgba(76, 195, 247, .04); }
.ants { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.ants rect { fill: none; stroke: rgba(76, 195, 247, .65); stroke-width: 1.5; stroke-dasharray: 8 7; animation: ants 1.4s linear infinite; }
@keyframes ants { to { stroke-dashoffset: -30; } }
.boundary__label {
  display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #8fd3ff;
}
.boundary__label .ico { width: 16px; height: 16px; }
.services { margin-top: 22px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.svc {
  display: grid; place-items: center; text-align: center; min-height: 66px; padding: 10px;
  border-radius: 12px; border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .05);
  font-size: 13.5px; color: #e6ecff; line-height: 1.35;
}
.svc--core {
  color: #fff; font-weight: 600;
  background: linear-gradient(135deg, rgba(31, 95, 255, .38), rgba(26, 166, 240, .3));
  border-color: rgba(76, 195, 247, .6);
  animation: core-pulse 3s ease-in-out infinite;
}
.bus { position: relative; height: 2px; margin: 18px 6px 0; border-radius: 2px; background: linear-gradient(90deg, transparent, rgba(143, 178, 255, .35) 10%, rgba(143, 178, 255, .35) 90%, transparent); }
.bus i {
  position: absolute; top: -2px; left: 0; width: 38px; height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, transparent, #8fe0ff); box-shadow: 0 0 12px rgba(76, 195, 247, .8);
  opacity: 0; animation: packet 3.6s linear infinite;
}
.bus i:nth-child(2) { animation-delay: 1.2s; }
.bus i:nth-child(3) { animation-delay: 2.4s; }
@keyframes packet { 0% { left: 0; opacity: 0; } 10%, 90% { opacity: 1; } 100% { left: calc(100% - 38px); opacity: 0; } }
.providers { margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.providers span { font-size: 12px; color: #b9c4e4; padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .12); }

.deploy-options { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.dopt { position: relative; padding: 28px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .03); transition: border-color .2s ease, transform .2s ease; }
.dopt:hover { transform: translateY(-3px); border-color: rgba(143, 178, 255, .35); }
.dopt--featured {
  border: 1.5px solid transparent;
  background: linear-gradient(#0c1634, #0c1634) padding-box, linear-gradient(135deg, #1f5fff, #1aa6f0) border-box;
  box-shadow: 0 30px 80px -40px rgba(26, 166, 240, .6);
}
.dopt--featured:hover { border-color: transparent; }
.dopt__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dopt__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #8fd3ff; background: rgba(76, 195, 247, .12); }
.dopt__kicker { margin-top: 20px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: #7f8fbd; }
.dopt--featured .dopt__kicker { color: #8fd3ff; }
.dopt h3 { margin-top: 6px; font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.dopt > p:not(.dopt__kicker) { margin-top: 8px; font-size: 14.5px; color: #aab6d8; }
.dopt .ticks { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .08); }

.control { margin-top: 24px; padding: 26px 28px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, .09); background: rgba(255, 255, 255, .025); }
.control__title { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #8fa0cf; }
.control__list { margin-top: 16px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.control__list li { display: grid; gap: 2px; padding-left: 14px; border-left: 2px solid rgba(76, 195, 247, .45); }
.control__list strong { font-size: 15px; color: #fff; }
.control__list span { font-size: 13.5px; color: #93a0c6; }
.control__note { margin-top: 20px; font-size: 14px; color: #8f9cc2; }

/* ==========================================================================
   Intégrations
   ========================================================================== */
.integ { display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: 56px; align-items: center; }

.hub { position: relative; width: 100%; max-width: 440px; aspect-ratio: 1; margin-inline: auto; }
.hub::before {
  content: ""; position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, .12) 0%, rgba(26, 166, 240, .05) 45%, transparent 70%);
}
.hub__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hub__orbit { fill: none; stroke: rgba(47, 107, 255, .18); stroke-width: 1; stroke-dasharray: 2 5; vector-effect: non-scaling-stroke; }
.hub__wire { stroke: rgba(47, 107, 255, .22); stroke-width: 1.2; vector-effect: non-scaling-stroke; }
.hub__packet {
  stroke: #1a8df0; stroke-width: 3; stroke-linecap: round; vector-effect: non-scaling-stroke;
  stroke-dasharray: 5 95; stroke-dashoffset: 0; animation: wire-packet 2.8s linear infinite;
}
.hub__packet:nth-of-type(2) { animation-delay: -.35s; }
.hub__packet:nth-of-type(3) { animation-delay: -.7s; }
.hub__packet:nth-of-type(4) { animation-delay: -1.05s; }
.hub__packet:nth-of-type(5) { animation-delay: -1.4s; }
.hub__packet:nth-of-type(6) { animation-delay: -1.75s; }
.hub__packet:nth-of-type(7) { animation-delay: -2.1s; }
.hub__packet:nth-of-type(8) { animation-delay: -2.45s; }
@keyframes wire-packet { 0% { stroke-dashoffset: 5; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { stroke-dashoffset: -95; opacity: 0; } }

.hub__center {
  position: absolute; left: 50%; top: 50%; z-index: 2;
  width: 40%; aspect-ratio: 1; transform: translate(-50%, -50%);
  display: grid; place-items: center; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 1px var(--line), 0 24px 60px -24px rgba(31, 95, 255, .55);
}
.hub__center img { width: 78%; height: auto; object-fit: contain; }
.hub__center::before, .hub__center::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(47, 107, 255, .35); animation: hub-ring 3.2s ease-out infinite;
}
.hub__center::after { animation-delay: 1.6s; }
@keyframes hub-ring { from { transform: scale(1); opacity: .9; } to { transform: scale(1.55); opacity: 0; } }

.hub__node {
  position: absolute; left: var(--x); top: var(--y); z-index: 3;
  transform: translate(-50%, -50%);
  display: grid; justify-items: center; gap: 6px;
}
.hub__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  color: var(--c, var(--azure)); background: #fff;
  box-shadow: 0 0 0 1px var(--line), 0 12px 28px -14px rgba(14, 22, 48, .35);
  animation: node-float 5s ease-in-out infinite; animation-delay: var(--d, 0s);
  transition: transform .2s ease;
}
.hub__node:hover .hub__icon { transform: scale(1.08); }
.hub__label {
  position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 600; color: var(--text); white-space: nowrap;
  background: rgba(255, 255, 255, .9); padding: 1px 7px; border-radius: 6px;
}
@keyframes node-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }

.integ-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.icard {
  display: grid; grid-template-columns: 40px minmax(0, 1fr); column-gap: 14px; align-items: start;
  padding: 16px 18px; border-radius: 14px; border: 1px solid var(--line); background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.icard:hover { border-color: #cfdaf5; box-shadow: var(--shadow); }
.icard > :not(.icard__icon) { grid-column: 2; }
.icard__icon {
  grid-row: 1 / span 3; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  color: var(--c, var(--azure)); background: var(--azure-soft);
  background: color-mix(in srgb, var(--c, #2f6bff) 11%, #fff);
}
.icard__icon .ico { width: 20px; height: 20px; }
.icard__head { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.icard h3 { font-size: 15px; font-weight: 650; letter-spacing: -.01em; }
.icard__platforms { margin-top: 6px; font-family: var(--mono); font-size: 11px; color: #8a93a8; }
.icard p:not(.icard__platforms) { margin-top: 6px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.status--mini { padding: 1px 8px; font-size: 11px; gap: 5px; }
.status--mini::before { width: 5px; height: 5px; }

/* ==========================================================================
   Évaluation comparative
   ========================================================================== */
.fn-ref { color: var(--azure); font-weight: 600; text-decoration: none; margin-left: 1px; }

.bench {
  position: relative; overflow: hidden; overflow: clip;
  padding: 56px 40px 0; border-radius: 26px; border: 1px solid var(--line);
  background:
    radial-gradient(55% 65% at 50% 10%, rgba(47, 107, 255, .12), transparent 70%),
    linear-gradient(180deg, #fbfcff, #fff);
}
.bench::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 107, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 255, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000 30%, transparent 80%);
  mask-image: radial-gradient(70% 70% at 50% 30%, #000 30%, transparent 80%);
}

.podium {
  position: relative; view-timeline-name: --podium;
  display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 18px; align-items: end;
  max-width: 920px; margin-inline: auto;
}
.podium__col { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.podium__top { display: grid; justify-items: center; gap: 10px; text-align: center; }

.engine {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding-inline: 20px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 18px; font-weight: 700; letter-spacing: -.015em; color: var(--text); white-space: nowrap;
}
.engine--azuling {
  height: 70px; padding-inline: 24px;
  border: 1.5px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
  box-shadow: 0 18px 44px -16px rgba(31, 95, 255, .6);
}
.engine--azuling img { flex: none; height: 40px; width: auto; max-width: none; object-fit: contain; }
.engines { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.engines .engine { height: 34px; padding-inline: 12px; font-size: 14px; font-weight: 600; color: #44506b; }

.podium__note { font-size: 13.5px; font-weight: 500; color: var(--muted); }
.podium__note--win { color: var(--azure); font-weight: 650; }

.trophy {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  color: #b7791f; background: linear-gradient(135deg, #fff3c4, #fcd98b);
  box-shadow: 0 0 0 6px rgba(252, 217, 139, .25), 0 10px 24px -10px rgba(183, 121, 31, .6);
  animation: node-float 3.6s ease-in-out infinite;
}
.trophy .ico { width: 22px; height: 22px; }

.podium__block {
  position: relative; overflow: hidden; width: 100%;
  display: grid; place-items: start center; padding-top: 18px;
  border-radius: 16px 16px 0 0; transform-origin: bottom;
}
.podium__col--1 .podium__block {
  height: 270px;
  background: linear-gradient(180deg, #2f6bff 0%, #1a8df0 100%);
  box-shadow: 0 -12px 60px -12px rgba(31, 95, 255, .55);
}
.podium__col--1 .podium__block::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .28) 50%, transparent 65%);
  transform: translateX(-120%); animation: sweep 4s ease-in-out infinite;
}
@keyframes sweep { 0%, 55% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.podium__col--2 .podium__block { height: 168px; background: linear-gradient(180deg, #dce6ff, #eef3ff); border: 1px solid #d0dcfa; border-bottom: 0; }
.podium__col--3 .podium__block { height: 112px; background: linear-gradient(180deg, #eceff5, #f5f7fb); border: 1px solid var(--line); border-bottom: 0; }

.podium__rank { position: relative; z-index: 1; font-size: 72px; font-weight: 700; line-height: 1; letter-spacing: -.05em; color: #fff; }
.podium__col--2 .podium__rank { font-size: 56px; color: #6b8de0; }
.podium__rank--text { margin-top: 12px; font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #8a93a8; }

.spark {
  position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, .8); opacity: 0; animation: twinkle 2.6s ease-in-out infinite;
}
.spark:nth-of-type(1) { left: 18%; top: 44%; }
.spark:nth-of-type(2) { left: 78%; top: 30%; animation-delay: .7s; }
.spark:nth-of-type(3) { left: 30%; top: 74%; animation-delay: 1.4s; }
.spark:nth-of-type(4) { left: 70%; top: 66%; animation-delay: 2s; }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(.4); } 50% { opacity: 1; transform: scale(1); } }

.bench-method { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bench-stat { display: grid; gap: 2px; padding: 22px 26px; border-radius: 16px; border: 1px solid var(--line); background: #fff; }
.bench-stat span { font-size: 14.5px; color: var(--muted); }

@property --n { syntax: "<integer>"; inherits: false; initial-value: 0; }
.count { --n: var(--to); counter-reset: n var(--n); font-size: 36px; font-weight: 700; letter-spacing: -.03em; line-height: 1.15; color: var(--azure); }
.count::after { content: counter(n) var(--suffix, ""); }
@keyframes count-up { from { --n: 0; } to { --n: var(--to); } }

.bench-foot { margin-top: 18px; font-size: 13px; line-height: 1.6; color: #8a93a8; }

/* ==========================================================================
   Tarifs
   ========================================================================== */
.btn--outline { background: #fff; color: var(--text); border-color: #d5dbe8; }
.btn--outline:hover { border-color: var(--azure); color: var(--azure); }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 28px 24px; border-radius: 20px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan--featured {
  border: 1.5px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
  box-shadow: 0 30px 60px -30px rgba(31, 95, 255, .4);
}
.plan--dark {
  color: #fff; border-color: var(--ink);
  background: var(--ink) radial-gradient(80% 60% at 100% 0%, rgba(26, 166, 240, .28), transparent 70%);
}
.plan__badge {
  position: absolute; top: -12px; left: 24px;
  font-size: 12px; font-weight: 600; color: #fff; background: var(--grad);
  padding: 3px 11px; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(31, 95, 255, .6);
}
.plan__head { display: flex; align-items: center; gap: 12px; }
.plan__name { font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.card__icon--dark { color: #8fd3ff; background: rgba(76, 195, 247, .14); box-shadow: inset 0 0 0 1px rgba(76, 195, 247, .2); }
.plan__for { margin-top: 14px; font-size: 14.5px; color: var(--muted); min-height: 4.8em; }
.plan--dark .plan__for { color: #aab6d8; }
.plan__price { margin-top: 10px; font-family: var(--mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: var(--azure); }
.plan--dark .plan__price { color: #8fd3ff; }
.plan__btn { margin-top: 18px; width: 100%; }
.plan__includes { margin-top: 22px; padding-top: 18px; border-top: 1px solid #eef1f6; font-size: 13.5px; font-weight: 600; }
.plan--dark .plan__includes { border-top-color: rgba(255, 255, 255, .1); }
.plan .ticks { margin-top: 12px; }
.plans-note { margin-top: 28px; text-align: center; font-size: 14.5px; color: var(--muted); }
.plans-note a { color: var(--azure); font-weight: 600; }
.plans-note a:hover { text-decoration: underline; }

/* ==========================================================================
   Contact
   ========================================================================== */
.cta {
  position: relative; overflow: hidden; overflow: clip;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  padding: clamp(32px, 5vw, 60px); border-radius: 26px;
  background: var(--ink); color: #fff;
  background-image:
    radial-gradient(60% 80% at 100% 0%, rgba(26, 166, 240, .34), transparent 70%),
    radial-gradient(50% 70% at 0% 100%, rgba(47, 107, 255, .34), transparent 70%);
}
.cta__text > p:not(.eyebrow) { margin-top: 16px; color: #b3bfdf; font-size: 16.5px; max-width: 600px; }
.cta__actions { display: grid; gap: 14px; justify-items: start; }
.cta__hint { font-size: 14px; color: #93a0c6; }

/* ==========================================================================
   Pied de page
   ========================================================================== */
.site-footer { border-top: 1px solid var(--line); padding-block: 32px; }
.footer-row { display: flex; align-items: center; gap: 24px 40px; flex-wrap: wrap; }
.brand--footer .brand__logo { height: 28px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; color: var(--muted); }
.footer-nav a:hover { color: var(--text); }
.footer-legal { margin-left: auto; font-size: 13.5px; color: #8a93a8; }

/* ==========================================================================
   Apparition au défilement (CSS pur, navigateurs compatibles)
   ========================================================================== */
/* Les conteneurs qui rognent leur contenu utilisent « overflow: clip » et non « hidden » :
   un conteneur en « hidden » devient une zone de défilement, et les animations liées au
   défilement de ses enfants se mesureraient contre LUI (donc resteraient figées) au lieu
   de la fenêtre. */
@keyframes reveal { from { opacity: 0; translate: 0 36px; } to { opacity: 1; translate: 0 0; } }

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section-head, .card, .feature, .dev__text, .tabs, .formats-strip,
    .usecase, .pipeline, .custom, .domain, .arch, .axis, .rd-note,
    .pillar, .subhead, .trust, .boundary, .dopt, .control, .plan, .plans-note, .cta,
    .hub, .icard, .bench, .bench-stat, .bench-foot {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
    .cards > :nth-child(4n + 2), .domains > :nth-child(4n + 2), .usecases > :nth-child(3n + 2),
    .axes > :nth-child(3n + 2), .deploy-options > :nth-child(2), .pillars > :nth-child(2n), .plans > :nth-child(2) { animation-range: entry 4% cover 26%; }
    .cards > :nth-child(4n + 3), .domains > :nth-child(4n + 3), .usecases > :nth-child(3n),
    .axes > :nth-child(3n), .deploy-options > :nth-child(3), .plans > :nth-child(3) { animation-range: entry 8% cover 30%; }
    .cards > :nth-child(4n), .domains > :nth-child(4n), .plans > :nth-child(4) { animation-range: entry 12% cover 34%; }
    .integ-cards > :nth-child(2n) { animation-range: entry 4% cover 26%; }

    /* Les trois marches montent ENSEMBLE, sur la même plage : leurs hauteurs restent
       proportionnelles à chaque instant, donc la 1re place est toujours la plus haute,
       même si le visiteur s'arrête de défiler en pleine animation. */
    .podium__block { animation: podium-rise linear both; animation-timeline: --podium; animation-range: contain 0% contain 35%; }
    .podium__top { animation: podium-pop linear both; animation-timeline: --podium; animation-range: entry 15% entry 70%; }

    /* Un compteur figé à mi-course afficherait un faux chiffre : il atteint sa
       valeur finale au plus tard quand il est entièrement visible. */
    .count { animation: count-up linear both; animation-timeline: view(); animation-range: entry 0% entry 100%; }
  }
}
@keyframes podium-rise { from { transform: scaleY(.04); } to { transform: scaleY(1); } }
@keyframes podium-pop { from { opacity: 0; translate: 0 16px; } to { opacity: 1; translate: 0 0; } }

/* ==========================================================================
   Adaptatif
   ========================================================================== */
@media (max-width: 1140px) {
  .main-nav { display: none; }
}

@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .domains { grid-template-columns: repeat(3, 1fr); }
  .usecases { grid-template-columns: repeat(2, 1fr); }
  .integ { grid-template-columns: 1fr; gap: 40px; }
  .plans { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .plan__for { min-height: 0; }
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { grid-template-columns: repeat(3, 1fr); border-left: 0; border-top: 1px solid var(--line); }
  .boundary { grid-template-columns: 1fr; gap: 18px; }
  .boundary__side { display: flex; flex-wrap: wrap; justify-content: center; }
  .boundary__side--in .ext::after, .ext--blocked::after { display: none; }
  .control__list { grid-template-columns: repeat(3, 1fr); }
  .custom { grid-template-columns: 1fr 1fr; }
  .custom .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 920px) {
  .feature--wide { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .feature-pair { grid-template-columns: 1fr; }
  .dev { grid-template-columns: 1fr; gap: 40px; }
  .axes { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .deploy-options { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(3, 1fr); }
  .cta { grid-template-columns: 1fr; }
  .custom { grid-template-columns: 1fr; gap: 22px; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); }
  .hero__facts li:nth-child(3) { border-left: 0; }
  .hero__facts li:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 22px; }
  .arch__layer { grid-template-columns: 1fr; gap: 10px; }
  .arch__link { margin-left: 0; }

  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps::before, .steps::after { display: none; }
  .step { display: grid; grid-template-columns: 56px 1fr; column-gap: 16px; align-items: center; }
  .step__num { grid-row: span 2; }
  .step strong { margin-top: 0; align-self: end; }
  .step > span:last-child { margin-top: 2px; align-self: start; }
}

@media (max-width: 680px) {
  .wrap { padding-inline: 18px; }
  .br-lg { display: none; }
  .hero__inner { padding-block: 64px 48px; }
  .mock { margin-top: 44px; border-radius: 14px; }
  .mock__pill, .mock__side { display: none; }
  .mrow { grid-template-columns: 22px 1fr 1fr; gap: 10px; padding: 12px; font-size: 12.5px; }
  .col-status { display: none; }
  .cards, .axes, .trust, .usecases, .domains, .plans, .integ-cards, .bench-method { grid-template-columns: 1fr; }
  .hub { max-width: 340px; }
  .hub__icon { width: 44px; height: 44px; border-radius: 13px; }
  .hub__icon .ico { width: 19px; height: 19px; }
  .hub__label { font-size: 11px; }

  /* Podium → classement vertical */
  .bench { padding: 20px 16px; }
  .podium { grid-template-columns: 1fr; gap: 10px; }
  .podium__col { flex-direction: row; align-items: stretch; gap: 0; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); background: #fff; }
  .podium__col--1 { order: -1; border-color: #bcd0ff; box-shadow: 0 14px 30px -18px rgba(31, 95, 255, .55); }
  .podium__block { width: 64px; flex: none; height: auto !important; place-items: center; padding-top: 0; border: 0 !important; border-radius: 0; animation: none !important; }
  .podium__rank { font-size: 34px; }
  .podium__col--2 .podium__rank { font-size: 30px; }
  .podium__rank--text { margin-top: 0; font-size: 9.5px; letter-spacing: .04em; }
  .podium__top { flex: 1; justify-items: start; text-align: left; padding: 14px 16px; }
  .trophy { display: none; }
  .engine--azuling { height: 54px; padding-inline: 16px; }
  .engine--azuling img { height: 30px; }
  .engines { justify-content: flex-start; }
  .spark { display: none; }
  .ticks--2col { grid-template-columns: 1fr; }
  .feature, .feature--wide { padding: 24px 20px; }
  .call { padding: 16px; }
  .bridge__tag { font-size: 10px; }
  .video__sub { font-size: 11.5px; }
  .arch { padding: 22px 18px; }
  .tabs__panel { min-height: 0; font-size: 12px; padding: 16px; }
  .tabs__bar .dots { display: none; }
  .pipeline { padding: 22px 18px; }
  .custom { padding: 24px 20px; }
  .pillar { flex-direction: column; gap: 14px; padding: 24px 22px; }
  .boundary__box { padding: 22px 16px; }
  .services { grid-template-columns: repeat(2, 1fr); grid-auto-flow: dense; }
  .svc--core { grid-column: 1 / -1; }
  .control__list { grid-template-columns: 1fr 1fr; }
  .dopt { padding: 24px 20px; }
  .footer-legal { margin-left: 0; }
}

@media (max-width: 420px) {
  .btn--sm { padding-inline: 12px; }
  .brand__logo { height: 30px; }
  .hero__facts { grid-template-columns: 1fr; }
  .hero__facts li + li { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 18px; }
  .docs { gap: 10px; padding: 16px 10px; }
  .doc { width: 96px; height: 124px; }
  .control__list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
