/* ═══════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --bg:        #080b0f;
  --surface:   #0e1318;
  --surface2:  #141b22;
  --border:    rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.14);
  --green:     #00e676;
  --green-dim: rgba(0,230,118,0.1);
  --red:       #ff4444;
  --yellow:    #ffd740;
  --text:      #e8edf2;
  --muted:     #5a6a7a;
  --muted2:    #333e4a;
  --mono:      'Space Mono', monospace;
  --sans:      'Barlow', sans-serif;
  --max:       1140px;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════════
   ACCESSIBILITÉ
═══════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus { top: 1rem; }

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

/* Focus visible pour navigation clavier */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   COULEURS UTILITAIRES
═══════════════════════════════════════════════════════ */
.c-green { color: var(--green); }
.c-red   { color: var(--red); }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(8,11,15,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.logo {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 7px var(--green);
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.nav-pill {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--green);
  border: 1px solid rgba(0,230,118,0.28);
  background: var(--green-dim);
  padding: 0.28rem 0.75rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3rem 5rem;
  max-width: var(--max);
  margin: 0 auto;
}

/* Terminal */
.terminal {
  position: absolute;
  top: 8.5rem; right: 0;
  width: 400px;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  animation: fadeSlide 0.8s ease 0.7s forwards;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 0.82; transform: translateY(0); }
}

.t-bar {
  background: var(--surface2);
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid var(--border);
}

