/* ════════════════════════════════════════════════════════════════
   NORD PARADIGM REDESIGN CONCEPT
   Design language: instrument-grade precision. Cockpit-at-night
   palette, hairline rules, monospace readouts, gold accents.
   ════════════════════════════════════════════════════════════════ */
@import url("./nord-tokens.css?v=20260715-2");

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

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

body {
  background: var(--ink);
  color: var(--cloud);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Blueprint grid + vignette + grain, layered under everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 800px at 75% -10%, rgba(79, 195, 247, 0.05), transparent 60%),
    radial-gradient(900px 700px at 10% 110%, rgba(212, 168, 83, 0.04), transparent 60%),
    linear-gradient(rgba(196, 213, 232, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 213, 232, 0.022) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.028 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: rgba(212, 168, 83, 0.32); color: var(--text); }

h1, h2, h3 { font-family: var(--font-display); color: var(--text); }
a { color: inherit; }
img { max-width: 100%; display: block; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.mono { font-family: var(--font-mono); }
#nav-sentinel { position: absolute; top: 24px; left: 0; width: 1px; height: 1px; pointer-events: none; }

/* ── Reveal-on-scroll ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(.2,.65,.25,1), transform 0.9s cubic-bezier(.2,.65,.25,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ════════════════ NAV ════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
}
.nav.scrolled {
  background: rgba(6, 10, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  height: 72px;
}
.nav .container { display: flex; align-items: center; gap: 32px; width: 100%; max-width: 1380px; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { height: 68px; width: auto; transition: height 0.4s ease; }
.nav.scrolled .nav-logo img { height: 52px; }
.nav-brand { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.nav-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; letter-spacing: 0.04em; color: var(--text); white-space: nowrap; }
.nav .nav-brand-name { font-size: 2.05rem; }
.nav-brand-name em { font-style: normal; color: var(--amber); }
.nav-brand-tag { font-family: var(--font-display); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em; color: var(--dim); text-transform: uppercase; white-space: nowrap; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-mono); font-size: 17px; font-weight: 500; letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dim); text-decoration: none;
  padding: 6px 0; position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-lang {
  display: flex; align-items: center; gap: 2px;
  padding: 5px 7px; border: 1px solid rgba(196, 213, 232, 0.24); border-radius: 3px;
  background: rgba(238, 244, 250, 0.08);
  font-family: var(--font-mono); font-size: 13.5px; line-height: 1; letter-spacing: 0.08em;
}
.nav-lang a { color: var(--faint); text-decoration: none; padding: 2px 3px; transition: color 0.25s; }
.nav-lang a.active { color: var(--gold); }
.nav-lang a:hover { color: var(--text); }
.nav-lang .sep { color: var(--line-2); }
.nav-cta {
  font-family: var(--font-mono); font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--ink); background: linear-gradient(120deg, var(--gold), var(--amber));
  padding: 12px 19px; border-radius: 3px; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(212, 168, 83, 0.35); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cloud); margin: 5px 0; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════ HERO ════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  align-items: stretch;
  position: relative;
  padding: calc(var(--nav-h) + 40px) 0 40px;
  overflow-x: clip;
}
body.redesign-home .hero::before { content: none; }

/* Site-wide fixed background: original artwork + live particle layer + scrim */
.hero-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg-inner {
  position: absolute; inset: 0;
  transform-origin: 50% 60%;
  animation: heroDrift 46s ease-in-out infinite alternate;
}
.hero-bg picture, .hero-bg img, .hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: center; }
@keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.055); } }
@media (prefers-reduced-motion: reduce) { .hero-bg-inner { animation: none; } }
.hero-scrim {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,10,20,0.50) 0%, rgba(6,10,20,0.22) 42%, rgba(6,10,20,0.02) 70%, rgba(6,10,20,0.25) 100%),
    linear-gradient(180deg, rgba(6,10,20,0.50) 0%, rgba(6,10,20,0.05) 24%, rgba(6,10,20,0.05) 72%, rgba(6,10,20,0.72) 100%);
}

/* Capture mode (?static=1): everything at final state, hero height capped */
.static { scroll-behavior: auto; }
.static .hero { min-height: 840px; }
.static .hero-bg-inner { animation: none; }
.static .ticker-track { animation: none; }
.static .caret, .static .term-bar .live::before { animation: none; }

