/* ==========================================================================
   BipJob - landing "console d'opportunités"
   Palette dérivée du logo : bleu abysse, écran de veille, faisceau, blips ambrés,
   acier de la lunette. Pas de vert acide, pas de crème, pas de pseudo-journal.
   ========================================================================== */

:root {
  --bg0: #040b19;        /* abysse - fond de page */
  --bg1: #071229;        /* panneau */
  --screen: #0a1f47;     /* écran de veille */
  --line: #14284d;       /* traits discrets */
  --line2: #21406f;      /* traits appuyés */
  --beam: #4da3ff;       /* faisceau */
  --beam-soft: #9ccfff;
  --amber: #ffb648;      /* blip ambré */
  --steel-hi: #f2f7fd;   /* acier - reflets */
  --steel: #b9c6d8;
  --steel-lo: #6c7f9a;
  --ink: #e8eefc;
  --muted: #93a7cc;

  --font-display: "Chakra Petch", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 78px; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg0);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Fine grille de fond + vignette, comme la vitre d'un instrument */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(38, 89, 178, 0.16), transparent 60%),
    repeating-linear-gradient(0deg, rgba(120, 160, 220, 0.04) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(120, 160, 220, 0.04) 0 1px, transparent 1px 72px);
}

img { display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--beam);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}

.wrap-narrow { width: min(760px, 100% - 48px); }

/* Étiquette console : mono, crochets, ambre */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 40px;
}

.section-sub strong { color: var(--ink); }

/* ============================== Boutons ================================= */
/* Bouton "métal" : lunette acier du logo + face vitrée bleue */

