/* ============================================================
   Inference Vision — Design System v3
   "Schéma d'inférence locale" — ouverture sombre & or, catalogue éditorial
   Fraunces (display) · IBM Plex Sans (texte) · IBM Plex Mono (repères, avec parcimonie)
   ============================================================ */

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

:root {
  /* surfaces */
  --paper: #EFF1EA;
  --paper-card: #F8F8F4;
  --grid-line: rgba(11, 18, 15, 0.045);
  --ink: #0B120F;
  --ink-soft: #4E5D56;
  --ink-dim: #8A968F;
  --border: rgba(11, 18, 15, 0.13);
  --border-soft: rgba(11, 18, 15, 0.07);

  /* dark-surface text */
  --cream: #F4EFE6;
  --cream-dim: rgba(244, 239, 230, 0.64);
  --cream-line: rgba(244, 239, 230, 0.2);

  /* accents — brass is the signature; signal is a quiet functional dot only */
  --brass: #C9A35F;        /* bright gold, for dark surfaces */
  --brass-deep: #8C6B34;   /* deep gold, for paper surfaces (AA contrast) */
  --brass-tint: rgba(140, 107, 52, 0.08);
  --signal: #4B7A63;       /* muted status green — "live" dot only */
  --red: #9C4A3C;

  --font-display: 'Fraunces', Georgia, serif;
  --font: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;

  --dur: 300ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-nav: 100;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px) 0 0 / 100% 44px,
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) 0 0 / 44px 100%,
    var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--cream); }

/* ---------- MICRO STRIP ---------- */
.micro-strip {
  position: fixed; inset: 0 0 auto 0; z-index: calc(var(--z-nav) + 1);
  font-size: 11px; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--ink-dim); background: var(--paper);
  border-bottom: 1px solid var(--border-soft);
  padding: 7px 24px;
  display: flex; justify-content: space-between; gap: 12px;
}
.micro-strip strong { color: var(--brass-deep); font-weight: 600; }

