/* ——— Nabojo landing — brutalist / néo-rétro / dither ——— */

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Andika:ital,wght@0,400;0,700;1,400;1,700&family=VT323&display=swap');

/* ——— Typescale (Major Third 1.25) ———
  Display/Hero : 76px
  H1 section   : 61px
  H2 sous-titre: 49px
  H3 card      : 24px
  Body         : 16px
  Caption      : 13px
——————————————————————————————————————— */
:root {
  --fs-display: clamp(48px, 6.5vw, 76px);
  --fs-h1:      clamp(36px, 5vw, 61px);
  --fs-h2:      clamp(28px, 4vw, 49px);
  --fs-h3:      24px;
  --fs-body:    19px;
  --fs-caption: 13px;
}

:root {
  --paper: #EFEAE0;
  --ink: #0A0A0A;
  --ink-2: #1a1a1a;
  --rule: #0A0A0A;
  --muted: #6b6b6b;
  --accent: #FF3B1F; /* orange/red — tweakable */
  --accent-2: #6b6b6b;
  --grid: rgba(10,10,10,0.06);
}

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

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Andika', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
  z-index: 1000;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Brand typography */
.display {
  font-family: 'Andika', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
}

.mono { font-family: 'VT323', monospace; }

/* Container */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Horizontal rule — thick brutalist */
.rule {
  border: 0;
  border-top: 2px solid var(--ink);
  margin: 0;
}
.rule-thick {
  border: 0;
  border-top: 6px solid var(--ink);
  margin: 0;
}

/* Marquee-style eyebrow */
.eyebrow {
  font-family: 'VT323', monospace;
  font-size: 19px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  background-image:
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(10,10,10,0.04) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(10,10,10,0.04) 24px 25px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1320px;
  margin: 0 auto;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Andika', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-logo img {
  height: 63px;
  width: auto;
  image-rendering: pixelated;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}
.nav-links a:hover { border-bottom-color: var(--accent); }
.nav-cta {
  background: var(--muted);
  color: var(--paper);
  padding: 12px 18px;
  font-family: 'VT323', monospace;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 4px 4px 0 var(--ink);
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}
.nav-badge {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.15em;
  background: var(--accent);
  color: var(--ink);
  padding: 4px 8px;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
}

/* ——— Sections ——— */
section { position: relative; }