.btn-metal {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    radial-gradient(130% 170% at 50% 0%, #2f78e0 0%, #16409c 52%, #0b2a66 100%) padding-box,
    linear-gradient(180deg, var(--steel-hi) 0%, var(--steel) 28%, var(--steel-lo) 62%, #dde7f2 100%) border-box;
  box-shadow:
    0 12px 34px rgba(47, 120, 224, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-metal .btn-face {
  display: block;
  padding: 13px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(4, 16, 42, 0.6);
}

.btn-metal:hover { filter: brightness(1.12); box-shadow: 0 14px 40px rgba(77, 163, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.btn-metal:active { transform: translateY(1px); }

.btn-small .btn-face { padding: 8px 18px; font-size: 14px; }
.btn-large .btn-face { padding: 16px 34px; font-size: 18px; }

.btn-ghost {
  display: inline-block;
  padding: 13px 22px;
  border: 1px solid var(--line2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--beam-soft);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-ghost:hover { border-color: var(--beam); background: rgba(77, 163, 255, 0.08); }

.btn-ghost-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-left: 6px;
}

/* ============================== Topbar ================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 11, 25, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img { border-radius: 8px; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.topnav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.topnav a {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.15s ease;
}

.topnav a:hover { color: var(--ink); }

/* =============================== Hero =================================== */

.hero { padding: 84px 0 56px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}

h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 700;
}

.hero-sub {
  margin-top: 22px;
  font-size: 18.5px;
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel-lo);
  letter-spacing: 0.04em;
}

/* --- Le scope : signature de la page ----------------------------------- */

.hero-scope {
  position: relative;
  justify-self: center;
  width: min(430px, 86vw);
  aspect-ratio: 1;
}

.scope {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 7px solid transparent;
  /* Écran façon logo : bleu royal lumineux + grille carrée */
  background:
    repeating-linear-gradient(0deg, rgba(150, 200, 255, 0.14) 0 1.5px, transparent 1.5px 44px) padding-box,
    repeating-linear-gradient(90deg, rgba(150, 200, 255, 0.14) 0 1.5px, transparent 1.5px 44px) padding-box,
    radial-gradient(circle at 50% 30%, #2f6bdd 0%, #16419e 46%, #0b2563 76%, #081c4d 100%) padding-box,
    linear-gradient(165deg, var(--steel-hi) 0%, var(--steel) 24%, #55677f 55%, #cfdbe9 100%) border-box;
  box-shadow:
    0 30px 90px rgba(30, 90, 200, 0.55),
    0 0 0 1px rgba(9, 20, 44, 0.9),
    inset 0 0 70px rgba(10, 35, 100, 0.75);
  overflow: hidden;
}

/* Moyeu central lumineux, comme le point d'origine du logo */
.scope::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px;
  border-radius: 50%;
  background: #e4f1ff;
  box-shadow: 0 0 16px 5px rgba(160, 205, 255, 0.85);
}

/* Couronne de chronomètre au-dessus de la lunette (cf. logo) */
.scope-crown {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -86%);
  display: grid;
  justify-items: center;
}

.crown-cap {
  width: 54px;
  height: 15px;
  border-radius: 8px;
  background: linear-gradient(90deg, #7e91ab 0%, #f2f7fd 45%, #a9b9cd 70%, #5f7189 100%);
  box-shadow: 0 -2px 6px rgba(4, 11, 25, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.crown-stem {
  width: 26px;
  height: 24px;
  margin-top: 2px;
  background: linear-gradient(90deg, #6c7f9a 0%, #e8f0f9 45%, #93a5bb 70%, #55677f 100%);
  border-radius: 5px 5px 0 0;
}

.scope-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scope-rings circle {
  fill: none;
  stroke: rgba(160, 205, 255, 0.32);
  stroke-width: 0.4;
}

/* Trait lumineux net + traînée, comme la ligne de détection du logo */
.scope-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(228, 241, 255, 0.95) 0deg,
    rgba(156, 207, 255, 0.45) 4deg,
    rgba(77, 163, 255, 0.16) 30deg,
    transparent 60deg);
  animation: sweep 8s linear infinite;
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

/* reflet vitre */
.scope-glass {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.14) 0%, transparent 34%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 5px);
  pointer-events: none;
}

.blip {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 11px;
  height: 11px;
  margin: -5.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffffff 0%, var(--beam-soft) 55%, #5aa8ff 100%);
  opacity: 0.4;
  box-shadow: 0 0 18px 6px rgba(90, 170, 255, 0.65);
  animation: blip 8s linear infinite;
  animation-delay: var(--d);
}

/* Les trois points reliés aux fiches terminent exactement les traits pointillés. */
.blip-pentest { --x: 66%; --y: 25%; }
.blip-devops { --x: 28%; --y: 67%; }
.blip-data { --x: 72%; --y: 73%; }
.blip.blip-pentest, .blip.blip-devops, .blip.blip-data {
  animation-name: blip-anchor;
  box-shadow: 0 0 20px 7px rgba(120, 190, 255, 0.9);
}

@keyframes blip-anchor {
  0%, 100% { opacity: 1; transform: scale(1.35); }
  10% { opacity: 1; transform: scale(1); }
  55% { opacity: 0.78; transform: scale(1); }
}

.blip-amber {
  background: radial-gradient(circle at 40% 35%, #fff3d6 0%, var(--amber) 55%, #f09a1f 100%);
  box-shadow: 0 0 18px 6px rgba(255, 182, 72, 0.65);
}

@keyframes blip {
  0%   { opacity: 1; transform: scale(1.7); }
  10%  { opacity: 0.9; transform: scale(1); }
  55%  { opacity: 0.3; }
  100% { opacity: 1; transform: scale(1.7); }
}

/* Callouts : le motif "mallette cerclée" du logo */

.callout {
  position: absolute;
  display: flex;
  align-items: center;
}

.callout-line {
  width: 42px;
  border-top: 1.5px dashed rgba(156, 207, 255, 0.6);
}

.callout-card {
  display: block;
  padding: 8px 13px;
  border: 1px solid var(--line2);
  border-radius: 10px;
  background: rgba(7, 18, 41, 0.92);
  box-shadow: 0 10px 30px rgba(3, 10, 26, 0.6);
  white-space: nowrap;
}

.callout-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
}

.callout-card em {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--amber);
  margin-top: 2px;
}

.callout-1 { left: 66%; top: 18%; }
.callout-2 { right: 72%; top: 60%; flex-direction: row-reverse; }
.callout-3 { left: 72%; top: 66%; }

/* ============================== Ticker ================================== */

.ticker {
  border-block: 1px solid var(--line);
  background: rgba(7, 18, 41, 0.6);
  overflow: hidden;
  padding: 10px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--steel-lo);
  white-space: nowrap;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============================ Sections ================================== */

.demo, .steps, .catches, .pricing, .faq { padding: 96px 0 20px; }

/* ============================== Console ================================= */

.console {
  position: relative;
  margin-top: 34px;
  border: 3px solid transparent;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #0a1730 0%, #060f22 100%) padding-box,
    linear-gradient(170deg, var(--steel-hi) 0%, var(--steel) 22%, #4d5f78 58%, #c6d3e2 100%) border-box;
  box-shadow: 0 40px 110px rgba(10, 35, 90, 0.5);
}

.screw {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--steel-hi), var(--steel-lo) 70%);
  box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.5);
}

.screw::after {
  content: "";
  position: absolute;
  left: 1.5px;
  right: 1.5px;
  top: 50%;
  height: 1px;
  background: rgba(10, 20, 40, 0.7);
  transform: rotate(-40deg);
}

.screw-tl { top: 10px; left: 12px; }
.screw-tr { top: 10px; right: 12px; }
.screw-bl { bottom: 10px; left: 12px; }
.screw-br { bottom: 10px; right: 12px; }

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 34px;
  border-bottom: 1px solid var(--line);
}

.console-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--steel-lo);
}

