:root{
  --vea-bg:#0b0d10;
  --vea-panel:#15181e;
  --vea-panel-soft:#1b1e25;
  --vea-line:#242832;
  --vea-text:#f9fafb;
  --vea-muted:#9ca3af;
  --vea-green:#22c55e;
  --vea-green-soft:#16a34a;
  --vea-red:#ef4444;
  --vea-accent:#22c55e;
  --vea-shadow:0 20px 60px rgba(0,0,0,0.65);
}

*,
*::before,
*::after{box-sizing:border-box;}

html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,sans-serif;
}

.vea-body{
  background:radial-gradient(circle at top,#1b2334,#050608);
  color:var(--vea-text);
}

/* NAVBAR */

.vea-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(5,6,8,0.92);
  border-bottom:1px solid rgba(55,65,81,0.6);
  backdrop-filter:blur(18px);
}

.vea-nav{
  max-width:1120px;
  margin:0 auto;
  padding:10px 16px;
  display:flex;
  align-items:center;
  gap:14px;
}

.vea-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.vea-logo{
  width:40px;
  height:40px;
  border-radius:12px;
  object-fit:contain;
  background:#000;
}

.vea-brand-main{
  font-size:17px;
  font-weight:800;
  color:var(--vea-text);
}
.vea-brand-sub{
  font-size:17px;
  font-weight:800;
  color:var(--vea-green);
}

.vea-menu{
  margin-left:auto;
  display:flex;
  gap:16px;
}
.vea-menu a{
  font-size:13px;
  text-decoration:none;
  color:var(--vea-muted);
  padding:6px 8px;
  border-radius:999px;
}
.vea-menu a:hover{
  background:rgba(34,197,94,0.12);
  color:var(--vea-text);
}

.vea-burger{
  display:none;
  margin-left:auto;
  width:38px;
  height:32px;
  border-radius:10px;
  border:none;
  background:var(--vea-panel-soft);
  cursor:pointer;
}
.vea-burger span{
  display:block;
  height:2px;
  margin:4px 7px;
  background:#e5e7eb;
  border-radius:3px;
}

/* MAIN */

.vea-main{
  max-width:1120px;
  margin:0 auto;
  padding:20px 16px 40px;
}

/* HERO */

.vea-hero{
  margin-top:12px;
}
.vea-hero-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:18px;
  background:radial-gradient(circle at top,#1f2933,#050609);
  border-radius:24px;
  padding:24px 22px;
  box-shadow:var(--vea-shadow);
  border:1px solid rgba(55,65,81,0.7);
}
.vea-hero-left h1{
  margin:6px 0 10px;
  font-size:26px;
}
.vea-kicker{
  margin:0;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--vea-green);
}
.vea-hero-lead{
  margin:0 0 18px;
  font-size:14px;
  color:var(--vea-muted);
  max-width:480px;
}

/* Countdown */