.section-head {
  padding: 80px 0 40px;
}
.section-label {
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.section-label .num {
  background: var(--muted);
  color: var(--paper);
  padding: 2px 6px;
  font-size: 19px;
}

.section-head h2 {
  font-size: var(--fs-h1);
}


.hero {
  padding: 60px 0 40px;
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-headline {
  font-size: var(--fs-display);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-transform: uppercase;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.hero-headline .accent { color: var(--accent); }
.hero-headline .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  display: inline-block;
  padding-bottom: 0.05em;
}
.hero-sub {
  font-size: var(--fs-body);
  line-height: 1.4;
  max-width: 580px;
  margin-top: 56px;
  color: var(--ink);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn {
  font-family: 'VT323', monospace;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 24px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn .arrow {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 10px; height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* ticker */
.ticker {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 18px 0;
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 40px; }
.ticker-track span::after {
  content: '◆';
  color: var(--accent);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Stat / problem strip ——— */
.stats {
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.stats-header {
  padding: 56px 32px 48px;
  text-align: center;
  border-bottom: 1px solid rgba(239,234,224,0.12);
}
.stats-intro {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 8px;
}
.stats-intro-hl {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: var(--accent);
  color: var(--ink);
  display: inline-block;
  padding: 0 6px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 56px 0;
  align-items: center;
}
.stat {
  padding: 0 48px;
  border-right: 1px solid rgba(239,234,224,0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.stat:last-child { border-right: none; }
.stat-featured {
  padding: 0 48px;
}
.stat-num {
  font-family: 'Andika', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.stat-label {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.5;
  max-width: 260px;
  text-align: center;
  color: rgba(239,234,224,0.85);
}
.stat-label strong {
  font-weight: 700;
  color: var(--paper);
}
.stat-src {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,234,224,0.4);
}

/* ——— Mission / big statement ——— */
.statement {
  padding: 120px 0;
  border-bottom: 2px solid var(--ink);
}
.statement-quote {
  font-family: 'Andika', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.statement-quote .hl {
  background: var(--accent);
  color: var(--paper);
  padding: 0.04em 0.1em 0.05em;
  display: inline-block;
  line-height: 0.95;
  vertical-align: baseline;
}
.statement-footer {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.statement-footer span {
  display: flex; align-items: center; gap: 8px;
}
.statement-footer span::before {
  content: ''; width: 10px; height: 10px; background: var(--ink);
}

/* ——— Pillars ——— */
.pillars {
  padding: 40px 0 120px;
  border-bottom: 2px solid var(--ink);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
}
.pillar {
  background: var(--paper);
  padding: 40px;
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.pillar + .pillar { border-left: 2px solid var(--ink); }
.pillar-num-old {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-caption);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.pillar-title-old {
  font-family: 'Andika', sans-serif;
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.pillar-text-old {
  font-size: var(--fs-body);
  line-height: 1.5;
}
.pillar-illu {
  background: var(--ink);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.pillar-illu img, .pillar-illu video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ——— Device showcase ——— */
.device-section {
  padding: 120px 0;
  border-bottom: 2px solid var(--ink);
  text-align: center;
}
.device-section h2 {
  font-size: var(--fs-h1);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.device-section .sub {
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 48px;
}
.device-wrap {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  perspective: 2000px;
}
.device-photo {
  position: relative;
  width: min(720px, 80vw);
  display: flex;
  justify-content: center;
}
.device-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.device-photo .device-label {
  position: absolute;
  bottom: -28px;
  right: 0;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  color: var(--ink);
}
.device {
  width: min(900px, 90vw);
  aspect-ratio: 1.6/1;
  background: #1a1a1a;
  border: 6px solid var(--ink);
  border-radius: 18px;
  padding: 40px 30px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  box-shadow: 12px 12px 0 var(--ink);
  position: relative;
}
.device-screen {
  background: #c9c3b5;
  border: 2px solid #000;
  overflow: hidden;
  position: relative;
  image-rendering: pixelated;
}
.device-screen.illu {
  background: var(--ink);
}
.device-screen.illu img {
  width: 100%; height: 100%; object-fit: cover;
  image-rendering: pixelated;
  object-position: center;
}
.device-screen.text {
  padding: 24px 20px;
  font-family: 'VT323', monospace;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  text-align: left;
  overflow: hidden;
}
.device-screen.text p { margin-bottom: 10px; }
.device-screen.text .q {
  border: 1.5px solid #1a1a1a;
  padding: 8px 10px;
  margin-top: 12px;
  background: rgba(0,0,0,0.04);
  font-weight: 500;
}
.device-controls {
  grid-column: 1 / -1;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.device-btn {
  background: #0a0a0a;
  border: 1.5px solid #333;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #888;
  font-family: 'VT323', monospace;
  font-size: 16px;
  padding: 0 14px;
  flex: 1;
}
.device-dial {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #0a0a0a;
  border: 1.5px solid #333;
}
.device-label {
  position: absolute;
  bottom: -30px; right: 0;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ——— Verbatim / testimonials ——— */
.verbatim {
  padding: 120px 0;
  border-bottom: 2px solid var(--ink);
}
.verbatim-head {
  text-align: center;
  margin-bottom: 80px;
}
.verbatim-head h2 {
  font-size: var(--fs-h1);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.verbatim-head p {
  font-size: var(--fs-body);
  margin-top: 32px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
.verbatim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  border: 2px solid var(--ink);
  padding: 28px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-height: 260px;
}
.quote::before {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 36px; height: 36px;
  background: var(--ink);
}
.quote-icon {
  position: absolute;
  top: 4px; right: 6px;
  width: 24px; height: 24px;
  color: var(--paper);
  z-index: 1;
  font-family: 'Andika', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 0.8;
}
.quote-text {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
  z-index: 2;
}
.quote-author {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quote-avatar {
  width: 32px; height: 32px;
  background: var(--ink);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.quote-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ——— How it works ——— */
.how {
  padding: 120px 0;
  border-bottom: 2px solid var(--ink);
}
.how-head { margin-bottom: 60px; }
.how-head h2 {
  font-size: var(--fs-h1);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 700;
  text-wrap: balance;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.how-step {
  padding: 40px 28px;
  border-right: 2px solid var(--ink);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.how-step:last-child { border-right: none; }
.step-num {
  font-family: 'VT323', monospace;
  font-size: 19px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-num::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent);
}
.step-title {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.step-desc { font-size: var(--fs-body); line-height: 1.5; }

/* ——— Benefits list ——— */
.benefits {
  padding: 120px 0;
  border-bottom: 2px solid var(--ink);
}
.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.benefits-head h2 {
  font-size: var(--fs-h1);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 0.08em;
}
.benefits-head h2 em {
  display: inline-block;
  padding-bottom: 0.05em;
}
.benefits-list {
  display: flex;
  flex-direction: column;
}
.benefit {
  padding: 28px 0;
  border-top: 2px solid var(--ink);
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 20px;
  align-items: baseline;
}
.benefit:last-child { border-bottom: 2px solid var(--ink); }
.benefit-num {
  font-family: 'VT323', monospace;
  font-size: 19px;
  letter-spacing: 0.15em;
}
.benefit-title {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.benefit-desc {
  font-size: var(--fs-body);
  line-height: 1.5;
  margin-top: 8px;
  color: var(--ink-2);
  text-transform: none;
  font-weight: 400;
}
.benefit-arrow {
  justify-self: end;
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1;
}

/* ——— Roadmap ——— */
.roadmap {
  padding: 120px 0;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.roadmap h2 {
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 700;
  text-wrap: balance;
  padding-bottom: 0.08em;
  margin-bottom: 60px;
  color: var(--paper);
}
.roadmap .section-label {
  color: var(--paper);
}
.roadmap .section-label .num {
  background: var(--paper);
  color: var(--ink);
}
.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.roadmap-track::before {
  content: '';
  position: absolute;
  top: 32px; left: 0; right: 0;
  height: 2px;
  background: var(--paper);
}
.phase {
  padding: 0 24px;
  position: relative;
}
.phase-dot {
  width: 18px; height: 18px;
  background: var(--paper);
  border-radius: 50%;
  position: absolute;
  top: 24px;
  left: 20px;
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 3px var(--paper);
}
.phase.active .phase-dot { background: var(--accent); }
.phase-label {
  font-family: 'VT323', monospace;
  font-size: 19px;
  letter-spacing: 0.2em;
  margin-top: 70px;
  text-transform: uppercase;
  opacity: 0.7;
}
.phase-date {
  font-family: 'VT323', monospace;
  font-size: 32px;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-top: 8px;
  color: var(--paper);
}
.phase-title {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--accent);
}
.phase-items {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phase-items li {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-body);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.phase-date-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.phase-date-row .phase-date {
  margin-top: 0;
}
.phase-current {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'VT323', monospace;
  font-size: 19px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  padding: 2px 10px 2px 6px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.phase-cursor {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ——— Newsletter ——— */
.newsletter {
  padding: 120px 0;
  border-bottom: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.newsletter-bg {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(10,10,10,0.04) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(10,10,10,0.04) 24px 25px);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.newsletter h2 {
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.newsletter h2 .hl {
  background: var(--accent);
  color: var(--paper);
  padding: 0.04em 0.1em 0.05em;
  display: inline-block;
  line-height: 0.95;
  vertical-align: baseline;
}
.newsletter p {
  font-size: var(--fs-body);
  margin-top: 28px;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 40px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--paper);
}
.newsletter-form input {
  flex: 1;
  padding: 18px 20px;
  border: none;
  background: transparent;
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: var(--ink);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--muted);
  color: var(--paper);
  border: none;
  border-left: 2px solid var(--ink);
  padding: 0 28px;
  font-family: 'VT323', monospace;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.15s;
}
.newsletter-form button:hover { background: var(--accent); color: var(--ink); }
.newsletter-footer {
  margin-top: 24px;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}
.newsletter-ornament {
  position: absolute;
  width: 180px;
  opacity: 0.6;
  image-rendering: pixelated;
}
.newsletter-ornament.left { left: 3%; top: 50%; transform: translateY(-50%) rotate(-10deg); }
.newsletter-ornament.right { right: 3%; top: 50%; transform: translateY(-50%) rotate(10deg); }

/* ——— Footer ——— */
.footer {
  padding: 60px 0 40px;
  background: var(--ink);
  color: var(--paper);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(239,234,224,0.2);
}
.footer-brand .nav-logo { color: var(--paper); }
.footer-brand p {
  font-family: 'VT323', monospace;
  font-size: 19px;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
  opacity: 0.7;
}
.footer-col h3 {
  font-family: 'VT323', monospace;
  font-size: 19px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-body);
  border-bottom: 1px solid transparent;
}
.footer-col a:hover { border-bottom-color: var(--accent); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.1em;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 16px;
}

/* Tweaks panel */
.tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 20px;
  z-index: 200;
  box-shadow: 6px 6px 0 var(--ink);
  width: 280px;
  display: none;
}
.tweaks.open { display: block; }
.tweaks h3 {
  font-family: 'VT323', monospace;
  font-size: 17px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tweaks-close {
  cursor: pointer;
  background: none;
  border: 0;
  font-family: 'Andika', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.tweak-row {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.tweak-row label {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}
.color-row { display: flex; gap: 6px; }
.color-sw {
  width: 32px; height: 32px;
  border: 2px solid var(--ink);
  cursor: pointer;
}
.color-sw.active { outline: 3px solid var(--ink); outline-offset: 2px; }

/* ——— Hero stack (nouveau layout) ——— */
.hero-stack {
  padding: 0;
  border-bottom: 2px solid var(--ink);
  overflow: visible;
  position: relative;
}
.hero-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(10,10,10,0.04) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(10,10,10,0.04) 24px 25px);
  -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 65%);
  mask-image: linear-gradient(to bottom, black 45%, transparent 65%);
}
.hero-top {
  border-bottom: none;
  padding: 56px 0 48px;
  position: relative;
}
.hero-top::after {
  display: none;
}
.hero-top-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-stack .hero-headline {
  font-size: var(--fs-display);
  line-height: 0.93;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.accent-bg {
  background: var(--accent);
  color: var(--paper);
  padding: 0.04em 0.1em 0.05em;
  display: inline-block;
  line-height: 0.95;
  vertical-align: baseline;
}
/* Hero : boîte plus généreuse pour les diacritiques */
.hero-stack .hero-headline .accent-bg {
  background: var(--accent);
  color: var(--paper);
  padding: 0.08em 0.1em 0.1em;
  display: inline-block;
  line-height: 1.1;
  vertical-align: baseline;
}
.hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 28px;
  padding-bottom: 4px;
}
.hero-ctas {
  display: flex;
  align-items: flex-start;
}
.hero-stack .hero-sub {
  font-size: var(--fs-h3);
  line-height: 1.3;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  margin-top: 0;
  font-weight: 400;
  text-align: justify;
  align-self: stretch;
}
/* CTA flèche bas */
.btn-down .arrow { display: none; }

/* Bandeau ambiance — fondu haut et bas */
.hero-bandeau-bottom {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--paper);
}
.hero-bandeau-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-bandeau-bottom::before,
.hero-bandeau-bottom::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.hero-bandeau-bottom::before {
  top: 0;
  background: linear-gradient(to bottom, var(--paper), transparent);
}
.hero-bandeau-bottom::after {
  bottom: 0;
  background: linear-gradient(to top, var(--paper), transparent);
}

/* Liseuse à cheval entre texte et bandeau */
.hero-device-straddle {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-bottom: -180px;
  pointer-events: none;
}
.hero-device-straddle img {
  width: min(700px, 80vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(10,10,10,0.18));
}
.hero-device-label {
  position: absolute;
  left: calc(50% + min(352px, 40.5vw) + 4px);
  top: 30%;
  transform: translateY(-50%);
  writing-mode: vertical-lr;
  font-family: 'VT323', monospace;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.35;
  color: var(--ink);
  white-space: nowrap;
}

/* ——— Hero two-col (ancien, conservé pour compatibilité) ——— */
.hero-two-col {
  padding: 0;
  border-bottom: 2px solid var(--ink);
}
.hero-two-col .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: center;
  min-height: calc(100svh - 82px);
}
.hero-text {
  padding: 80px 64px 80px 0;
  border-right: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-text::before {
  content: '◆';
  position: absolute;
  color: var(--accent);
  font-size: 14px;
  top: 32px; left: 0;
}
.hero-device {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.hero-device-inner {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-device-inner img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(16px 16px 0 rgba(10,10,10,0.12));
}
.hero-device-inner .device-label {
  position: absolute;
  bottom: -24px;
  right: 0;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
  color: var(--ink);
}

/* ——— Bandeau ambiance (statique) ——— */
.bandeau-ambiance {
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  height: 120px;
  background: var(--ink);
}
.bandeau-ambiance img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ——— Legacy hero-inner fallback ——— */
.hero-inner {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.hero-inner::before, .hero-inner::after {
  content: '◆';
  position: absolute;
  color: var(--accent);
  font-size: 14px;
}
.hero-inner::before { top: 32px; left: 32px; }
.hero-inner::after { bottom: 32px; right: 32px; }

/* ——— Piliers (concept section) ——— */
.pillar-num {
  font-family: 'VT323', monospace;
  font-size: 19px;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.pillar-title {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pillar-text {
  font-size: var(--fs-body);
  line-height: 1.6;
  opacity: 0.85;
}
.concept-slogans {
  margin-top: 40px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.concept-slogan {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.benefits-caption {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  margin-top: 32px;
  line-height: 1.4;
  max-width: 380px;
  opacity: 0.7;
}
.bandeau-problem-text {
  font-family: 'Andika', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* ——— Full-bleed divider with illustrations ——— */
.bleed-divider {
  position: relative;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
}
.bleed-divider img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}
.bleed-divider.bleed-short img { max-height: 360px; }
.bleed-caption {
  position: absolute;
  bottom: 20px;
  left: 32px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 8px 14px;
  border: 1.5px solid var(--paper);
}

/* Remove dither overlay on real dithered assets */
.pillar-illu {
  background: var(--ink);
}
.pillar-illu img {
  filter: contrast(1.05);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-top-inner { gap: 40px; }
}
@media (max-width: 900px) {
  .hero-top-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-aside { padding-bottom: 0; }
  .hero-device-straddle { margin-bottom: -120px; }
  .hero-device-straddle img { width: min(500px, 90vw); }
  .hero-inner { padding: 80px 24px; }
  .stats-grid, .pillars-grid, .how-steps, .verbatim-grid { grid-template-columns: 1fr; }
  .pillar + .pillar, .how-step { border-left: none; border-right: none; border-top: 2px solid var(--ink); }
  .benefits-inner { grid-template-columns: 1fr; gap: 40px; }
  .roadmap-track { grid-template-columns: 1fr; }
  .roadmap-track::before { display: none; }
  .phase { padding-bottom: 40px; border-left: 2px solid var(--paper); padding-left: 30px; margin-left: 20px; }
  .phase-dot { left: -11px; top: 0; }
  .phase-label { margin-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(239,234,224,0.15); padding: 40px 24px; }
  .stat:last-child { border-bottom: none; }
  .stat-featured { margin: 0; }
  .device { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .newsletter-ornament { display: none; }
}

/* Dither overlay for illustrations (stronger halftone tint) */
.dither {
  position: relative;
}
.dither::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,0,0,0.2) 1px, transparent 1.5px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ——— Concept rows alternés (section 02) ——— */
.concept-rows {
  border: 2px solid var(--ink);
  margin-top: 60px;
}
.concept-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--ink);
}
.concept-row:last-child { border-bottom: none; }

.concept-row-image {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink);
  border-right: 2px solid var(--ink);
}
.concept-row--reverse .concept-row-image {
  border-right: none;
  border-left: 2px solid var(--ink);
  order: 2;
}
.concept-row--reverse .concept-row-text { order: 1; }

.concept-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-row-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(239,234,224,0.04) 0px,
      rgba(239,234,224,0.04) 1px,
      transparent 1px,
      transparent 8px
    );
}
.concept-row-image--placeholder span {
  font-family: 'VT323', monospace;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.3;
  text-align: center;
  padding: 20px;
}

.concept-row-text {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .concept-row,
  .concept-row--reverse {
    grid-template-columns: 1fr;
  }
  .concept-row-image {
    border-right: none;
    border-bottom: 2px solid var(--ink);
    aspect-ratio: 16/9;
  }
  .concept-row--reverse .concept-row-image {
    border-left: none;
    border-bottom: 2px solid var(--ink);
    order: 0;
  }
  .concept-row--reverse .concept-row-text { order: 1; }
  .hero-stack .hero-sub { text-align: left; }
}


@keyframes rise {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
}
.reveal.in {
  animation: rise 0.9s cubic-bezier(.2,.8,.2,1) forwards;
}
.reveal.in.d1 { animation-delay: 0.1s; }
.reveal.in.d2 { animation-delay: 0.25s; }
.reveal.in.d3 { animation-delay: 0.4s; }
.reveal.in.d4 { animation-delay: 0.55s; }

/* ——— Bandeaux 8:1 — min-height mobile ——— */
@media (max-width: 768px) {
  .bandeau-inline,
  .bleed-divider,
  .hero-bandeau-bottom {
    min-height: 180px;
  }
  .bandeau-inline img,
  .bleed-divider img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .statement-footer {
    flex-wrap: wrap;
    white-space: normal;
  }
}