.console-leds { display: flex; gap: 7px; }

.led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.led-blue { background: var(--beam); box-shadow: 0 0 8px rgba(77, 163, 255, 0.8); }
.led-amber { background: var(--amber); box-shadow: 0 0 8px rgba(255, 182, 72, 0.8); animation: led 2.4s ease-in-out infinite; }

@keyframes led {
  50% { opacity: 0.3; }
}

.console-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 16px;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 50% 20%, #0e2a5c 0%, #081737 60%, #050e22 100%),
    repeating-linear-gradient(0deg, rgba(120, 160, 220, 0.05) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(120, 160, 220, 0.05) 0 1px, transparent 1px 40px);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
}

.console-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.play {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.play-ring {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid transparent;
  background:
    radial-gradient(120% 150% at 50% 20%, #2f78e0 0%, #123b8f 60%, #0b2a66 100%) padding-box,
    linear-gradient(180deg, var(--steel-hi), var(--steel-lo)) border-box;
  box-shadow: 0 16px 44px rgba(47, 120, 224, 0.5);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.play:hover .play-ring {
  transform: scale(1.06);
  box-shadow: 0 18px 54px rgba(77, 163, 255, 0.6);
}

.play-tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
  margin-left: 6px;
}

.screen-hint {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  max-width: 42ch;
  text-align: center;
  padding: 0 16px;
}

/* =============================== Étapes ================================= */

.steps-grid {
  list-style: none;
  margin: 42px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 30, 66, 0.55), rgba(7, 18, 41, 0.4));
  padding: 26px 24px 28px;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--amber);
}

.step h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 14px 0 10px;
}

.step p { color: var(--muted); font-size: 15.5px; }

/* ============================= Détections =============================== */

.catch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.catch {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 30, 66, 0.55), rgba(7, 18, 41, 0.4));
  padding: 22px 24px;
}

.catch-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.catch h3 {
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.35;
}

.match {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
}

.match-high {
  color: var(--beam-soft);
  background:
    linear-gradient(var(--bg1), var(--bg1)) padding-box,
    conic-gradient(var(--beam) 0 92%, var(--line) 92% 100%) border-box;
}

.match-mid {
  color: var(--amber);
  background:
    linear-gradient(var(--bg1), var(--bg1)) padding-box,
    conic-gradient(var(--amber) 0 81%, var(--line) 81% 100%) border-box;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  border: 1px solid var(--line2);
  border-radius: 999px;
  padding: 4px 11px;
}

.chip-contract {
  color: var(--bg0);
  background: var(--beam-soft);
  border-color: var(--beam-soft);
  font-weight: 500;
}

.catch-src {
  margin-top: 14px;
  font-size: 14px;
  color: var(--steel-lo);
}

.catch-rejected {
  border-style: dashed;
  opacity: 0.75;
  background: none;
}

.catch-rejected h3 { color: var(--muted); font-weight: 500; }

.stamp {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber);
  border: 1.5px solid var(--amber);
  border-radius: 4px;
  padding: 4px 8px;
  transform: rotate(4deg);
}

/* =============================== Tarifs ================================= */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
  align-items: start;
}

.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(13, 30, 66, 0.55), rgba(7, 18, 41, 0.4));
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}

.plan h3 {
  font-size: 18px;
  font-weight: 600;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  margin-top: 12px;
}

.plan-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.plan-for {
  color: var(--muted);
  font-size: 15px;
  margin-top: 6px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  gap: 10px;
}

.plan li {
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--beam);
  box-shadow: 0 0 8px rgba(77, 163, 255, 0.7);
}

.plan-cta {
  margin-top: auto;
  text-align: center;
}