.vea-countdown{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.vea-count{
  flex:1;
  min-width:72px;
  background:linear-gradient(145deg,#111827,#020617);
  border-radius:14px;
  padding:10px 8px;
  text-align:center;
  border:1px solid rgba(55,65,81,0.9);
}
.vea-count-value{
  font-size:18px;
  font-weight:800;
  color:var(--vea-green);
}
.vea-count-label{
  font-size:11px;
  color:var(--vea-muted);
}

/* Buttons */

.vea-hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.vea-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
}
.vea-btn-main{
  background:var(--vea-green);
  color:#04110a;
}
.vea-btn-main:hover{
  background:var(--vea-green-soft);
}
.vea-btn-outline{
  background:transparent;
  color:var(--vea-text);
  border-color:rgba(75,85,99,0.9);
}
.vea-btn-outline:hover{
  border-color:var(--vea-green);
}
.vea-btn-full{
  width:100%;
}

/* Hero right */

.vea-program-card{
  background:linear-gradient(160deg,#111827,#020617);
  border-radius:20px;
  padding:18px 16px;
  border:1px solid rgba(75,85,99,0.9);
  box-shadow:0 14px 40px rgba(0,0,0,0.75);
  font-size:13px;
}
.vea-program-card h2{
  margin-top:0;
  margin-bottom:8px;
  font-size:18px;
}
.vea-program-card ul{
  margin:8px 0 8px 18px;
  padding:0;
}
.vea-program-card li{margin-bottom:4px;}
.vea-note{
  font-size:11px;
  color:var(--vea-muted);
}

/* Sections */

.vea-section{
  margin-top:26px;
  padding:22px 20px;
  border-radius:24px;
  background:var(--vea-panel);
  border:1px solid var(--vea-line);
  box-shadow:var(--vea-shadow);
}
.vea-section-alt{
  background:#111318;
}
.vea-section h2{
  margin:0 0 8px;
  font-size:22px;
}
.vea-section-lead{
  margin:0 0 18px;
  font-size:13px;
  color:var(--vea-muted);
}

/* Grid vision */

.vea-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.vea-card{
  background:var(--vea-panel-soft);
  border-radius:18px;
  padding:12px 11px;
  border:1px solid rgba(55,65,81,0.9);
  font-size:13px;
}
.vea-card h3{
  margin:0 0 6px;
  font-size:14px;
  color:var(--vea-green);
}

/* Candidate */

.vea-candidate{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:center;
}
.vea-candidate-photo{
  width:120px;
  height:120px;
  border-radius:18px;
  object-fit:cover;
  border:2px solid var(--vea-green);
  box-shadow:0 12px 30px rgba(0,0,0,0.8);
}
.vea-candidate-sub{
  margin:2px 0 8px;
  font-size:13px;
  color:var(--vea-green);
}
.vea-meta-line{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
  font-size:11px;
  color:var(--vea-muted);
}

/* Team */

.vea-team-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.vea-team-card{
  background:var(--vea-panel-soft);
  border-radius:18px;
  padding:12px 10px;
  border:1px solid rgba(55,65,81,0.9);
  text-align:center;
  font-size:12px;
}
.vea-team-highlight{
  border-color:var(--vea-green);
  box-shadow:0 14px 40px rgba(34,197,94,0.25);
}
.vea-team-avatar{
  width:52px;
  height:52px;
  border-radius:999px;
  margin:0 auto 8px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#020617;
  border:1px solid rgba(75,85,99,0.9);
}
.vea-team-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.vea-team-initials{
  color:var(--vea-green);
  font-weight:700;
}
.vea-team-card h3{
  margin:0 0 4px;
  font-size:13px;
}
.vea-team-role{
  margin:0;
  color:var(--vea-muted);
}

/* Timeline */

.vea-timeline{
  position:relative;
  margin-top:8px;
  padding-left:12px;
}
.vea-timeline-line{
  position:absolute;
  left:18px;
  top:0;
  bottom:0;
  width:2px;
  background:linear-gradient(to bottom,var(--vea-green),transparent);
}
.vea-timeline-item{
  position:relative;
  padding-left:28px;
  margin-bottom:18px;
}
.vea-timeline-dot{
  position:absolute;
  left:12px;
  top:8px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--vea-green);
  box-shadow:0 0 0 4px rgba(34,197,94,0.18);
}
.vea-timeline-card{
  background:var(--vea-panel-soft);
  border-radius:14px;
  padding:10px 10px;
  border:1px solid rgba(55,65,81,0.9);
  font-size:12px;
}
.vea-timeline-card h3{
  margin:0 0 4px;
  font-size:13px;
  color:var(--vea-green);
}

/* Objectif */

.vea-cols-4{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

/* Contact */

.vea-contact-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:14px;
}
.vea-form{
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:13px;
}
.vea-form-row{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.vea-form label{
  font-size:12px;
  color:var(--vea-muted);
}
.vea-form input,
.vea-form textarea{
  border-radius:10px;
  border:1px solid rgba(75,85,99,0.9);
  background:#020617;
  color:var(--vea-text);
  padding:8px 9px;
  font-family:inherit;
  font-size:13px;
}
.vea-form textarea{resize:vertical;}

/* Footer */

.vea-footer{
  text-align:center;
  padding:14px 8px 22px;
  font-size:11px;
  color:var(--vea-muted);
}

/* RESPONSIVE */

@media (max-width:900px){
  .vea-hero-inner{
    grid-template-columns:1fr;
  }
  .vea-grid,
  .vea-team-grid,
  .vea-cols-4,
  .vea-contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .vea-main{
    padding:16px 10px 26px;
  }
  .vea-nav{
    padding:10px 12px;
  }
  .vea-menu{
    position:absolute;
    top:52px;
    right:12px;
    background:#020617;
    border-radius:16px;
    padding:8px 10px;
    box-shadow:0 18px 40px rgba(0,0,0,0.9);
    flex-direction:column;
    align-items:flex-start;
    display:none;
  }
  .vea-menu.show{display:flex;}
  .vea-burger{display:block;}
}
