:root {
  --primary-color: #81c9fa;
  --secondary-color: #f9f9f9;
  --accent-color: #81c9fa;
  --bg-color: #ffffff;
  --text-color: #333333;
  --font-base: 'Montserrat', sans-serif;
  --transition-fast: 0.3s;
}

/* ============================
   RESET GÉNÉRAL
   ============================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================
   BODY & TYPO
   ============================ */
body {
  font-family: var(--font-base);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
}

/* ============================
   LIENS
   ============================ */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--accent-color);
}

/* ============================
   HEADER
   ============================ */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}
.site-header a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  margin-right: 1.5rem;
}
.site-header a:hover,
.site-header .active {
  border-bottom: 2px solid var(--primary-color);
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

/* ============================
   SECTIONS
   ============================ */
.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.section h2,
.section h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.section p,
.section ul {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.section ul li {
  margin-left: 1.5rem;
  list-style: disc;
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 20px;
  max-width: 90%;
}
.hero-overlay h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
.hero-overlay p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
.hero-overlay .baseline {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ============================
   BOUTONS
   ============================ */
.btn-primary,
.cta-block .btn-primary,
.token-cta .btn-primary,
.btn-whitepaper {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background var(--transition-fast);
  text-decoration: none;
}
.btn-primary:hover,
.cta-block .btn-primary:hover,
.token-cta .btn-primary:hover,
.btn-whitepaper:hover {
  background-color: var(--accent-color);
}

/* ============================
   BOXES (TOKEN, STATS, VESTING, FUND)
   ============================ */
.token-box,
.stat,
.vesting-box,
.fund-item {
  background: #fff;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
}
.token-box h2,
.stat h3,
.fund-item h3,
.vesting-box h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--secondary-color);
  text-align: center;
  padding: 2rem 1rem;
}
.site-footer p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}
.site-footer .social-icons a img {
  width: 28px; /* Taille plus équilibrée */
  height: auto;
  margin: 0 0.4rem;
  transition: transform var(--transition-fast);
}

.site-footer .social-icons a img:hover {
  transform: scale(1.2);
}
/* === SOCIAL ICONS GLOBAL FIX === */
.social-icons {
  text-align: center;
  margin-top: 3rem;
}
.social-icons h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}
.icons-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.icons-wrapper img {
  width: 40px;
  height: auto;
  transition: transform 0.2s ease;
}
.icons-wrapper img:hover {
  transform: scale(1.15);
}
.social-icons img {
  width: 32px;
  height: auto;
  margin: 0 10px;
  vertical-align: middle;
}
.funding-section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.funding-section h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 20px;
}

.funding-block {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.funding-block h3 {
  margin-top: 10px;
  color: #222;
}

.funding-block ul {
  padding-left: 20px;
  list-style: disc;
}

.amount-box {
  background: #ffffff;
  border: 2px solid #00b894;
  color: #00b894;
  display: inline-block;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.funding-cta {
  text-align: center;
  font-weight: bold;
  margin-top: 40px;
  font-size: 1.1em;
}
.info-box {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 900px;      /* limite la largeur */
  width: 100%;            /* prend toute la largeur dispo */
  box-sizing: border-box; /* empêche les débordements */
}
.quote blockquote {
  font-style: italic;
  text-align: center;
  font-size: 1.4em;
  margin: 40px auto;
  padding: 20px;
  max-width: 700px;
  border-left: 4px solid #00b894;
  background-color: #f5f5f5;
  border-radius: 12px;
}
.teaser-block {
  margin-bottom: 40px;
}
.whitepaper-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  text-align: left;
}
.whitepaper-content h2 {
  font-size: 1.5em;
  color: #222;
  margin-top: 30px;
}
.whitepaper-content p {
  font-size: 1.05em;
  margin-top: 10px;
}
