:root{
  --bg:#0b1020;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --line:rgba(255,255,255,.12);
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --r:18px;
  --max:1080px;
  --pad:clamp(16px, 3vw, 26px);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font:16px/1.6 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% -10%, rgba(88, 166, 255, .35), transparent 60%),
    radial-gradient(700px 450px at 85% 0%, rgba(255, 122, 88, .22), transparent 55%),
    radial-gradient(900px 650px at 40% 110%, rgba(120, 255, 205, .18), transparent 55%),
    linear-gradient(180deg, #070a14, var(--bg));
  background-repeat:no-repeat;
  background-attachment:fixed;
  overflow-x:hidden;
}

a{color:inherit}

img{
  max-width:100%;
  height:auto;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7,10,20,.78), rgba(7,10,20,.45));
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:650;
  letter-spacing:.2px;
  white-space:nowrap;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,255,255,.0)),
    linear-gradient(135deg, rgba(88,166,255,.9), rgba(255,122,88,.75));
  box-shadow: 0 10px 25px rgba(88,166,255,.22);
}

.links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}

.pill{
  text-decoration:none;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color:var(--muted);
  transition:.2s ease;
  font-size:14px;
}

.pill:hover{
  background:rgba(255,255,255,.07);
  color:var(--text);
  transform:translateY(-1px);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(88,166,255,.9), rgba(255,122,88,.85));
  color:#07101f;
  font-weight:700;
  text-decoration:none;
  box-shadow: var(--shadow);
  transition:.2s ease;
  white-space:nowrap;
}

.btn:hover{
  transform:translateY(-1px);
  filter:saturate(1.05);
}

.btn.secondary{
  background: rgba(255,255,255,.05);
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}

main{padding:42px 0 56px}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
  margin-top:8px;
}

@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
  header{position:relative}
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card .inner{
  padding:clamp(18px, 3vw, 28px);
}

h1{
  font-size: clamp(28px, 3.3vw, 44px);
  line-height:1.12;
  margin:0 0 10px;
  letter-spacing:-.6px;
}

.lead{
  color:var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  margin:0 0 18px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}

.badge{
  font-size:13px;
  color:var(--muted);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:7px 10px;
  border-radius:999px;
}

.aside{
  display:grid;
  grid-template-rows:auto 1fr;
  gap:12px;
  height:100%;
}

.mini{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
}

.mini h3{
  margin:0 0 8px;
  font-size:15px;
  letter-spacing:.2px;
}

.mini p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin-top:18px;
}

.col-6{grid-column: span 6}
.col-12{grid-column: span 12}

@media (max-width: 900px){
  .col-6{grid-column: span 12}
}

h2{
  margin:0 0 10px;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing:-.2px;
}

.muted{color:var(--muted)}

.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.li{
  display:flex;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.03);
}

.check{
  width:18px;
  height:18px;
  border-radius:6px;
  background: rgba(120,255,205,.16);
  border:1px solid rgba(120,255,205,.35);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  margin-top:2px;
}

.check:before{
  content:"✓";
  font-size:13px;
  color:rgba(120,255,205,.92);
}

.kpi{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}

@media (max-width: 600px){
  .kpi{grid-template-columns:1fr}
}

.kpi .box{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  padding:12px;
}

.kpi .n{
  font-weight:800;
  font-size:16px;
}

.kpi .t{
  color:var(--muted);
  font-size:13px;
  margin-top:2px;
}

.divider{
  height:1px;
  background:var(--line);
  margin:16px 0;
}

footer{
  border-top:1px solid var(--line);
  color:var(--muted);
  padding:22px 0 30px;
  font-size:13px;
}

.two{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}

.small-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.small-links a{
  color:var(--muted);
  text-decoration:none;
}

.small-links a:hover{
  color:var(--text);
}

.note{
  font-size:12px;
  color:rgba(255,255,255,.55);
  margin-top:10px;
}

.input{
  width:100%;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  border-radius:14px;
  padding:12px;
  font-size:14px;
}

textarea.input{
  min-height:110px;
  resize:vertical;
}

label{
  display:block;
  font-size:13px;
  color:var(--muted);
  margin:10px 0 6px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

@media (max-width: 700px){
  .form-row{grid-template-columns:1fr}
}

.hint{
  font-size:12px;
  color:rgba(255,255,255,.55);
  margin-top:6px;
}

/* TABLE (fusion propre) */
table{
  width:100%;
  min-width:600px;
  border-collapse:collapse;
  table-layout:fixed;
  background-color:#121212;
  color:#eaeaea;
  font-size:0.95rem;
  border:1px solid #777;
}

th, td{
  padding:12px 14px;
  text-align:left;
  border-bottom:1px solid #2a2a2a;
}

thead th{
  background-color:#1e1e1e;
  color:#fff;
  font-weight:600;
}

tbody tr:nth-child(even){
  background-color:#181818;
}

tbody tr:hover{
  background-color:#242424;
}

.table-container{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

dt{font-weight:bold;}
dd{margin-bottom:10px;}

/* colonne highlight */
table th:nth-child(7),
table td:nth-child(7){
  background-color:#1e3a2f;
  color:#eaffea;
  font-weight:600;
}

form {
  max-width: 420px;
  margin: 30px auto;
  padding: 25px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

  color: #fff;
}

form p {
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
  color: #f1f1f1;
}

form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;

  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);

  background: rgba(255,255,255,0.08);
  color: #fff;

  font-size: 15px;
}

form input::placeholder,
form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

form input:focus,
form textarea:focus {
  border-color: #4caf50;
  outline: none;
  background: rgba(255,255,255,0.12);
}

form button {
  width: 100%;
  padding: 16px;
  border-radius: 8px;

  background: linear-gradient(135deg, #43a047, #2e7d32);
  color: white;

  font-weight: bold;
  font-size: 16px;

  border: none;
  cursor: pointer;

  transition: 0.2s;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76,175,80,0.4);
}

/* STICKY MOBILE */
@media (max-width:768px){

  tbody th,
  tbody td:first-child{
    position:sticky;
    left:0;
    z-index:2;
    background-color:#121212;
  }

  thead th:first-child{
    position:sticky;
    left:0;
    z-index:3;
    background-color:#1e1e1e;
  }

}