/* ---------- NAV ---------- */
nav {
  position: fixed; inset: 30px 0 auto 0; z-index: var(--z-nav);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(239, 241, 234, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: var(--font-mono); font-weight: 500; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; display: flex; align-items: center; gap: 9px; color: var(--ink); }
.nav-logo .mark { width: 22px; height: 22px; flex-shrink: 0; }
.nav-logo span { color: var(--brass-deep); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.2px; transition: color var(--dur) var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { border: 1px solid var(--ink); color: var(--ink) !important; padding: 8px 18px; font-weight: 500 !important; transition: all var(--dur) var(--ease); }
.nav-cta:hover { background: var(--ink); color: var(--cream) !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle svg { stroke: var(--ink); width: 22px; height: 22px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  cursor: pointer; border: 1px solid transparent;
  font-family: var(--font); transition: all var(--dur) var(--ease);
}
.btn svg { width: 14px; height: 14px; }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--brass-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-store { background: var(--ink); color: var(--cream); }
.btn-gold { background: var(--brass-deep); color: var(--cream); }
.btn-gold:hover { background: var(--brass); color: var(--ink); transform: translateY(-2px); }
.hero .btn-primary, .app-hero .btn-primary { background: var(--brass); color: var(--ink); }
.hero .btn-primary:hover, .app-hero .btn-primary:hover { background: #DBB877; }
.hero .btn-ghost, .app-hero .btn-ghost { border-color: var(--cream-line); color: var(--cream); }
.hero .btn-ghost:hover, .app-hero .btn-ghost:hover { background: rgba(244,239,230,0.08); }

/* ---------- LAYOUT ---------- */
section { padding: 120px 24px; position: relative; }
.container { max-width: 1120px; margin: 0 auto; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
  color: var(--brass-deep); margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--brass-deep); }
.section-header { max-width: 620px; margin: 0 auto 64px; text-align: center; }
.section-header .eyebrow { justify-content: center; }
.section-header .eyebrow::before { display: none; }
.section-title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); font-weight: 600; letter-spacing: -0.5px; line-height: 1.18; margin-bottom: 18px; }
.section-sub { font-size: 16.5px; color: var(--ink-soft); }

/* ---------- HERO (dark, full-bleed) ---------- */
.hero { background: var(--ink); padding: 176px 0 120px; }
.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-copy .eyebrow { color: var(--brass); }
.hero-copy .eyebrow::before { display: none; }
.hero h1 {
  font-family: var(--font-display); font-weight: 600; color: var(--cream);
  font-size: clamp(40px, 5vw, 60px); line-height: 1.1; letter-spacing: -1px;
  margin: 12px 0 24px;
}
.hero h1 em { font-style: italic; color: var(--brass); }
.hero-sub { font-size: 17.5px; color: var(--cream-dim); max-width: 460px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-readout {
  font-family: var(--font-mono); font-size: 12px; color: var(--cream-dim);
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--cream-line); padding-top: 18px;
}
.hero-readout span { padding: 2px 14px 2px 0; border-right: 1px solid var(--cream-line); margin-right: 14px; }
.hero-readout span:last-child { border-right: none; }

/* ---------- BADGE (small pages/blog hero) ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border: 1px solid var(--cream-line); border-radius: 100px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--brass); letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); }
.hero .grad, .article-head .grad { font-style: italic; color: var(--brass); }
.hero.article-hero, header.hero { background: var(--ink); }
header.hero h1, .hero h1 { color: var(--cream); }
header.hero .hero-sub, .hero .hero-sub { color: var(--cream-dim); }

/* ---------- SCHEMATIC DIAGRAM ---------- */
.schematic { position: relative; }
.schematic svg { width: 100%; height: auto; }
.schematic-label { font-family: var(--font-mono); font-size: 10px; fill: var(--cream-dim); letter-spacing: 0.5px; }
.schematic-loop { animation: travel 5s linear infinite; }
@media (prefers-reduced-motion: reduce) { .schematic-loop { animation: none; } }
@keyframes travel { to { stroke-dashoffset: -100; } }

/* ---------- APPS: EDITORIAL CATALOGUE ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 56px 44px; }
.app-card { display: flex; flex-direction: column; transition: transform 420ms var(--ease); }
.app-card:hover { transform: translateY(-6px); }
.app-shot {
  aspect-ratio: 5/4.2; overflow: hidden; position: relative;
  background: radial-gradient(130% 130% at 50% 6%, #1C2B25 0%, #0B120F 72%);
}
.app-shot img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 640ms var(--ease);
}
.app-card:hover .app-shot img { transform: scale(1.045); }
.app-shot-icon { display: flex; align-items: center; justify-content: center; }
.app-shot-icon svg { width: 42%; height: 42%; transition: transform 640ms var(--ease); }
.app-card:hover .app-shot-icon svg { transform: scale(1.06); }
.app-shot::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 46%; pointer-events: none;
  background: linear-gradient(to top, rgba(11,18,15,0.88), transparent);
}
.app-refrow {
  position: absolute; top: 18px; left: 18px; right: 18px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(244,239,230,0.8);
}
.dial { width: 6px; height: 6px; border-radius: 50%; border: 1px solid rgba(244,239,230,0.55); flex-shrink: 0; }
.dial.on { background: var(--brass); border-color: var(--brass); }
.app-status { display: flex; align-items: center; gap: 7px; }
.app-body { padding: 26px 2px 0; flex: 1; display: flex; flex-direction: column; }
.app-name { font-family: var(--font-display); font-size: 25px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.3px; }
.app-desc { font-size: 15px; color: var(--ink-soft); flex: 1; line-height: 1.6; }
.app-specrow {
  position: relative; display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px; padding-top: 16px;
  font-size: 11.5px; color: var(--ink-dim); letter-spacing: 0.4px; text-transform: uppercase;
}
.app-specrow::before { content: ''; position: absolute; top: 0; left: 0; width: 34px; height: 1px; background: var(--brass-deep); }
.app-specrow .price { color: var(--brass-deep); font-weight: 600; }
.app-link { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-weight: 600; transition: color var(--dur) var(--ease); }
.app-card:hover .app-link { color: var(--brass-deep); }
.app-link svg { width: 13px; height: 13px; transition: transform var(--dur) var(--ease); }
.app-card:hover .app-link svg { transform: translateX(3px); }

/* ---------- BLOG CARDS ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 20px; }
.post-card { background: var(--paper-card); border: 1px solid var(--border); display: flex; flex-direction: column; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.post-card:hover { border-color: rgba(11,18,15,0.22); box-shadow: 0 24px 46px -20px rgba(11,18,15,0.24); }
.post-cover { height: 3px; background: var(--border); }
.post-cover.cover-edge { background: var(--brass-deep); }
.post-cover.cover-vision { background: var(--ink); }
.post-cover.cover-slm { background: var(--signal); }
.post-cover.cover-agent { background: var(--ink-dim); }
.post-body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: 11px; color: var(--ink-dim); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.4px; }
.post-meta .cat { color: var(--brass-deep); font-weight: 600; }
.post-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; line-height: 1.32; margin-bottom: 10px; letter-spacing: -0.2px; }
.post-excerpt { font-size: 14px; color: var(--ink-soft); flex: 1; }
.post-link { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--brass-deep); display: inline-flex; gap: 6px; align-items: center; }

/* ---------- MANIFESTO / CLAUSES ---------- */
.clauses { border-top: 1px solid var(--border); }
.clause { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--border); }
.clause-num { font-family: var(--font-mono); font-size: 13px; color: var(--brass-deep); font-weight: 600; letter-spacing: 0.5px; padding-top: 4px; }
.clause h3 { font-family: var(--font-display); font-size: 23px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.3px; }
.clause p { font-size: 15px; color: var(--ink-soft); max-width: 560px; }