.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px;
  align-items: center;
  position: relative; inset: auto; opacity: 1; z-index: auto;
  background: none; pointer-events: auto;
}
.hero-grid > * { min-width: 0; }
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.45rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.06;
  margin-bottom: 28px;
}
.hero h1.hero-title-fr {
  font-size: clamp(2.35rem, 4.6vw, 3.75rem);
}
.hero-title-keep { white-space: nowrap; }
.hero h1 .grad {
  background: linear-gradient(96deg, var(--gold) 10%, var(--amber) 50%, var(--gold) 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: 19px; line-height: 1.7; color: var(--cloud);
  max-width: 540px; margin-bottom: 20px;
  text-shadow: 0 1px 14px rgba(6, 10, 20, 0.85);
}
.hero .hero-pillars {
  width: 100%; max-width: 570px;
  font-family: var(--font-mono); font-size: 15px; letter-spacing: 0.06em;
  color: var(--cloud); margin: 24px 0 0; display: flex; flex-wrap: nowrap; white-space: nowrap;
  justify-content: flex-start; transform: none; transform-origin: top left;
  text-shadow: 0 1px 12px rgba(6, 10, 20, 0.85);
}
.hero-pillars b { font-weight: 500; }
.hero-pillars .dot { color: var(--gold); margin: 0 10px; }
.hero-diagnostic {
  width: 100%; max-width: 570px;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px;
}
.hero-diagnostic input[type="text"] {
  min-width: 0; width: 100%;
  background: rgba(6, 10, 20, 0.82); border: 1px solid var(--line-2); border-radius: 3px;
  padding: 15px 17px; color: var(--text);
  font-family: var(--font-mono); font-size: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.24);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero-diagnostic input[type="text"]::placeholder { color: var(--faint); }
.hero-diagnostic input[type="text"]:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.16), 0 4px 24px rgba(0, 0, 0, 0.24);
}
.hero-diagnostic .btn {
  grid-column: 2; grid-row: 1;
  justify-content: center; white-space: nowrap; padding-left: 22px; padding-right: 22px;
}
.hero .hero-diagnostic-note {
  grid-column: 1; grid-row: 2; justify-self: stretch; width: 100%; max-width: none; margin: 0; text-align: center;
  font-family: var(--font-mono); font-size: 11px; line-height: 1.4;
  letter-spacing: 0.075em; color: var(--faint); text-transform: uppercase; white-space: nowrap;
  transform: none;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  padding: 15px 30px; border-radius: 3px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn-gold {
  color: #14100a; background: linear-gradient(120deg, var(--gold), var(--amber));
  box-shadow: 0 4px 24px rgba(212, 168, 83, 0.25);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(212, 168, 83, 0.42); }
.btn-gold svg { transition: transform 0.25s ease; }
.btn-gold:hover svg { transform: translateX(4px); }
.nav-cta,
.hero .btn-gold {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Diagnostic terminal card ── */
.term {
  position: relative;
  background: linear-gradient(160deg, rgba(16, 26, 46, 0.92), rgba(9, 14, 26, 0.94));
  border: 1px solid var(--line-2);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(79, 195, 247, 0.04) inset;
  overflow: hidden;
}
.term::before { /* sweep glint */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(79, 195, 247, 0.05) 45%, transparent 60%);
}
.term-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--faint); text-transform: uppercase;
}
.term-bar .dots { display: flex; gap: 6px; margin-right: 4px; }
.term-bar .dots i { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--line-2); font-style: normal; }
.term-bar .dots i:first-child { background: rgba(212, 168, 83, 0.6); border-color: transparent; }
.term-bar .live {
  margin-left: auto; display: flex; align-items: center;
}
.term-bar .live::before {
  content: "";
  width: 13px; height: 13px; flex: 0 0 13px;
  border: 2px solid var(--gold); border-right-color: transparent; border-radius: 50%;
  animation: liveSpin 1.6s linear infinite;
}
@keyframes liveSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .term-bar .live::before { animation: none; } }
.term-body {
  padding: 20px 22px 22px;
  font-family: var(--font-mono); font-size: 12.8px; line-height: 2.05;
  min-height: 232px; color: var(--cloud);
}
.term-body .ln { display: block; white-space: pre-wrap; min-height: 26px; }
.term-body .cmd { color: var(--text); }
.term-body .cmd::before { content: "$ "; color: var(--gold); }
.term-body .ok { color: var(--teal); }
.term-body .warn { color: var(--warn); }
.term-body .note { color: var(--faint); font-size: 11.8px; }
.term-body .info { color: var(--electric); }
.caret {
  display: inline-block; width: 8px; height: 15px; margin-left: 2px;
  background: var(--gold); vertical-align: -2px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.term-score { border-top: 1px solid var(--line); padding: 18px 22px 20px; }
.term-score-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono); margin-bottom: 10px;
}
.term-score-label { font-size: 10.5px; letter-spacing: 0.26em; color: var(--faint); text-transform: uppercase; }
.term-score-val { font-size: 26px; font-weight: 600; color: var(--text); }
.term-score-val small { font-size: 13px; color: var(--faint); font-weight: 400; }
.term-gauge { height: 5px; background: rgba(196, 213, 232, 0.08); border-radius: 3px; overflow: hidden; }
.term-gauge i {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--electric) 55%, var(--gold));
  border-radius: 3px;
  transition: width 1.6s cubic-bezier(0.22, 0.9, 0.24, 1);
}
.term-foot {
  margin-top: 12px; width: 153.846%;
  font-family: var(--font-mono); font-size: 9px; line-height: 1.4; color: var(--dim);
  transform: scale(0.65); transform-origin: top left;
}
.term-foot a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(212, 168, 83, 0.4); }
.term-foot a:hover { border-bottom-color: var(--gold); }