.plan-pro {
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, #0e2250, #081737) padding-box,
    linear-gradient(170deg, var(--steel-hi), var(--steel) 30%, #55677f 60%, #cfdbe9) border-box;
  box-shadow: 0 30px 80px rgba(15, 50, 120, 0.45);
}

.plan-pro li::before {
  background: var(--amber);
  box-shadow: 0 0 8px rgba(255, 182, 72, 0.7);
}

.price-student {
  margin-top: 26px;
  text-align: center;
  color: var(--muted);
  font-size: 15.5px;
}

.price-student strong { color: var(--amber); }

.price-student a {
  color: var(--beam-soft);
  text-decoration: underline;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--bg0);
  background: var(--amber);
  border-radius: 4px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* ================================ FAQ =================================== */

.qa {
  border-bottom: 1px solid var(--line);
}

.qa summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 2px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
}

.qa summary::-webkit-details-marker { display: none; }

.qa summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--amber);
  transition: transform 0.2s ease;
}

.qa[open] summary::after { transform: rotate(45deg); }

.qa p {
  padding: 0 2px 24px;
  color: var(--muted);
  max-width: 62ch;
}

.qa em { color: var(--ink); font-style: normal; }

/* ============================= Final CTA ================================ */

.final { padding: 110px 0 90px; }

.final-inner {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.final-logo {
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(30, 90, 200, 0.5);
}

.final h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 0; }

.final p { color: var(--muted); max-width: 46ch; }

.final .btn-metal { margin-top: 10px; }

/* =============================== Footer ================================= */

.footer {
  border-top: 1px solid var(--line);
  background: rgba(4, 11, 25, 0.8);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand img { border-radius: 6px; }

.footer-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.footer-nav a:hover { color: var(--ink); }

.footer-copy { color: var(--steel-lo); font-family: var(--font-mono); font-size: 12px; }

.footer-cookies {
  border: 0;
  padding: 0;
  background: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
}

.footer-cookies:hover { color: var(--ink); }

/* ========================= Bandeau cookies ============================== */

.cookie-banner {
  position: fixed;
  inset-inline: 16px;
  bottom: 16px;
  z-index: 100;
  margin-inline: auto;
  width: auto;
  max-width: 680px;
  border: 2px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #0c1c3d, #071229) padding-box,
    linear-gradient(170deg, var(--steel-hi), var(--steel) 30%, #4d5f78 60%, #c6d3e2) border-box;
  box-shadow: 0 30px 80px rgba(3, 10, 26, 0.8);
  padding: 20px 24px;
}

.cookie-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 14.5px;
  color: var(--muted);
}

.cookie-text a {
  color: var(--beam-soft);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* ========================== Pages légales =============================== */

.legal {
  padding: 64px 0 90px;
}

.legal h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.legal h2 {
  font-size: 20px;
  margin: 42px 0 12px;
}

.legal h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin: 28px 0 8px;
}

.legal p, .legal li {
  color: var(--muted);
  font-size: 15.5px;
}

.legal p { margin: 0 0 12px; }

.legal ul, .legal ol { margin: 0 0 12px; padding-left: 22px; }

.legal li { margin-bottom: 6px; }

.legal strong { color: var(--ink); }

.legal a { color: var(--beam-soft); text-decoration: underline; }

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14.5px;
}

.legal th, .legal td {
  text-align: left;
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.legal th {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(13, 30, 66, 0.5);
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel-lo);
  margin-bottom: 34px;
}

/* ========================== Page contact ================================ */

.contact-page {
  min-height: calc(100vh - 170px);
  padding: 72px 0 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 128px;
}

.contact-intro h1 {
  max-width: 10ch;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  letter-spacing: -0.035em;
}

.contact-lead {
  max-width: 48ch;
  margin-top: 24px;
  color: var(--muted);
}

.contact-route {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.contact-route div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.contact-route span {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 11px;
}

.contact-route p {
  color: var(--muted);
  font-size: 14px;
}

.contact-route strong { color: var(--ink); }

.contact-assurance {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 14px;
  margin-top: 32px;
  padding: 16px;
  border: 1px solid rgba(255, 182, 72, 0.26);
  border-radius: 10px;
  background: rgba(255, 182, 72, 0.055);
}

.contact-assurance strong {
  color: var(--ink);
  font-family: var(--font-display);
}

.contact-assurance p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.contact-pulse {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(255, 182, 72, 0.12), 0 0 20px rgba(255, 182, 72, 0.65);
}

.contact-console {
  overflow: hidden;
  border: 1px solid var(--line2);
  border-radius: 16px;
  background:
    linear-gradient(rgba(77, 163, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 163, 255, 0.025) 1px, transparent 1px),
    #07152f;
  background-size: 28px 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.contact-console-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line2);
  background: rgba(4, 11, 25, 0.64);
}