.t-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.t-dot.r { background: #ff5f57; }
.t-dot.y { background: #ffbd2e; }
.t-dot.g { background: #28c840; }

.t-title {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--muted);
  margin-left: 0.4rem;
}

.t-body {
  padding: 1.1rem 1.2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.95;
}

.t-row  { display: flex; gap: 0.55rem; }
.t-time { color: var(--muted); flex-shrink: 0; }
.t-ok   { color: var(--green); }
.t-err  { color: var(--red); }
.t-alt  { color: var(--yellow); }
.t-inf  { color: #64b5f6; }
.t-dim  { color: #8a9aaa; }

.t-cur {
  display: inline-block;
  width: 6px; height: 12px;
  background: var(--green);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* Hero text */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: up 0.55s ease 0.05s forwards;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

@keyframes up {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}

h1 {
  font-family: var(--sans);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.035em;
  max-width: 600px;
  opacity: 0;
  animation: up 0.55s ease 0.13s forwards;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 490px;
  margin-top: 1.4rem;
  line-height: 1.75;
  opacity: 0;
  animation: up 0.55s ease 0.21s forwards;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

/* Status box */
.status-box {
  margin-top: 2.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  max-width: 420px;
  opacity: 0;
  animation: up 0.55s ease 0.29s forwards;
}

.sb-head {
  padding: 0.65rem 1.1rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.63rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sb-live { display:flex; align-items:center; gap:0.35rem; color:var(--green); }
.sb-live-dot {
  width:5px; height:5px;
  background:var(--green);
  border-radius:50%;
  animation: pulse 1.4s ease-in-out infinite;
}

.sb-list { list-style: none; }

.sb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.sb-row:last-child { border-bottom: none; }

.sb-url  { font-family: var(--mono); font-size: 0.67rem; color: var(--text); }
.sb-up   { font-family: var(--mono); font-size: 0.67rem; color: var(--green); }
.sb-down { font-family: var(--mono); font-size: 0.67rem; color: var(--red); }
.sb-ms   { font-family: var(--mono); font-size: 0.67rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   FORMULAIRE WAITLIST
═══════════════════════════════════════════════════════ */
.form-wrap {
  margin-top: 2.4rem;
  opacity: 0;
  animation: up 0.55s ease 0.37s forwards;
}

.form-label {
  font-family: var(--mono);
  font-size: 0.63rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.form-row {
  display: flex;
  max-width: 420px;
  border: 1px solid var(--border-hi);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-row:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}

.form-input {
  flex: 1;
  background: var(--surface);
  border: none; outline: none;
  padding: 0.85rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text);
  min-width: 0;
}
.form-input::placeholder { color: var(--muted2); }

.form-btn {
  background: var(--green);
  color: var(--bg);
  border: none;
  padding: 0.85rem 1.3rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.form-btn:hover  { background: #1fffa0; }
.form-btn:active { background: #00c060; }

.form-ok {
  display: none;
  background: var(--green-dim);
  border: 1px solid rgba(0,230,118,0.28);
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  max-width: 420px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--green);
  line-height: 1.6;
}

.form-note {
  font-family: var(--mono);
  font-size: 0.67rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* ═══════════════════════════════════════════════════════
   MÉTRIQUES
═══════════════════════════════════════════════════════ */
.metrics {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow-x: auto;
}

.metrics dl {
  display: flex;
  max-width: var(--max);
  margin: 0 auto;
}

.metric {
  flex: 1;
  min-width: 130px;
  padding: 1.4rem 2rem;
  border-right: 1px solid var(--border);
}
.metric:last-child { border-right: none; }

.metric-val {
  font-family: var(--mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  order: 2;
}
.metric-val .u { font-size: 0.85rem; color: var(--muted); }
.metric-label {
  font-size: 0.77rem;
  color: var(--muted);
  margin-top: 0.25rem;
  order: 1;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS COMMUNES
═══════════════════════════════════════════════════════ */
section.mid {
  position: relative; z-index: 2;
  padding: 5.5rem 3rem;
  max-width: var(--max);
  margin: 0 auto;
}

.tag {
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.1rem;
}

.sec-title {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 580px;
}

.sec-body {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
  max-width: 540px;
  margin-top: 0.9rem;
}
.sec-body strong { color: var(--text); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   SECTION PROBLÈME
═══════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
  align-items: start;
}

.prose p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 1.1rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--text); }

/* Email card */
.email-card {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.82rem;
}

.ec-bar {
  display: block;
  background: var(--surface2);
  padding: 0.6rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.ec-subj {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border);
}

.ec-subj .lbl,
.ec-body .lbl {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.ec-subj .val { font-weight: 700; font-size: 0.88rem; }

.ec-meta {
  padding: 0.65rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--muted);
  line-height: 1.75;
  border-bottom: 1px solid var(--border);
}
.ec-meta p { margin: 0; }

.ec-body {
  padding: 1.1rem;
  line-height: 1.8;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.8rem;
  align-items: baseline;
}

.ec-body dd { margin: 0; margin-bottom: 0.6rem; }
.ec-body dd:last-of-type { margin-bottom: 0; }

.ec-note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════
   COMMENT ÇA MARCHE
═══════════════════════════════════════════════════════ */
.dark-band {
  position: relative; z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5.5rem 3rem;
}
.dark-inner { max-width: var(--max); margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  margin-top: 2.8rem;
  counter-reset: steps;
}

.step { position: relative; }
.step::after {
  content: '→';
  position: absolute;
  right: -1.3rem; top: 0.15rem;
  color: var(--muted2);
  font-size: 0.95rem;
  pointer-events: none;
}
.step:last-child::after { display: none; }

.step-n {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.step h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.45rem; }
.step p  { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2.8rem;
}

.feat {
  background: var(--surface);
  padding: 1.8rem 2.2rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: background 0.18s;
}
.feat:hover { background: var(--surface2); }

.feat-ico {
  width: 34px; height: 34px;
  background: var(--green-dim);
  border: 1px solid rgba(0,230,118,0.18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.feat h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; }
.feat p  { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   TABLEAU COMPARATIF
═══════════════════════════════════════════════════════ */
.table-wrap { overflow-x: auto; margin-top: 2.8rem; }

.vs {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.84rem;
}

.vs th, .vs td {
  padding: 0.9rem 1.3rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.vs thead th {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--surface2);
  color: var(--muted);
}

.vs thead th:not(:first-child) { text-align: center; }

.vs tbody td {
  background: var(--surface);
  color: var(--muted);
}
.vs tbody tr:last-child td { border-bottom: none; }
.vs tbody td:not(:first-child) { text-align: center; }
.vs tbody th {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}

.vs tbody tr.hl td,
.vs tbody tr.hl th { background: rgba(0,230,118,0.04); }
.vs tbody tr.hl th { color: var(--green); }

.ck { color: var(--green); font-weight: 700; }
.cx { color: var(--red); }
.cw { color: var(--yellow); font-size: 0.78rem; }

/* ═══════════════════════════════════════════════════════
   TARIFS
═══════════════════════════════════════════════════════ */
.pricing-band {
  position: relative; z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5.5rem 3rem;
}
.pricing-inner { max-width: var(--max); margin: 0 auto; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2.8rem;
}

.plan { background: var(--bg); padding: 2.3rem; position: relative; }
.plan.hi {
  background: rgba(0,230,118,0.035);
  border-left: 1px solid rgba(0,230,118,0.18);
  border-right: 1px solid rgba(0,230,118,0.18);
}

.plan-name {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.plan-price {
  font-family: var(--mono);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
}
.plan-price .cur {
  font-size: 1.1rem;
  margin-top: 0.35rem;
  color: var(--muted);
}

.plan-per {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.28rem;
  margin-bottom: 1.6rem;
}

.plan-badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  background: var(--green);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
}

.plan ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.plan ul li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}
.plan ul li::before {
  content: '→';
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  border: 1px solid var(--border-hi);
  background: transparent;
  color: var(--text);
}
.plan-btn:hover { border-color: var(--green); color: var(--green); }
.plan-btn.p { background: var(--green); color: var(--bg); border-color: var(--green); }
.plan-btn.p:hover { background: #1fffa0; }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-section { padding-top: 0; }

.faq-list {
  margin-top: 2.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  max-width: 720px;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--surface);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--surface2); }
.faq-q[aria-expanded="true"] { color: var(--green); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-a {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  background: var(--surface);
}
.faq-a[hidden] { display: none; }

/* ═══════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════ */
.cta-band {
  position: relative; z-index: 2;
  padding: 6.5rem 3rem;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: 'UP';
  position: absolute;
  font-family: var(--sans);
  font-size: 38vw;
  font-weight: 900;
  color: rgba(0,230,118,0.018);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
  aria-hidden: true;
}

.cta-band h2 {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.1;
  position: relative;
}
.cta-band p {
  color: var(--muted);
  font-size: 0.97rem;
  margin-top: 0.9rem;
  font-weight: 300;
  position: relative;
}

.cta-form {
  max-width: 400px;
  margin: 2rem auto 0;
  position: relative;
}

.cta-note {
  font-family: var(--mono);
  font-size: 0.63rem;
  color: var(--muted);
  margin-top: 0.75rem;
  position: relative;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  position: relative; z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ft-left {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ft-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.ft-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ft-links a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s;
}
.ft-links a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS SCROLL
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }

/* Respect du paramètre prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .terminal { display: none; }
}

@media (max-width: 860px) {
  nav { padding: 1rem 1.4rem; }
  .hero { padding: 7.5rem 1.4rem 4rem; }

  .metrics dl { flex-wrap: wrap; }
  .metric { min-width: 50%; border-bottom: 1px solid var(--border); }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(3), .metric:nth-child(4) { border-bottom: none; }

  section.mid  { padding: 4rem 1.4rem; }
  .dark-band   { padding: 4rem 1.4rem; }
  .pricing-band { padding: 4rem 1.4rem; }
  .cta-band    { padding: 4rem 1.4rem; }

  footer {
    padding: 1.6rem 1.4rem;
    justify-content: center;
    text-align: center;
  }
  .ft-links { justify-content: center; }

  .two-col    { grid-template-columns: 1fr; gap: 2.2rem; }
  .steps      { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .feat-grid  { grid-template-columns: 1fr; }
  .plans      { grid-template-columns: 1fr; }
  .vs         { font-size: 0.76rem; }
  .vs th, .vs td { padding: 0.75rem 0.9rem; }
}

@media (max-width: 520px) {
  .steps      { grid-template-columns: 1fr; }
  .metric     { min-width: 100%; border-right: none !important; }
  .metric:last-child { border-bottom: none; }
  .form-btn   { padding: 0.85rem 0.9rem; font-size: 0.8rem; }
  h1          { font-size: 2.2rem; }
  .nav-pill   { display: none; }
}