/* ---------- READOUT / STATS ---------- */
.readout-strip { display: flex; flex-wrap: wrap; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-top: 60px; }
.readout { flex: 1; min-width: 150px; padding: 30px 26px; border-right: 1px solid var(--border); }
.readout:last-child { border-right: none; }
.readout .num { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 600; color: var(--ink); }
.readout .num.signal { color: var(--brass-deep); }
.readout .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--ink-dim); margin-top: 6px; letter-spacing: 0.3px; text-transform: uppercase; }

/* ---------- ANNEXE / FORMATION ---------- */
.annexe { border: 1px solid var(--border); background: var(--paper-card); display: grid; grid-template-columns: 1.2fr 0.8fr; }
.annexe-body { padding: 44px; }
.annexe-tab { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--brass-deep); border: 1px solid var(--brass-deep); display: inline-block; padding: 5px 12px; margin-bottom: 18px; }
.annexe-art { border-left: 1px solid var(--border); display: flex; align-items: center; justify-content: center; padding: 24px; }
.annexe-art svg { width: 100%; max-width: 140px; stroke: var(--brass-deep); }

/* ---------- CTA ---------- */
.cta-strip { text-align: center; }
.cta-box {
  max-width: 720px; margin: 0 auto; padding: 72px 40px;
  border: 1px solid var(--border); background: var(--paper-card); position: relative;
}
.cta-box::before {
  content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 2px; background: var(--brass-deep);
}
.cta-box h2 { font-family: var(--font-display); font-size: clamp(27px, 4vw, 38px); font-weight: 600; letter-spacing: -0.5px; margin-bottom: 16px; }
.cta-box p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 34px; }

/* ---------- DETAIL PAGES: shared bits ---------- */
.container-narrow { max-width: 760px; margin: 0 auto; }
.crumbs { font-family: var(--font-mono); font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.4px; }
.crumbs a:hover { color: var(--brass-deep); }
.section-label { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 1.5px; color: var(--brass-deep); margin-bottom: 14px; text-transform: uppercase; }

/* tags — quiet status pills, no fill */
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; padding: 5px 11px; border: 1px solid currentColor; }
.tag-live, .tag-new { color: var(--signal); }
.tag-soon { color: var(--brass-deep); }
.tag-ai { color: var(--ink-soft); }
.tag-gold { color: var(--brass-deep); }