.console-kicker,
.console-state {
  color: var(--steel-lo);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.contact-console-head h2 {
  margin-top: 4px;
  font-size: 24px;
}

.console-state {
  position: relative;
  padding-left: 15px;
  color: var(--beam-soft);
}

.console-state::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--beam);
  box-shadow: 0 0 12px var(--beam);
  transform: translateY(-50%);
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.contact-form label,
.contact-subjects legend {
  color: var(--steel);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line2);
  border-radius: 8px;
  background: rgba(4, 11, 25, 0.72);
  color: var(--ink);
  font: 15px var(--font-body);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 190px;
  padding: 14px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--beam);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #60769b; }

.contact-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-subjects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-subjects legend {
  grid-column: 1 / -1;
  margin-bottom: 5px;
}

.contact-subjects label {
  position: relative;
  cursor: pointer;
}

.contact-subjects input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-subjects span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px 9px 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(4, 11, 25, 0.52);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-subjects span::before {
  content: "";
  position: absolute;
  left: 13px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--steel-lo);
  border-radius: 50%;
}

.contact-subjects input:checked + span {
  border-color: rgba(255, 182, 72, 0.72);
  background: rgba(255, 182, 72, 0.08);
  color: var(--ink);
}

.contact-subjects input:checked + span::before {
  border-color: var(--amber);
  background: var(--amber);
  box-shadow: 0 0 10px rgba(255, 182, 72, 0.72);
}

.contact-subjects input:focus-visible + span {
  outline: 2px solid var(--beam);
  outline-offset: 2px;
}

.contact-message-label { position: relative; }

.contact-character-count {
  position: absolute;
  right: 11px;
  bottom: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #07152f;
  color: var(--steel-lo);
  font-family: var(--font-mono);
  font-size: 10px;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.turnstile-slot {
  min-height: 66px;
  padding: 12px;
  border: 1px dashed var(--line2);
  border-radius: 8px;
  background: rgba(4, 11, 25, 0.4);
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.contact-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--beam);
}

.contact-consent a {
  color: var(--beam-soft);
  text-decoration: underline;
}

.contact-status {
  padding: 13px 15px;
  border-radius: 7px;
  font-size: 14px;
}

.contact-status.is-success {
  border: 1px solid rgba(77, 163, 255, 0.45);
  background: rgba(77, 163, 255, 0.1);
  color: #cbe5ff;
}

.contact-status.is-error {
  border: 1px solid rgba(255, 182, 72, 0.48);
  background: rgba(255, 182, 72, 0.1);
  color: #ffd99d;
}

.contact-submit {
  justify-self: start;
  border: 2px solid transparent;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  filter: grayscale(0.35);
  opacity: 0.68;
}

/* ========================= Reveal au scroll ============================= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ============================ Responsive ================================ */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-scope { margin-top: 10px; }
  .steps-grid, .price-grid { grid-template-columns: 1fr; }
  .catch-grid { grid-template-columns: 1fr; }
  .plan-pro { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-intro { position: static; }
  .contact-intro h1 { max-width: 13ch; }
}

