/* ===========================
   RUNHER — Feuille de styles
   =========================== */

   @font-face {
    font-family: 'MuseoModerno';
    src: url('fonts/MuseoModerno-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
  }
  
  /* Si tu n'as qu'un seul fichier .ttf, fais pointer les 3 blocs
     vers le même nom de fichier — ça fonctionnera quand même */
  
  :root {
    --pink:       #FFE3F0;
    --pink-mid:   #FFA7CE;
    --pink-dark:  #FFA7CE;
    --bg:         #FFF5FB;
    --text:       #695954;
    --muted:      #8A7A74;
    --card-bg:    #FFF0F8;
    --border:     rgba(255, 255, 255, 0.4);
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'MuseoModerno', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* ===========================
     NAVIGATION
     =========================== */
  
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    background: rgba(253, 248, 251, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 167, 206, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
  }
  
  .nav-logo img { height: 32px; width: auto; }
  
  .nav-links { display: flex; gap: 32px; }
  
  .nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    font-family: 'MuseoModerno', sans-serif;
    transition: color 0.2s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-dark);
    border-radius: 2px;
    transition: width 0.25s;
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after { width: 100%; }
  
  .nav-links a:hover,
  .nav-links a.active { color: var(--pink-dark); }
  
  /* ===========================
     BOUTONS — LOOK VERRE
     =========================== */
  
  .btn-pink {
    background: rgba(255, 167, 206, 0.55);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 10px 22px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'MuseoModerno', sans-serif;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  
  .btn-pink:hover {
    background: rgba(255, 167, 206, 0.85);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(230, 130, 175, 0.18);
  }
  
  .btn-filled {
    background: rgba(255, 167, 206, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 15px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'MuseoModerno', sans-serif;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    display: inline-block;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  
  .btn-filled:hover {
    background: rgba(255, 167, 206, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(230, 130, 175, 0.2);
  }
  
  .btn-outline {
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(105, 89, 84, 0.25);
    padding: 15px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'MuseoModerno', sans-serif;
    cursor: pointer;
    color: var(--text);
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
  }
  
  .btn-outline:hover {
    background: rgba(255, 167, 206, 0.35);
    border-color: rgba(230, 130, 175, 0.45);
    transform: translateY(-2px);
  }
  
  /* ===========================
     UTILITAIRES
     =========================== */
  
  .pink { color: var(--pink-dark); }
  
  .section { padding: 80px 48px; }
  
  .section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 14px;
  }
  
  .section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }
  
  /* ===========================
     HERO
     =========================== */
  
  .hero {
    text-align: center;
    padding: 96px 48px 72px;
    background: linear-gradient(160deg, #FFF5FB 0%, var(--bg) 60%);
  }
  
  .hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1px;
  }
  
  .hero p {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.75;
  }
  
  .hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  
  /* ===========================
     STATS — CARTES VERRE
     =========================== */
  
  .stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .stat-card {
    background: rgba(255, 167, 206, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(230, 130, 175, 0.12);
  }
  
  .stat-num {
    font-size: 56px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 12px;
  }
  
  .stat-label {
    font-size: 14px;
    color: #8A7A74;
    line-height: 1.5;
  }
  
  /* ===========================
     FEATURES
     =========================== */
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 960px;
    margin: 0 auto;
  }
  
  .feature-card {
    background: rgba(255, 167, 206, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 30px 26px;
    transition: transform 0.22s, box-shadow 0.22s;
  }
  
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(230, 130, 175, 0.1);
  }
  
  .feature-icon { font-size: 28px; margin-bottom: 14px; }
  .feature-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
  .feature-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
  .feature-num {
    font-size: 28px;
    font-weight: 900;
    color: #FFA7CE;
    opacity: 0.4;
    margin-bottom: 14px;
    line-height: 1;
  }
  .feature-coming {
    opacity: 0.5;
  }
  
  .coming-tag {
    font-size: 11px;
    font-weight: 700;
    color: #FFA7CE;
    background: rgba(255, 70, 151, 0.1);
    border-radius: 20px;
    padding: 2px 8px;
    margin-left: 6px;
    vertical-align: middle;
  }
  
  /* ===========================
     ALGORITHME
     =========================== */
  
  .algo-section {
    background: linear-gradient(160deg, #FFF0F8 0%, #FFF5FB 100%);
    padding: 80px 48px;
    text-align: center;
  }
  
  .score-title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    margin-bottom: 14px;
  }
  
  .score-sub {
    color: var(--muted);
    font-size: 15px;
    margin: 0 auto 48px;
    max-width: 520px;
    line-height: 1.75;
  }
  
  .pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto 36px;
  }
  
  .pillar-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: left;
    transition: transform 0.22s;
  }
  
  .pillar-card:hover { transform: translateY(-3px); }
  
  .pillar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .pillar-icon {
    font-size: 22px;
    flex-shrink: 0;
  }
  
  .pillar-title { font-size: 15px; font-weight: 700; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.05em; }
  
  .pillar-items { list-style: none; }
  
  .pillar-items li {
    font-size: 13px;
    color: #8A7A74;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 0.5px solid rgba(255, 167, 206, 0.6);
  }
  
  .pillar-items li:last-child { border-bottom: none; }
  
  .pillar-items li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink-mid);
    flex-shrink: 0;
    margin-top: 6px;
  }
  
  .temporal {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 14px 30px;
    display: inline-block;
    font-size: 14px;
    color: #8A7A74;
  }
  
  .temporal strong { color: var(--text); }
  
  /* Blocs texte algo */
  .algo-text-block {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 36px 40px;
  }
  
  .algo-text-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
  }
  
  .algo-text-block p {
    font-size: 15px;
    color: #8A7A74;
    line-height: 1.75;
  }
  
  .algo-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
  }
  
  .badge {
    background: rgba(255, 167, 206, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
  }
  
  /* ===========================
     À PROPOS
     =========================== */
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
    align-items: start;
  }
  
  .about-text {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 36px;
  }
  
  .about-text h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--pink-dark);
  }
  
  .about-text p {
    font-size: 15px;
    color: #8A7A74;
    line-height: 1.8;
  }
  
  .about-team {
    background: rgba(255, 167, 206, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 36px;
    text-align: center;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 167, 206, 0.8);
    margin-bottom: 16px;
  }
  
  .team-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 167, 206, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.8);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
  }
  
  .team-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .team-role {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }
  
  /* ===========================
     LISTE D'ATTENTE — FORMULAIRE
     =========================== */
  
  .waitlist-section {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 48px;
    background: linear-gradient(160deg, #FFF5FB 0%, var(--bg) 70%);
  }
  
  .waitlist-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 56px 48px;
    max-width: 560px;
    width: 100%;
    text-align: center;
  }
  
  .waitlist-card h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.15;
  }
  
  .waitlist-card p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .form-input {
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 167, 206, 0.7);
    font-size: 15px;
    font-family: 'MuseoModerno', sans-serif;
    background: rgba(255, 255, 255, 0.65);
    color: var(--text);
    outline: none;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .form-input:focus {
    border-color: var(--pink-mid);
    box-shadow: 0 0 0 3px rgba(255, 167, 206, 0.5);
  }
  
  .form-input::placeholder { color: #C4B6B1; }
  
  .form-select {
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 167, 206, 0.7);
    font-size: 15px;
    font-family: 'MuseoModerno', sans-serif;
    background: rgba(255, 255, 255, 0.65);
    color: var(--text);
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  
  .form-select:focus { border-color: var(--pink-mid); }
  
  .form-submit {
    width: 100%;
    padding: 16px;
    background: rgba(255, 167, 206, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'MuseoModerno', sans-serif;
    color: var(--text);
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 6px;
  }
  
  .form-submit:hover {
    background: rgba(255, 167, 206, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(230, 130, 175, 0.18);
  }
  
  .form-confirm {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    min-height: 20px;
  }
  
  /* ===========================
     CTA SECTION
     =========================== */
  
  .cta-section {
    padding: 80px 48px;
    text-align: center;
    background: linear-gradient(160deg, #FFF5FB 0%, var(--bg) 70%);
  }
  
  .cta-section h2 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 900;
    margin-bottom: 14px;
  }
  
  .cta-sub { color: var(--muted); font-size: 15px; margin-bottom: 36px; }
  
  /* ===========================
     PAGE HERO
     =========================== */
  
  .page-hero {
    text-align: center;
    padding: 72px 48px 56px;
    background: linear-gradient(160deg, #FFF5FB 0%, var(--bg) 70%);
  }
  
  .page-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  
  .page-hero p {
    font-size: 16px;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
  }
  
  /* ===========================
     FOOTER
     =========================== */
  
  footer {
    background: rgba(253, 248, 251, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 167, 206, 0.5);
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--text);
  }
  
  .footer-logo img { height: 24px; width: auto; }
  .footer-copy { font-size: 13px; color: #A89892; }
  .footer-links { display: flex; gap: 24px; }
  
  .footer-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
    transition: color 0.2s;
  }

  .footer-links a svg {
    width: 20px;
    height: 20px;
    fill: var(--muted);
    transition: fill 0.2s;
  }
  
  .footer-links a:hover svg {
    fill: #FFA7CE;
  }
  
  .footer-links a:hover { color: var(--pink-dark); }
  
  /* ===========================
     RESPONSIVE
     =========================== */
  
  @media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 640px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
  
    .hero { padding: 56px 20px 48px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-filled, .btn-outline { width: 100%; max-width: 340px; text-align: center; }
  
    .stats { gap: 16px; }
    .stat-card { min-width: 160px; padding: 28px 20px; }
  
    .section { padding: 56px 20px; }
    .algo-section { padding: 56px 20px; }
    .cta-section { padding: 56px 20px; }
    .page-hero { padding: 48px 20px; }
  
    .waitlist-section { padding: 40px 20px; }
    .waitlist-card { padding: 36px 24px; }
    .form-row { grid-template-columns: 1fr; }
  
    .algo-text-block { padding: 24px 20px; }
    .about-text, .about-team { padding: 24px 20px; }
  
    footer { padding: 20px; flex-direction: column; text-align: center; }
  }