    :root {
      --white: #FFFFFF;
      --bg: #FFF3F0;
      --cyan: #2AF5FF;
      --rose: #CC59D2;
      --vert: #A6FFA1;
      --orange: #FFA827;
      --dark: #1A1A2E;
      --text: #2D2D2D;
      --gray: #7A7A8A;
      --light: #E8E8F0;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--white); color: var(--text); font-family: 'Instrument Sans', sans-serif; overflow-x: hidden; }

    /* ── HIGHLIGHT STABILO (inline, static — pour body text) ── */
    .hl-rose { position: relative; display: inline; }
    .hl-rose::before { content: ''; position: absolute; bottom: 1px; left: -4px; right: -4px; height: 52%; background: var(--rose); opacity: 0.22; border-radius: 3px; transform: skewX(-2deg); z-index: -1; }
    .hl-vert { position: relative; display: inline; }
    .hl-vert::before { content: ''; position: absolute; bottom: 1px; left: -4px; right: -4px; height: 52%; background: var(--vert); opacity: 0.55; border-radius: 3px; transform: skewX(-2deg); z-index: -1; }
    .hl-cyan { position: relative; display: inline; }
    .hl-cyan::before { content: ''; position: absolute; bottom: 1px; left: -4px; right: -4px; height: 52%; background: var(--cyan); opacity: 0.4; border-radius: 3px; transform: skewX(-2deg); z-index: -1; }
    .hl-orange { position: relative; display: inline; }
    .hl-orange::before { content: ''; position: absolute; bottom: 1px; left: -4px; right: -4px; height: 52%; background: var(--orange); opacity: 0.38; border-radius: 3px; transform: skewX(-2deg); z-index: -1; }

    /* ── STABILO SCROLL-TRIGGERED UNDERLINE (pour les titres) ── */
    .hl-draw {
      position: relative;
      display: inline-block;
    }
    .hl-draw::after {
      content: '';
      position: absolute;
      left: -2px;
      right: -2px;
      bottom: -4px;
      height: 10px;
      border-radius: 3px;
      transform: skewX(-1deg);
      clip-path: inset(0 100% 0 0);
      transition: none;
    }
    .hl-draw.drawn::after {
      animation: stabilo-draw 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    .hl-draw-vert::after  { background: var(--vert);   opacity: 0.55; }
    .hl-draw-rose::after  { background: var(--rose);   opacity: 0.35; }
    .hl-draw-cyan::after  { background: var(--cyan);   opacity: 0.45; }
    .hl-draw-orange::after{ background: var(--orange); opacity: 0.45; }

    /* Stabilo draw-on underline — fires once on load (hero) */
    .wave-underline {
      position: relative;
      display: inline-block;
    }
    .wave-underline::after {
      content: '';
      position: absolute;
      left: -2px;
      right: -2px;
      bottom: -4px;
      height: 10px;
      background: var(--vert);
      opacity: 0.55;
      border-radius: 3px;
      transform: skewX(-1deg);
      transform-origin: left center;
      clip-path: inset(0 100% 0 0);
      animation: stabilo-draw 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    }
    @keyframes stabilo-draw {
      0%   { clip-path: inset(0 100% 0 0); }
      100% { clip-path: inset(0 0% 0 0); }
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      padding: 14px 52px;
      display: flex; align-items: center; justify-content: space-between;
      z-index: 200;
      background: rgba(255,255,255,0.93);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(204,89,210,0.1);
    }
    .logo img { height: 56px; width: auto; display: block;  }
    .nav-badge {
      font-size: 0.71rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--rose); background: rgba(204,89,210,0.1);
      border: 1.5px solid rgba(204,89,210,0.25);
      padding: 5px 14px; border-radius: 100px;
      animation: pulse-badge 2.5s ease-in-out infinite;
    }
    @keyframes pulse-badge {
      0%,100% { border-color: rgba(204,89,210,0.25); }
      50% { border-color: rgba(204,89,210,0.55); box-shadow: 0 0 10px rgba(204,89,210,0.15); }
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 120px 24px 80px;
      position: relative; text-align: center; background: var(--white); overflow: hidden;
    }
    /* Stabilo squares decoration */
    .deco-sq { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
    .sq { position: absolute; width: 18px; height: 18px; border-radius: 3px; }
    /* Side stabilo strokes */
    .deco-strokes { position: absolute; top: 0; bottom: 0; width: 110px; pointer-events: none; z-index: 0; opacity: 0.3; }
    .stroke-line { position: absolute; left: 8px; right: 8px; height: 13px; border-radius: 4px; }

    .hero-content { position: relative; z-index: 1; max-width: 1100px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--gray); margin-bottom: 24px;
      animation: fadeUp 0.7s ease both;
    }
    .hero-eyebrow .chip { color: var(--rose); font-weight: 700; }
    .dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); animation: blink 1.4s ease infinite; display: inline-block; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.15} }

    .hero-title {
      font-family: 'Bricolage Grotesque', sans-serif;
      font-size: clamp(2.5rem, 7vw, 5.8rem);
      font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; color: var(--dark);
      margin-bottom: 24px; animation: fadeUp 0.8s 0.1s ease both;
    }
    .hero-subtitle {
      font-size: clamp(0.95rem, 1.8vw, 1.15rem); font-weight: 400; color: var(--gray);
      max-width: 600px; line-height: 1.75; margin: 0 auto 44px;
      animation: fadeUp 0.9s 0.2s ease both;
    }
    .hero-subtitle strong { color: var(--text); font-weight: 600; }

    /* ── FORM ── */
    .signup-block { animation: fadeUp 0.9s 0.3s ease both; width: 100%; max-width: 500px; margin: 0 auto; }
    .form-label { font-size: 0.77rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); margin-bottom: 10px; display: block; font-weight: 500; }
    .form-row {
      display: flex; background: var(--bg);
      border: 2px solid rgba(204,89,210,0.2); border-radius: 16px; overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .form-row:focus-within { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(204,89,210,0.1); }
    .form-row input {
      flex: 1; background: transparent; border: none; outline: none;
      color: var(--dark); font-family: 'Instrument Sans', sans-serif;
      font-size: 0.95rem; padding: 15px 20px;
    }
    .form-row input::placeholder { color: rgba(122,122,138,0.55); }
    .btn-cta {
      background: var(--rose); border: none; color: #fff;
      font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.88rem;
      letter-spacing: 0.02em; padding: 15px 24px; cursor: pointer; white-space: nowrap;
      transition: background 0.2s, transform 0.15s;
      position: relative; overflow: hidden;
    }
    .btn-cta:hover { background: #b845c0; }
    .btn-cta:active { transform: scale(0.97); }
    .btn-cta:disabled, .btn-full:disabled { opacity: 0.42; cursor: not-allowed; }
    .btn-cta:disabled::after, .btn-full:disabled::after { animation: none; }
    .email-error-msg {
      display: none;
      width: 100%;
      font-size: 0.76rem;
      color: rgba(255, 80, 80, 0.9);
      margin-top: 6px;
      margin-bottom: 2px;
      padding-left: 4px;
      text-align: left;
    }
    .email-suggest-msg {
      display: none;
      width: 100%;
      font-size: 0.76rem;
      color: rgba(255, 168, 39, 0.95);
      margin-top: 6px;
      margin-bottom: 2px;
      padding-left: 4px;
      text-align: left;
    }
    .email-suggest-link {
      cursor: pointer;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
      color: inherit;
    }
    .email-suggest-link:hover { color: #FFA827; }
    .btn-cta::after {
      content: ''; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
      background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28), transparent);
      pointer-events: none;
      animation: shimmer-btn 4s ease-in-out 1.8s infinite;
    }

    .counter-block { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; animation: fadeUp 1s 0.5s ease both; }
    .avatars { display: flex; }
    .av { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--white); margin-left: -9px; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }
    .av:first-child { margin-left: 0; }
    .av-1 { background: var(--rose); }
    .av-2 { background: #0099aa; }
    .av-3 { background: var(--orange); }
    .av-4 { background: #4cbb47; color: #fff; }
    .counter-text { font-size: 0.82rem; color: var(--gray); font-weight: 500; }
    .counter-text strong { color: var(--text); font-weight: 700; }
    #counter-num { transition: transform 0.3s, color 0.3s; display: inline-block; }

    /* SUCCESS */
    .success-msg { display: none; text-align: center; padding: 20px; border: 2px solid rgba(166,255,161,0.5); border-radius: 16px; background: rgba(166,255,161,0.12); }
    .success-msg.active { display: block; animation: fadeUp 0.5s ease both; }
    .success-msg h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.2rem; color: #2d9e28; margin-bottom: 6px; }
    .success-msg p { font-size: 0.88rem; color: var(--gray); }

    .scroll-hint {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      animation: fadeUp 1s 0.9s ease both, bob 2s 2s ease-in-out infinite;
      color: var(--light); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    }
    .scroll-arrow { width: 18px; height: 18px; border-right: 2px solid var(--light); border-bottom: 2px solid var(--light); transform: rotate(45deg); }
    @keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }

    /* ── STATS ── */
    .stats-bar { display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; background: var(--dark); }
    .stat { text-align: center; padding: 64px 52px; border-right: 1px solid rgba(255,255,255,0.07); flex: 1; min-width: 200px; }
    .stat:last-child { border-right: none; }
    .stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--cyan); letter-spacing: -0.03em; }
    .stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.55); margin-top: 6px; line-height: 1.5; max-width: 200px; margin-left: auto; margin-right: auto; }

    /* ── SECTION ── */
    .section { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
    .section-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--rose); margin-bottom: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
    .section-tag::before { content: '●'; font-size: 0.5rem; }
    .section-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--dark); margin-bottom: 20px; }
    .section-desc { font-size: 1.05rem; color: var(--gray); line-height: 1.75; max-width: 680px; margin-bottom: 56px; }

    /* ── FEATURES ── */
    .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .feature-card {
      background: var(--bg); border: 1.5px solid rgba(204,89,210,0.1);
      border-radius: 20px; padding: 32px; position: relative; overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .feature-card:hover { border-color: rgba(0,0,0,0.08); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
    .fc-rose { }
    .fc-cyan { }
    .fc-vert { }
    .fc-orange { }
    .feature-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
    .feature-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
    .feature-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
    .feature-badge { position: absolute; top: 20px; right: 20px; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
    .badge-new { background: rgba(42,245,255,0.15); color: #0099a8; border: 1px solid rgba(42,245,255,0.4); }
    .badge-soon { background: rgba(255,168,39,0.15); color: #b87200; border: 1px solid rgba(255,168,39,0.3); }

    /* ── FOR WHOM ── */
    .for-whom-wrap { padding: 80px 24px; background: var(--bg); }
    .for-whom-inner { max-width: 1100px; margin: 0 auto; }
    .profiles-intro { font-size: 1rem; color: var(--gray); line-height: 1.7; max-width: 700px; margin-bottom: 40px; }
    .profiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px; }
    .profile { border-radius: 18px; padding: 26px; background: var(--white); border: 1.5px solid rgba(0,0,0,0.06); display: flex; gap: 14px; align-items: flex-start; transition: box-shadow 0.2s, transform 0.2s; }
    .profile:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); transform: translateY(-2px); }
    .profile-emoji { font-size: 1.7rem; line-height: 1; flex-shrink: 0; }
    .profile h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; color: var(--dark); }
    .profile p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
    .profiles-footer { margin-top: 28px; font-size: 0.9rem; color: var(--gray); line-height: 1.7; font-style: italic; }

    /* ── DIVIDER ── */
    .divider { height: 2px; background: linear-gradient(90deg, transparent, var(--rose) 30%, var(--cyan) 70%, transparent); opacity: 0.18; }

    /* ── BOTTOM CTA ── */
    .bottom-cta { padding: 120px 24px; text-align: center; background: var(--dark); position: relative; overflow: hidden; }
    .bottom-cta h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--white); margin-bottom: 40px; position: relative; }
    .bottom-cta p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 440px; margin: 0 auto 44px; line-height: 1.7; position: relative; }
    .bottom-form { max-width: 480px; margin: 0 auto; position: relative; }
    .bottom-input { width: 100%; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 14px; color: var(--white); font-family: 'Instrument Sans', sans-serif; font-size: 0.95rem; padding: 16px 20px; outline: none; transition: border-color 0.3s; margin-bottom: 12px; }
    .bottom-input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(204,89,210,0.15); }
    .bottom-input::placeholder { color: rgba(255,255,255,0.3); }
    .btn-full { width: 100%; padding: 17px; border: none; background: var(--rose); color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; border-radius: 12px; cursor: pointer; transition: background 0.2s, transform 0.15s; letter-spacing: 0.02em; position: relative; overflow: hidden; }
    .btn-full:hover { background: #b845c0; }
    .btn-full:active { transform: scale(0.99); }
    .btn-full::after {
      content: ''; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
      background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28), transparent);
      pointer-events: none;
      animation: shimmer-btn 4s ease-in-out 2.4s infinite;
    }
    .bottom-meta { margin-top: 14px; font-size: 0.75rem; color: rgba(255,255,255,0.3); text-align: center; }

    /* ── BLOG ── */
    .blog-section { padding: 100px 24px; max-width: 1100px; margin: 0 auto; }
    .blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
    .blog-card { border-radius: 18px; overflow: hidden; border: 1.5px solid rgba(0,0,0,0.07); transition: box-shadow 0.3s, transform 0.3s; text-decoration: none; display: block; color: inherit; background: var(--white); }
    .blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
    .blog-thumb { height: 110px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
    .bt-rose { background: rgba(204,89,210,0.1); }
    .bt-cyan { background: rgba(42,245,255,0.1); }
    .bt-vert { background: rgba(166,255,161,0.18); }
    .bt-orange { background: rgba(255,168,39,0.1); }
    .blog-body { padding: 20px 22px 24px; }
    .blog-tag { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose); margin-bottom: 8px; display: block; }
    .blog-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 10px; }
    .blog-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.65; }
    .blog-read { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 0.8rem; font-weight: 600; color: var(--rose); }
    .blog-read::after { content: '→'; transition: transform 0.2s; }
    .blog-card:hover .blog-read::after { transform: translateX(4px); }

    /* ── FOOTER ── */
    footer { background: var(--dark); padding: 10px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
    footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
    footer a:hover { color: var(--rose); }
    .footer-logo img { height: 36px; width: auto; }
    .footer-social { display: flex; align-items: center; gap: 10px; }
    .footer-social svg { display: block; }
    .footer-social a { display: flex; align-items: center; }

    /* ── SHIMMER CTA ── */
    @keyframes shimmer-btn {
      0%    { left: -80%; opacity: 1; }
      22%   { left: 120%; opacity: 1; }
      22.1% { left: -80%; opacity: 0; }
      100%  { left: -80%; opacity: 0; }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 14px 28px; }
      .stat { padding: 48px 24px; }
    }
    @media (max-width: 640px) {
      nav { padding: 12px 18px; }
      .logo img { height: 36px; }
      .hero { padding: 100px 18px 72px; }
      .form-row { flex-direction: column; }
      .form-row input { border-bottom: 1.5px solid rgba(204,89,210,0.2); border-radius: 14px 14px 0 0; }
      .btn-cta { border-radius: 0 0 14px 14px; padding: 14px; }
      .stats-bar { flex-direction: column; }
      .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
      .stat:last-child { border-bottom: none; }
      .features-grid, .profiles, .blog-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; text-align: center; padding: 14px 18px; }
    }
