@charset "UTF-8";
/* La boîte à coder — design system (terminal/dev, sombre).
   style-hover → :hover, JS responsive → media query @880px.
   ponytail: CSS custom properties kept as-is (runtime var(--x)), not Sass $vars. */
:root {
  --bg: #0c1626;
  --bg-footer: #08111e;
  --surface: #11203a;
  --surface-menu: #0e1a2b;
  --accent: #38b6f0;
  --accent-hover: #5ac4f5;
  --text: #c6d2e0;
  --text-2: #9fb0c4;
  --text-3: #6f829a;
  --text-foot: #5e708a;
  --sep: #3a4d66;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --serif: "Spectral", Georgia, serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
/* ---------- layout ---------- */
.page {
  min-height: 100vh;
  background: var(--bg);
  overflow-x: clip; /* not "hidden": hidden forces overflow-y:auto, a phantom scroll container that breaks view() scroll animations */
  position: relative;
}

.bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(86, 150, 210, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(86, 150, 210, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}

.container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.section-tight {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-hero {
  padding-top: 64px;
  padding-bottom: 40px;
}

.section-cta {
  padding-top: 60px;
  padding-bottom: 96px;
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  background: rgba(56, 182, 240, 0.1);
  border: 1px solid rgba(56, 182, 240, 0.25);
  padding: 7px 13px;
  border-radius: 99px;
  margin-bottom: 26px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: #fff;
}

.h1 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  max-width: 820px;
}

.h1-home {
  font-size: 55px;
  line-height: 1.07;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.h1-home em {
  color: var(--accent);
  font-style: italic;
}

.h2 {
  font-size: 38px;
  line-height: 1.15;
}

.h2-lg {
  font-size: 38px;
  line-height: 1.18;
}

.h2-md {
  font-size: 32px;
  line-height: 1.18;
}

.h2-sm {
  font-size: 30px;
  line-height: 1.18;
}

.h2-xs {
  font-size: 28px;
  line-height: 1.2;
}

.h2-cta {
  font-size: 38px;
  line-height: 1.13;
  margin-bottom: 18px;
}

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 680px;
}

.prose {
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--text-2);
  max-width: 760px;
}
.prose + .prose {
  margin-top: 18px;
}

.measure-wide {
  max-width: 720px;
}

.legal-list {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 10px 28px;
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
}
.legal-list dt {
  font-family: var(--mono);
  color: var(--text-3);
}
.legal-list dd {
  margin: 0;
  color: var(--text);
}
@media (max-width: 600px) {
  .legal-list {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }
  .legal-list dd {
    margin-bottom: 14px;
  }
}

.intro-p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 720px;
}