/* ---------- APP DETAIL HERO (dark) ---------- */
.app-hero { background: var(--ink); padding: 176px 0 100px; }
.app-hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
.app-hero .crumbs, .app-hero .crumbs a { color: var(--cream-dim); }
.app-hero .tag { color: var(--brass); }
.app-hero .tag.tag-live, .app-hero .tag.tag-new { color: #7FBF9F; }
.app-hero h1 {
  font-family: var(--font-display); font-weight: 600; color: var(--cream);
  font-size: clamp(36px, 5vw, 54px); line-height: 1.12; letter-spacing: -1px;
  margin: 18px 0 20px;
}
.app-hero h1 .grad { font-style: italic; color: var(--brass); }
.app-hero .lead { font-size: 17px; color: var(--cream-dim); margin-bottom: 32px; line-height: 1.7; }
.app-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.app-hero .hero-proof, .hero-proof {
  font-family: var(--font-mono); font-size: 12px; color: var(--cream-dim);
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.hero-proof .dot-sep { color: var(--cream-line); }
.app-mock {
  aspect-ratio: 5/4.2; border-radius: 0; overflow: hidden; position: relative;
  background: radial-gradient(130% 130% at 50% 6%, #1C2B25 0%, #0B120F 72%);
  display: flex; align-items: center; justify-content: center;
}
.app-mock img.hero-shot { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.app-mock svg { width: 30%; height: 30%; stroke: #C9A35F; }

/* ---------- FEATURES ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.feature-ic { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-ic svg { width: 24px; height: 24px; stroke: var(--brass-deep); }
.feature h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ---------- COMPARE TABLE ---------- */
.compare-table { border: 1px solid var(--border); background: var(--paper-card); padding: 28px; overflow-x: auto; }
.compare-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th, .compare-table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--border-soft); }
.compare-table th { font-family: var(--font-mono); font-weight: 500; color: var(--ink-dim); font-size: 11px; letter-spacing: 0.8px; text-transform: uppercase; }
.compare-table th:nth-child(2) { color: var(--brass-deep); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table td.ok { color: var(--signal); font-weight: 600; }
.compare-table td.bad { color: var(--red); font-weight: 600; }
.compare-table td:nth-child(2) { background: var(--brass-tint); }
.compare-note { margin-top: 18px; font-size: 12px; color: var(--ink-dim); text-align: center; }
.compare-note a { color: var(--brass-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- PRICE CARD ---------- */
.detail-section { }
.price-card { max-width: 460px; margin: 0 auto; padding: 44px; text-align: center; border: 1px solid var(--ink); background: var(--paper-card); }
.price-card .price { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--ink); }
.price-card .price small { font-size: 15px; color: var(--ink-soft); font-family: var(--font); font-weight: 400; }
.price-card .price-note { font-size: 13px; color: var(--ink-dim); margin: 10px 0 28px; }
.price-feat { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 12px; text-align: left; }
.price-feat li { position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 14px; }
.price-feat li::before { content: "—"; position: absolute; left: 0; color: var(--brass-deep); font-weight: 600; }
.price-actions { display: flex; flex-direction: column; gap: 10px; }
.price-actions .btn { justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.faq-list details { background: var(--paper-card); padding: 20px 24px; }
.faq-list summary { cursor: pointer; font-weight: 600; font-size: 15.5px; list-style: none; position: relative; padding-right: 28px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--brass-deep); font-weight: 300; transition: transform var(--dur) var(--ease); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { margin-top: 14px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }

/* ---------- ARTICLE ---------- */
.article { padding: 170px 24px 100px; }
.article-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.article-head h1 { font-family: var(--font-display); font-size: clamp(30px, 5vw, 48px); font-weight: 600; letter-spacing: -0.8px; line-height: 1.16; margin: 18px 0 20px; }
.article-body { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.8; color: var(--ink-soft); }
.article-body h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--ink); margin: 52px 0 18px; letter-spacing: -0.4px; }
.article-body h3 { font-size: 19px; font-weight: 600; color: var(--ink); margin: 34px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul { margin: 0 0 20px 22px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--brass-deep); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote { border-left: 2px solid var(--brass-deep); padding: 4px 0 4px 22px; margin: 30px 0; color: var(--ink-soft); font-style: italic; }
.article-body code { background: var(--paper); border: 1px solid var(--border); padding: 2px 7px; font-size: 14px; font-family: var(--font-mono); }
.pill-list { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.pill { font-family: var(--font-mono); font-size: 11px; padding: 5px 12px; border: 1px solid var(--border); color: var(--ink-dim); }

@media (max-width: 860px) {
  .app-hero-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .app-hero-actions { justify-content: center; }
  .app-mock { order: -1; max-height: 380px; margin: 0 auto; }
}

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--border); padding: 64px 24px 38px; }
.footer-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--ink-soft); max-width: 260px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-dim); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 11px; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--brass-deep); }
.footer-pill { font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--brass-deep); border: 1px solid var(--brass-deep); padding: 1px 6px; margin-left: 6px; }
.footer-bottom { max-width: 1120px; margin: 48px auto 0; padding-top: 22px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--ink-dim); letter-spacing: 0.3px; text-transform: uppercase; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- LAUNCH BANNER ---------- */
.launch-banner { position: fixed; top: 30px; left: 0; right: 0; z-index: 99; display: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 230px; }
  .schematic { order: -1; max-width: 340px; margin: 0 auto 24px; }
  .nav-links { display: none; }
  .nav-links[style*="flex"] {
    background: var(--paper-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: 0 !important;
    box-shadow: 0 12px 28px rgba(11,18,15,0.12);
    top: 128px !important;
  }
  .nav-links a { color: var(--ink) !important; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .annexe { grid-template-columns: 1fr; }
  .annexe-art { border-left: none; border-top: 1px solid var(--border); }
  .clause { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 640px) {
  .micro-strip { display: none; }
  nav { top: 0; }
  .hero { padding-top: 130px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-readout span { border-right: none; margin-right: 0; width: 50%; }
}

/* focus visibility */
a:focus-visible, button:focus-visible { outline: 2px solid var(--brass-deep); outline-offset: 3px; }