/* ── Ticker strip ── */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 26, 0.78);
  overflow: hidden; position: relative; z-index: 1;
  padding: 15px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: tick 46s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }
.ticker-track ul { display: flex; list-style: none; }
.ticker-track li {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--dim); white-space: nowrap;
  display: flex; align-items: center;
}
.ticker-track li::after { content: "✦"; color: var(--gold); margin: 0 34px; font-size: 9px; }

/* ════════════════ SECTIONS ════════════════ */
.section { padding: 110px 0; position: relative; background: rgba(6, 10, 20, 0.80); }
[id] { scroll-margin-top: 110px; }
.section + .section { border-top: 1px solid var(--line); }
.sec-head { margin-bottom: 56px; }
.sec-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.15; max-width: 780px;
}
.sec-intro { max-width: 680px; color: var(--dim); font-size: 17.5px; margin-top: 18px; }

.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; }

/* ── 02 · Service path ── */
.path { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; margin-top: 12px; list-style: none; }
.path::before {
  content: ""; position: absolute; top: 27px; left: 4%; right: 4%; height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--electric) 34%, #9b7cff 58%, var(--gold) 82%, var(--amber));
  opacity: 0.45;
}
.path-item { position: relative; padding-top: 62px; }
.path-node {
  position: absolute; top: 14px; left: 0;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
}
.path-node::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px rgba(212, 168, 83, 0.8); }
.path-item:nth-child(1) .path-node::before { background: var(--teal); box-shadow: 0 0 10px rgba(26,188,156,0.8); }
.path-item:nth-child(2) .path-node::before { background: var(--electric); box-shadow: 0 0 10px rgba(79,195,247,0.8); }
.path-item:nth-child(3) .path-node::before { background: #9b7cff; box-shadow: 0 0 12px rgba(155, 124, 255, 0.78); }
.path-card {
  position: relative;
  background: linear-gradient(170deg, rgba(16, 26, 46, 0.65), rgba(10, 16, 32, 0.5));
  border: 1px solid var(--line); border-radius: 8px;
  padding: 28px 26px 26px; height: 100%;
  display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.path-badge {
  position: absolute; top: -11px; right: 14px;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--amber);
  border: 1px solid rgba(212, 168, 83, 0.4); border-radius: 3px;
  padding: 4px 8px; background: #131f36;
}
.path-card:hover {
  transform: translateY(-6px); border-color: rgba(212, 168, 83, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.path-step {
  margin-bottom: 14px;
  flex: 0 0 auto;
  font-family: var(--font-mono); font-size: 11px; line-height: 1.55; letter-spacing: 0.24em;
  color: var(--faint); text-transform: uppercase;
}
.path-step b { color: var(--gold); font-weight: 500; margin-right: 10px; }
.path-card h3 {
  margin-bottom: 10px;
  font-size: 19px; line-height: 1.25; font-weight: 600; letter-spacing: -0.02em;
}
.path-card > p:not(.path-step) { font-size: 14.5px; color: var(--dim); flex: 1; margin-bottom: 20px; }
.path-link {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.path-link svg { transition: transform 0.25s ease; }
.path-link:hover svg { transform: translateX(4px); }

/* ── 03 · Findings (approach) ── */
.findings { border-top: 1px solid var(--line-2); }
.finding {
  display: grid; grid-template-columns: 210px 1fr; gap: 40px;
  padding: 38px 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
.finding-tag {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase; padding-top: 5px;
}
.finding h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.finding p { color: var(--dim); font-size: 16px; max-width: 720px; }
.approach-close { margin-top: 40px; color: var(--cloud); font-size: 17px; max-width: 800px; }
.approach-close b { color: var(--text); font-weight: 600; }

/* ── 04 · Founder ── */
.founder-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.portrait { position: relative; max-width: 440px; }
.portrait img { width: 100%; height: auto; object-fit: cover; border-radius: 6px; }
.portrait::before, .portrait::after {
  content: ""; position: absolute; width: 34px; height: 34px; pointer-events: none;
  border: 1px solid rgba(212, 168, 83, 0.65);
}
.portrait::before { top: -12px; left: -12px; border-right: 0; border-bottom: 0; }
.portrait::after { bottom: 44px; right: -12px; border-left: 0; border-top: 0; }
.portrait-caption {
  margin-top: 18px; display: flex; flex-direction: column; gap: 2px;
}
.portrait-caption b { font-family: var(--font-display); font-size: 16px; color: var(--text); font-weight: 600; }
.portrait-caption span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em; color: var(--faint); text-transform: uppercase; }
.founder-copy p { color: var(--dim); margin-bottom: 18px; font-size: 16.5px; }
.founder-copy p b { color: var(--cloud); font-weight: 500; }
.founder-quote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 24px; margin: 30px 0 36px;
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  letter-spacing: -0.015em; color: var(--text); line-height: 1.5;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat {
  border: 1px solid var(--line); border-radius: 6px;
  background: rgba(12, 20, 36, 0.55);
  padding: 22px 20px 18px; text-align: left;
}
.stat-val {
  font-family: var(--font-display); font-size: 32px; font-weight: 700;
  letter-spacing: -0.03em; color: var(--text); line-height: 1.1;
}
.stat-val em { font-style: normal; color: var(--gold); }
.stat-label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; color: var(--faint); text-transform: uppercase; margin-top: 8px; line-height: 1.6; }

/* ── 05 · Signal ── */
.signal {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(212, 168, 83, 0.06), transparent 70%),
    rgba(6, 10, 20, 0.82);
  padding: 96px 0; text-align: center;
}
.signal h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.025em; margin-bottom: 14px; }
.signal h2 em { font-style: normal; background: linear-gradient(96deg, var(--gold), var(--amber)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.signal > .container > p { color: var(--dim); max-width: 560px; margin: 0 auto 36px; }
.signal-form { display: flex; gap: 12px; max-width: 640px; margin: 0 auto; }
.signal-form input, .signal-form select {
  background: rgba(6, 10, 20, 0.7); border: 1px solid var(--line-2); border-radius: 4px;
  padding: 15px 16px; color: var(--text); font-family: var(--font-body); font-size: 15px;
}
.signal-form input:focus, .signal-form select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.14); }
.signal-form input[type="email"] { flex: 1; }
.signal-form select { color: var(--dim); }
.form-consent { font-size: 12.5px; color: var(--faint); margin-top: 18px; }
.form-consent a { color: var(--dim); }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ── 06 · Contact ── */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; }
.cform { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.cform-submit { align-self: flex-start; }
.form-consent-left { text-align: left; }
.cform label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 8px;
}
.cform input, .cform select, .cform textarea {
  width: 100%; background: rgba(12, 20, 36, 0.6);
  border: 1px solid var(--line-2); border-radius: 4px;
  padding: 14px 16px; color: var(--text);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.cform textarea { min-height: 130px; resize: vertical; }
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.13);
}
.cform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-info { padding-top: 34px; }
.contact-card {
  border: 1px solid var(--line); border-radius: 8px;
  background: rgba(12, 20, 36, 0.5); padding: 34px 32px;
}
.contact-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.contact-card > p { color: var(--dim); font-size: 15.5px; margin-bottom: 26px; }
.cdetail { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); font-size: 15px; }
.cdetail svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.cdetail a { color: var(--cloud); text-decoration: none; border-bottom: 1px solid var(--line-2); }
.cdetail a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.response-note {
  margin-top: 24px; border: 1px solid rgba(212, 168, 83, 0.25); border-radius: 6px;
  background: rgba(212, 168, 83, 0.05); padding: 20px 22px;
}
.response-note b { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.response-note p { font-size: 14px; color: var(--dim); }

/* ════════════════ FOOTER ════════════════ */
.footer { border-top: 1px solid var(--line); padding: 64px 0 40px; background: rgba(5, 8, 16, 0.9); position: relative; z-index: 1; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.footer-brand img { height: 44px; width: auto; }
.footer-brand .nav-brand { justify-content: center; gap: 0; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; padding-top: 10px; }
.footer-links a { font-size: 13.5px; color: var(--dim); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold); }
.footer-def {
  border-top: 1px solid var(--line); padding: 28px 0;
  font-size: 13.5px; color: var(--faint); max-width: 860px; line-height: 1.8;
}
.footer-def b { color: var(--dim); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--faint);
}

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1360px) {
  .nav, .nav.scrolled { height: 72px; }
  .nav-logo img, .nav.scrolled .nav-logo img { height: 48px; }
  .nav-cta { display: none; }
  .nav.open {
    height: auto;
    background: rgba(6, 10, 20, 0.98);
    border-bottom-color: var(--line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .nav.open .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 72px auto auto auto;
    gap: 0 16px;
  }
  .nav.open .nav-logo { grid-column: 1; grid-row: 1; }
  .nav.open .nav-toggle { grid-column: 2; grid-row: 1; }
  .nav.open .nav-links {
    grid-column: 1 / -1; grid-row: 2;
    display: flex; flex-direction: column; gap: 0;
    position: static; margin: 0; padding: 8px 0 12px;
    border-top: 1px solid var(--line);
  }
  .nav.open .nav-links a {
    display: block; padding: 14px 0; font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-lang {
    grid-column: 1 / -1; grid-row: 3; justify-self: start;
    display: flex; position: static; margin: 16px 0 0;
  }
  .nav.open .nav-cta {
    grid-column: 1 / -1; grid-row: 4;
    position: static; width: 100%; margin: 16px 0 22px;
    display: flex; align-items: center; justify-content: center;
  }
  .hero { padding-top: 120px; }
}

@media (max-width: 1240px) {
  .nav .container { gap: 20px; }
  .nav-brand-name { font-size: 1.5rem; }
  .nav .nav-brand-name { font-size: 1.65rem; }
  .nav-logo img, .nav.scrolled .nav-logo img { height: 48px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 15.5px; }
}

@media (max-width: 1100px) {
  .nav .container { gap: 12px; }
  .nav-logo { gap: 10px; }
  .nav .nav-brand-name { font-size: 1.35rem; }
  .nav-logo img { height: 46px; }
  .nav.scrolled .nav-logo img { height: 42px; }
  .nav-links { gap: 13px; }
  .nav-links a { font-size: 13.5px; letter-spacing: 0.01em; }
  .nav-lang { padding: 4px 5px; font-size: 12px; }
}

@media (max-width: 800px) {
  .nav-links a[href$="/blog.html"],
  .nav-links a[href$="/blogue.html"] { display: none; }
  .nav-toggle { display: block; margin-left: 0; }
  .nav.open .nav-links a { display: block; }
}

@media (max-width: 760px) {
  .nav-links a[href$="/about.html"],
  .nav-links a[href$="/a-propos.html"] { display: none; }
  .nav.open .nav-links a { display: block; }
}

@media (max-width: 680px) {
  .nav-links a[href="/en/"],
  .nav-links a[href="/fr/"] { display: none; }
  .nav.open .nav-links a { display: block; }
}

@media (max-width: 620px) {
  .nav-links, .nav-cta { display: none; }
  .nav-lang { display: flex; margin-left: auto; }
  .nav-toggle { margin-left: 0; }
}
@media (min-width: 1025px) {
  .path-step { min-height: 3.1em; }
  .path-card h3 { min-height: 2.5em; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: calc(var(--np-nav-height-compact) + 48px); }
  .term { max-width: 640px; }
  .path { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .path::before { display: none; }
  .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .portrait { max-width: 380px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-brand { min-width: 0; }
  .nav-brand-tag { display: none; }
  .nav-brand-name { font-size: 1.25rem; letter-spacing: 0.02em; }
  .nav .nav-brand-name { font-size: 1.35rem; }
  .nav-logo img, .nav.scrolled .nav-logo img { height: 44px; }
  .section { padding: 76px 0; }
  .finding { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .path { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px 16px 14px; }
  .stat-val { font-size: 25px; }
  .signal-form { flex-direction: column; }
  .cform .row { grid-template-columns: 1fr; }
  .term-body { min-height: 252px; font-size: 12px; }
  .hero { padding-bottom: 40px; }
  .hero h1 { font-size: clamp(2.05rem, 8.5vw, 2.75rem); }
  .hero h1.hero-title-fr { font-size: clamp(1.8rem, 7.6vw, 2.35rem); }
  .hero .hero-pillars {
    width: 186.916%; max-width: none; margin-top: 24px;
    transform: scale(0.535); transform-origin: top left;
  }
  .hero-pillars .dot { margin: 0 8px; }
  .hero-diagnostic { grid-template-columns: 1fr; }
  .hero-diagnostic .btn { grid-column: 1; grid-row: 2; width: 100%; }
  .hero .hero-diagnostic-note { grid-column: 1; grid-row: 3; }
}