/* spacing utilities (faithful one-off margins from the design) */
.mb-10 {
  margin-bottom: 10px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-14 {
  margin-bottom: 14px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-22 {
  margin-bottom: 22px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-26 {
  margin-bottom: 26px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-34 {
  margin-bottom: 34px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-46 {
  margin-bottom: 46px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 14.5px;
  font-weight: 500;
  color: #0c1626;
  background: var(--accent);
  padding: 15px 26px;
  border-radius: 9px;
  transition: background 0.15s ease;
}
.btn:hover {
  background: var(--accent-hover);
}

.btn-hero {
  box-shadow: 0 8px 28px rgba(56, 182, 240, 0.3);
}

.btn-ghost {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 15px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(56, 182, 240, 0.06);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.morelink {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 22, 38, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: none;
}
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.nav-dd {
  position: relative;
}
.nav-dd:hover .nav-dd-label {
  color: var(--accent);
}
.nav-dd:hover .nav-dd-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dd-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.nav-dd-label .caret {
  font-size: 9px;
  opacity: 0.65;
}

.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, visibility 0.16s ease;
}

.nav-dd-panel {
  min-width: 252px;
  background: var(--surface-menu);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.75);
}

.nav-dd-item {
  display: block;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--text);
}
.nav-dd-item:hover {
  background: rgba(56, 182, 240, 0);
  color: #fff;
}

.lang {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
}

.lang-btn {
  background: transparent;
  color: var(--text-2);
  padding: 8px 11px;
}
.lang-btn.active {
  background: var(--accent);
  color: #0c1626;
}

.nav-cta {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 500;
  color: #0c1626;
  background: var(--accent);
  padding: 11px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.nav-cta:hover {
  background: var(--accent-hover);
}

.burger {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.navtoggle {
  display: none;
}
.navtoggle:checked ~ .mobile-menu {
  display: block;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 24px 20px;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu a.active {
  color: var(--accent);
}

.mobile-sub {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-sub a {
  display: block;
  padding: 7px 0 7px 14px;
  font-size: 14.5px;
  color: var(--text-2);
  border: 0;
}

.mobile-sub-title {
  font-weight: 500;
  margin-bottom: 6px;
}

.mobile-cta {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 14px;
  color: #0c1626;
  background: var(--accent);
  padding: 12px 18px;
  border-radius: 8px;
  border: 0 !important;
}

.mobile-lang {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  width: max-content;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}
.mobile-lang .lang-btn {
  padding: 9px 16px;
}

/* ---------- home hero ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 52px;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 56px;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.stat-n {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.stat-l {
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--mono);
}

.stat-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* stats fade in one-by-one on scroll (CSS scroll-driven; no JS) */
@media (prefers-reduced-motion: no-preference) {
  .stats > div {
    animation: stat-fade-in linear both;
    animation-timeline: view();
  }
  .stats > div:nth-child(1) {
    animation-range: cover 0% cover 22%;
  }
  .stats > div:nth-child(2) {
    animation-range: cover 6% cover 28%;
  }
  .stats > div:nth-child(3) {
    animation-range: cover 12% cover 34%;
  }
  .stats > div:nth-child(4) {
    animation-range: cover 18% cover 40%;
  }
  .stats > div:nth-child(5) {
    animation-range: cover 24% cover 46%;
  }
  .stats > div:nth-child(6) {
    animation-range: cover 30% cover 52%;
  }
  .stats > div:nth-child(7) {
    animation-range: cover 36% cover 58%;
  }
}
@keyframes stat-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* cards swing in on Y axis, one-by-one on scroll (CSS scroll-driven; no JS) */
@media (prefers-reduced-motion: no-preference) {
  .reveal-3d {
    perspective: 1200px;
  }
  .reveal-3d > * {
    animation: card-rotate-in linear both;
    animation-timeline: view();
    transform-origin: left center;
  }
  .reveal-3d > *:nth-child(1) {
    animation-range: cover 0% cover 30%;
  }
  .reveal-3d > *:nth-child(2) {
    animation-range: cover 15% cover 45%;
  }
  .reveal-3d > *:nth-child(3) {
    animation-range: cover 30% cover 60%;
  }
}
@keyframes card-rotate-in {
  from {
    opacity: 0;
    transform: rotateY(90deg);
  }
  to {
    opacity: 1;
  }
}
/* steps fade in + slide right→left, one-by-one on scroll (CSS scroll-driven; no JS) */
@media (prefers-reduced-motion: no-preference) {
  .reveal-slide > * {
    animation: slide-in-left linear both;
    animation-timeline: view();
  }
  .reveal-slide > *:nth-child(1) {
    animation-range: cover 0% cover 30%;
  }
  .reveal-slide > *:nth-child(2) {
    animation-range: cover 12% cover 42%;
  }
  .reveal-slide > *:nth-child(3) {
    animation-range: cover 24% cover 54%;
  }
  .reveal-slide > *:nth-child(4) {
    animation-range: cover 36% cover 66%;
  }
}
@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
  }
}
/* terminal */
.term-wrap {
  position: relative;
}

.term-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 60% 40%, rgba(56, 182, 240, 0.16), transparent 65%);
  filter: blur(10px);
}

.term {
  position: relative;
  background: #0a1320;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-menu);
}

.term-dots {
  display: flex;
  gap: 7px;
}
.term-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.term-path {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-foot);
}

.term-body {
  padding: 22px 20px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 2;
  min-height: 280px;
}
.term-body .c-blue {
  color: var(--accent-hover);
}
.term-body .c-green {
  color: #4caf7d;
}
.term-body .c-amber {
  color: #e9b43c;
}
.term-body .c-dim {
  color: var(--text-2);
}
.term-body .c-white {
  color: #fff;
}

.cursor {
  display: inline-block;
  width: 9px;
  height: 17px;
  background: var(--accent-hover);
  margin-left: 5px;
  vertical-align: text-bottom;
  animation: blink 1.1s steps(1) infinite;
}

/* ---------- panel ---------- */
.panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 60px 52px;
}

/* ---------- grids ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* cards */
.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 26px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

.card-glow:hover {
  border-color: rgba(56, 182, 240, 0.5);
  box-shadow: 0 0 0 1px rgba(56, 182, 240, 0.2), 0 22px 50px -28px rgba(56, 182, 240, 0.5);
}

.card-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 18px;
}

