:root {
  --accent:   #7c3aed;
  --accent2:  #c026d3;
  --gold:     #d97706;
  --dark:     #0f0520;
  --mid:      #2d1060;
  --light:    #faf8ff;
  --muted:    #7c6a9a;
  --border:   #c4b5fd;
  --radius:   8px;
  font-size: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/*
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--light);
  color: #1a1a1a;
  line-height: 1.82;
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}
*/


/* ── Header héroïque ── * /
header {
  background: linear-gradient(135deg, var(--dark) 0%, #1e0a3c 50%, #2d0a5a 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  pointer-events: none;
}
header .hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .78rem;
  padding: .25rem .8rem;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  margin-bottom: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
header h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: .5rem;
}
header h1 span { color: #c4b5fd; }
header .tagline {
  font-size: 1.1rem;
  color: #c4b5fd;
  font-style: italic;
  margin-bottom: 1.2rem;
}
header .launch-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px;
  padding: .4rem .9rem;
  font-size: .88rem;
  color: #e9d5ff;
  font-family: Arial, sans-serif;
}
header .site-nav {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
header .site-nav span {
  font-size: .75rem;
  color: #a78bfa;
  font-family: Arial, sans-serif;
  padding: .25rem 0;
}
header .site-nav a {
  display: inline-block;
  background: rgba(124,58,237,.5);
  color: #e9d5ff;
  padding: .22rem .65rem;
  border-radius: 3px;
  text-decoration: none;
  font-size: .78rem;
  font-family: Arial, sans-serif;
  border: 1px solid rgba(196,181,253,.3);
}
header .site-nav a:hover { background: var(--accent); color:#fff; }

/* ── Compte à rebours ── */
.countdown-wrapper {
  background: linear-gradient(135deg, var(--dark), #1e0a3c);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 30px rgba(124,58,237,.2);
}
.countdown-wrapper .cd-title {
  color: #c4b5fd;
  font-size: .9rem;
  font-family: Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}
.cd-number {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  font-family: Arial, sans-serif;
  background: rgba(124,58,237,.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .5rem 1rem;
  min-width: 90px;
  text-align: center;
}
.cd-label {
  color: #a78bfa;
  font-size: .75rem;
  margin-top: .5rem;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cd-date {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 1.4rem;
  font-family: Arial, sans-serif;
}

/* ── Titres ── * /
h2 {
  font-size: 1.6rem;
  color: var(--dark);
  border-bottom: 2px solid var(--border);
  padding-bottom: .35rem;
  margin: 3rem 0 1rem;
}
h2::before { content: ''; display: inline-block; width: 5px; height: 1.4em; background: var(--accent); border-radius: 3px; margin-right: .6rem; vertical-align: middle; }
h3 { font-size: 1.22rem; color: var(--mid); margin: 1.8rem 0 .6rem; }

/* ── Texte ── * /
p { margin-bottom: 1.1rem; text-align: justify; }
strong { color: var(--dark); }
em { font-style: italic; }
a.ilink { color: var(--accent); text-decoration: none; border-bottom: 1px dotted var(--accent); font-weight: bold; }
a.ilink:hover { background: #f3e8ff; }
a.ext-link { color: var(--accent); font-weight: bold; }

/* ── Listes ── */
ul, ol { margin: .5rem 0 1.1rem 1.5rem; }
li { margin: .4rem 0; }

/* ── Citations ── */
blockquote {
  border-left: 4px solid var(--accent2);
  margin: 1.8rem 0;
  padding: .85rem 1.1rem .85rem 1.4rem;
  background: #fdf4ff;
  font-style: italic;
  color: #444;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Encadrés ── */
.feature-box {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 10px rgba(124,58,237,.07);
}
.feature-box h4 { margin: 0 0 .6rem; color: var(--dark); font-size: 1.05rem; }
.feature-box p, .feature-box ul { margin-bottom: 0; font-size: .93rem; }
.feature-box ul { margin-top: .4rem; }

.highlight-box {
  background: linear-gradient(135deg, #fdf4ff, #f5f3ff);
  border: 1px solid #c4b5fd;
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0;
}
.highlight-box h4 { color: var(--mid); margin: 0 0 .5rem; font-size: 1.05rem; }
.highlight-box p, .highlight-box ul { font-size: .93rem; margin-bottom: 0; }
.highlight-box ul { margin-top: .4rem; }

.gold-box {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
  font-size: .93rem;
}
.gold-box h4 { color: var(--gold); margin: 0 0 .5rem; font-size: 1.05rem; }

.gold-box p { color: var(--kk-dark) !important; }
.gold-box p strong { color: var(--kk-dark) !important; }

/* ── Grille fonctionnalités ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px rgba(124,58,237,.06);
}
.feat-card .feat-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.feat-card h4 { font-size: .97rem; color: var(--dark); margin: 0 0 .3rem; }
/*.feat-card p { font-size: .85rem; color: #444; margin: 0; text-align: left; line-height: 1.6; }*/
.feat-card p { font-size: .85rem; color: #000 !important; margin: 0; text-align: left; line-height: 1.6; }
.feat-card p strong { color: #000 !important; }
/**/