@media (max-width: 760px) {
  body { overflow-x: hidden; font-size: 16px; }
  .wrap, .wrap-narrow { width: calc(100% - 32px); }

  .topbar { padding-top: env(safe-area-inset-top); }
  .topnav { display: none; }
  .topbar-inner { gap: 10px; padding: 10px 0; }
  .brand { gap: 8px; }
  .brand img { width: 30px; height: 30px; }
  .brand-name { font-size: 17px; }
  .topbar .js-install { margin-left: auto; flex-shrink: 0; }
  .topbar .js-install .btn-face { min-height: 44px; padding: 9px 12px; font-size: 12px; display: flex; align-items: center; justify-content: center; }

  .hero { padding: 48px 0 36px; }
  .hero-grid { gap: 34px; }
  .hero-copy .eyebrow { max-width: 34ch; font-size: 10px; line-height: 1.7; letter-spacing: 0.15em; }
  h1 { font-size: clamp(2.25rem, 11vw, 3rem); letter-spacing: -0.02em; }
  .hero-sub { margin-top: 18px; font-size: 16px; line-height: 1.55; }
  .hero-actions { display: grid; gap: 10px; margin-top: 26px; }
  .hero-actions > * { width: 100%; text-align: center; }
  .hero-note { text-align: center; font-size: 10px; }

  .hero-scope { width: min(310px, calc(100vw - 54px)); margin-top: 4px; }
  .callout-line { width: 10px; }
  .callout-card { max-width: 126px; padding: 6px 8px; border-radius: 8px; white-space: normal; }
  .callout-card strong { font-size: 10.5px; line-height: 1.2; }
  .callout-card em { font-size: 8.5px; line-height: 1.25; }
  .callout-1 { left: 60%; top: 8%; }
  .callout-2 { right: 64%; top: 60%; }
  .callout-3 { left: 64%; top: 75%; }
  .blip-pentest { --x: 60%; --y: 15%; }
  .blip-devops { --x: 36%; --y: 68%; }
  .blip-data { --x: 64%; --y: 83%; }

  .ticker { padding: 8px 0; }
  .ticker-track span { font-size: 10px; letter-spacing: 0.12em; }

  .demo, .steps, .catches, .pricing, .faq { padding: 66px 0 12px; }
  h2 { font-size: 1.85rem; }
  .section-sub { margin-bottom: 26px; font-size: 15px; }
  .console { margin-top: 24px; border-radius: 16px; }
  .console-head { padding: 11px 16px; }
  .console-label { font-size: 9px; letter-spacing: 0.16em; }
  .console-screen { margin: 10px; border-radius: 9px; }
  .play-ring { width: 66px; height: 66px; }
  .play-tri { border-width: 11px 0 11px 18px; }
  .screen-hint { font-size: 10px; line-height: 1.45; }

  .steps-grid { margin-top: 28px; gap: 12px; }
  .step { border-radius: 12px; padding: 20px 18px 22px; }
  .step h3 { font-size: 18px; margin-top: 11px; }
  .step p { font-size: 14.5px; }
  .catch-grid { gap: 12px; }
  .catch { border-radius: 12px; padding: 18px; }
  .catch-top { gap: 10px; }
  .catch h3 { font-size: 16px; }
  .match { width: 38px; height: 38px; font-size: 13px; }
  .catch-src { font-size: 13px; }

  .price-grid { margin-top: 30px; gap: 12px; }
  .plan { border-radius: 14px; padding: 22px 18px; }
  .plan-price { font-size: 36px; }
  .plan ul { margin: 18px 0 22px; }
  .plan li { font-size: 14px; }
  .plan-cta { width: 100%; }
  .plan-cta.btn-ghost { padding-inline: 16px; }
  .price-student { font-size: 14px; line-height: 1.5; }

  .qa summary { padding: 18px 0; font-size: 16px; }
  .qa p { padding: 0 0 20px; font-size: 15px; }
  .final { padding: 78px 0 64px; }
  .final-logo { width: 58px; height: 58px; border-radius: 14px; }
  .final p { font-size: 15px; }
  .final .btn-metal { width: 100%; text-align: center; }

  .footer-inner { align-items: flex-start; padding: 22px 0; }
  .footer-brand { align-items: flex-start; font-size: 13px; line-height: 1.45; }
  .footer-nav { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 16px; font-size: 13px; }
  .footer-nav > a, .footer-nav > button { min-height: 44px; display: flex; align-items: center; }
  .footer-copy { grid-column: 1 / -1; }

  .cookie-banner { inset-inline: 12px; bottom: max(12px, env(safe-area-inset-bottom)); padding: 16px; border-radius: 14px; }
  .cookie-text { font-size: 13.5px; line-height: 1.5; }
  .cookie-actions { display: grid; gap: 9px; }
  .cookie-actions > * { width: 100%; min-height: 48px; text-align: center; }

  .contact-page { padding-top: 42px; }
  .contact-fields-row, .contact-subjects { grid-template-columns: 1fr; }
  .contact-console-head { align-items: flex-start; padding: 16px; }
  .contact-form { padding: 16px; }
  .contact-submit { width: 100%; }
  .console-state { margin-top: 5px; }
}

/* ========================= Mouvement réduit ============================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .scope-sweep, .ticker-track, .led-amber, .blip {
    animation: none;
  }

  .blip { opacity: 0.9; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