.card-link {
  display: block;
  background: linear-gradient(180deg, rgba(56, 182, 240, 0.06), transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card-link:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.card-link h3 {
  font-size: 23px;
  margin-bottom: 12px;
}
.card-link p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* method steps */
.step {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid rgba(56, 182, 240, 0.4);
}
.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.step p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}

.step-num {
  font-family: var(--mono);
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 14px;
}

/* problem check grid */
.checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

.check {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.5;
}
.check .mk {
  font-family: var(--mono);
  color: var(--accent);
  flex: none;
}

/* compare (standard vs custom) */
.compare-col {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 32px 28px;
  background: var(--surface);
}
.compare-col.accent {
  border-color: rgba(56, 182, 240, 0.4);
  background: linear-gradient(180deg, rgba(56, 182, 240, 0.1), var(--surface));
}
.compare-col.accent .compare-head {
  color: var(--accent);
}
.compare-col.accent .crow {
  color: #fff;
}

.compare-head {
  font-size: 13px;
  font-family: var(--mono);
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.crow {
  display: flex;
  gap: 11px;
  font-size: 15.5px;
  color: var(--text);
}
.crow .ok {
  color: #4caf7d;
  flex: none;
}
.crow .arr {
  color: var(--accent);
  flex: none;
}

/* vertical checklist (case studies, atelier outcomes) */
.clist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  max-width: 760px;
}

.clist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.5;
}
.clist-item .mk {
  font-family: var(--mono);
  color: var(--accent);
  flex: none;
}

/* figure */
.figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.7);
}
.figure.on-white {
  background: #fff;
}
.figure.on-dark {
  background: #0a1320;
}
.figure img {
  display: block;
  width: 100%;
  height: auto;
}
.figure figcaption {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-foot);
  padding: 13px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* quote (case studies) */
.quote {
  background: linear-gradient(180deg, rgba(56, 182, 240, 0.08), var(--surface));
  border: 1px solid rgba(56, 182, 240, 0.25);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  padding: 34px 36px;
  margin: 0;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
}

/* about (home + a-propos) */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.about-grid.flip {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.profile {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 34px 32px;
}

.profile-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.profile-head img {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: none;
}

.profile-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.profile-role {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-top: 4px;
}

.mono-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 22px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.chip {
  font-family: var(--mono);
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 9px 15px;
}

.tags {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
}
.tags .dot {
  color: var(--sep);
}

.links-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 34px 32px;
}

.link-pill {
  font-family: var(--mono);
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 18px;
  border-radius: 9px;
  transition: border-color 0.15s ease;
}
.link-pill:hover {
  border-color: var(--accent);
}

/* case study cards (home) */
.casecard {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.15s ease;
}
.casecard:hover {
  border-color: var(--accent);
}

.casecard-img {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.casecard-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casecard-tag {
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  background: rgba(12, 22, 38, 0.9);
  padding: 5px 11px;
  border-radius: 6px;
}

.casecard-body {
  padding: 28px;
}
.casecard-body h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.casecard-body p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* CTA final */
.cta {
  background: linear-gradient(135deg, var(--surface), var(--surface-menu));
  border: 1px solid rgba(56, 182, 240, 0.25);
  border-radius: 20px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.cta p {
  font-size: 17.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 34px;
}

.cta-glow {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(56, 182, 240, 0.22), transparent 65%);
}

.cta-inner {
  position: relative;
  max-width: 680px;
}

.cta-prompt {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
}
.cta-prompt .cursor {
  width: 8px;
  height: 16px;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: middle;
}

/* recommandations */
.statbadges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.statbadge {
  display: flex;
  align-items: baseline;
  gap: 9px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  padding: 14px 20px;
}
.statbadge .n {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}
.statbadge .n.accent {
  color: var(--accent);
}
.statbadge .l {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-2);
}

.masonry {
  columns: 2;
  column-gap: 22px;
}

.tcard {
  break-inside: avoid;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 26px;
  margin-bottom: 22px;
}

.tcard-quote {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.66;
  white-space: pre-line;
}

.tcard-foot {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tcard-country {
  border-radius: 8px;
  background: rgba(56, 182, 240, 0.12);
  border: 1px solid rgba(56, 182, 240, 0.25);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  flex: none;
  white-space: nowrap;
}

.tcard-name {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.tcard-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  background: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-grid img {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}

.footer-pitch {
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 320px;
  color: var(--text-3);
}

.footer-h {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-2);
}
.footer-col a:hover {
  color: #fff;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12.5px;
}
.footer-bar-inner span {
  color: var(--text-foot);
}

/* ---------- responsive (single breakpoint, 880px) ---------- */
@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-grid,
  .about-grid,
  .about-grid.flip,
  .grid-2,
  .grid-3,
  .grid-4,
  .checks {
    grid-template-columns: 1fr;
  }
  .masonry {
    columns: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .panel {
    padding: 40px 24px;
  }
  .cta {
    padding: 44px 28px;
  }
  .h1-home {
    font-size: 40px;
  }
  .h1 {
    font-size: 38px;
  }
}

/*# sourceMappingURL=style.css.map */