    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
        
    :root {
      --vm-orange: #ff5900;
      --vm-orange-soft: rgba(255, 89, 0, 0.08);
      --vm-bg: #f6f7fb;
      --vm-white: #ffffff;
      --vm-text: #121826;
      --vm-text-soft: #6b7280;
      --vm-border: #e5e7eb;
      --vm-radius-lg: 18px;
      --vm-radius-xl: 24px;
      --vm-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--vm-bg);
      color: var(--vm-text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Header (proche de la landing) */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(246, 247, 251, 0.9);
      border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    }

    .header-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.85rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .brand-logo {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: var(--vm-orange);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
    }

    .brand-name {
      font-weight: 700;
      font-size: 1rem;
    }

    .brand-tagline {
      font-size: 0.75rem;
      color: var(--vm-text-soft);
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-links {
      display: flex;
      gap: 0.75rem;
      font-size: 0.85rem;
      color: var(--vm-text-soft);
    }

    .nav-links a {
      padding: 0.3rem 0.65rem;
      border-radius: 999px;
      transition: background 0.18s ease, color 0.18s ease;
    }

    .nav-links a:hover {
      background: rgba(15, 23, 42, 0.04);
      color: var(--vm-text);
    }

    .nav-links a.active {
      background: var(--vm-orange-soft);
      color: var(--vm-orange);
      font-weight: 600;
    }

    .store-badges {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .store-badge {
      font-size: 0.8rem;
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.06);
      background: #fff;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
      transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .store-badge span:first-child {
      font-size: 0.95rem;
    }

    .store-badge strong {
      font-weight: 600;
    }

    .store-badge:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
      border-color: rgba(15, 23, 42, 0.12);
      background: #fefefe;
    }

    /* Main */
    main {
      flex: 1;
    }

    .layout-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 1.5rem 1.25rem 2.5rem;
    }

    /* Fil d’ariane */
    .breadcrumbs {
      font-size: 0.8rem;
      color: var(--vm-text-soft);
      margin-bottom: 1rem;
    }

    .breadcrumbs a {
      color: var(--vm-text-soft);
    }

    .breadcrumbs span {
      margin: 0 0.25rem;
    }

    /* Hero articles */
    .articles-hero {
      background: radial-gradient(circle at top left, rgba(255, 89, 0, 0.12), transparent 55%),
                  radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.08), transparent 55%),
                  var(--vm-white);
      border-radius: var(--vm-radius-xl);
      padding: 2rem 1.75rem;
      box-shadow: var(--vm-shadow-soft);
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
      gap: 2rem;
      margin-bottom: 2.25rem;
      border: 1px solid rgba(148, 163, 184, 0.28);
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.06);
      color: var(--vm-text-soft);
      width: fit-content;
    }

    .hero-pill span {
      font-size: 0.9rem;
    }

    .hero-title {
      font-size: 1.9rem;
      line-height: 1.15;
      letter-spacing: -0.03em;
      font-weight: 750;
      color: var(--vm-text);
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: var(--vm-text-soft);
      max-width: 32rem;
    }

    .hero-highlight {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: 0.4rem;
      font-size: 0.85rem;
    }

    .hero-highlight span {
      padding: 0.1rem 0.5rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(226, 232, 240, 0.9);
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 0.7rem;
      align-items: center;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 600;
      background: var(--vm-orange);
      color: #fff;
      box-shadow: 0 12px 28px rgba(255, 89, 0, 0.65);
      transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
    }

    .hero-cta:hover {
      transform: translateY(-1px);
      background: #ff6c1f;
      box-shadow: 0 16px 30px rgba(255, 89, 0, 0.8);
    }

    .hero-cta-secondary {
      font-size: 0.85rem;
      color: var(--vm-text-soft);
    }

    .hero-cta-secondary strong {
      color: var(--vm-text);
    }

    .hero-side {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      padding: 1.1rem;
      border-radius: var(--vm-radius-lg);
      background: rgba(15, 23, 42, 0.82);
      color: #f9fafb;
      border: 1px solid rgba(148, 163, 184, 0.5);
    }

    .hero-side-title {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(249, 250, 251, 0.7);
    }

    .hero-side-list {
      display: grid;
      gap: 0.6rem;
      font-size: 0.86rem;
    }

    .hero-side-item {
      display: flex;
      gap: 0.65rem;
      align-items: flex-start;
    }

    .hero-side-bullet {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      color: var(--vm-orange);
      flex-shrink: 0;
    }

    .hero-side-item strong {
      display: block;
      font-weight: 600;
      margin-bottom: 0.1rem;
    }

    .hero-side-item p {
      color: rgba(209, 213, 219, 0.96);
    }

    /* Filtres catégories */
    .articles-filters {
      margin-bottom: 1.25rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      align-items: center;
      justify-content: space-between;
    }

    .filters-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .filter-chip {
      padding: 0.28rem 0.8rem;
      font-size: 0.8rem;
      border-radius: 999px;
      border: 1px solid var(--vm-border);
      background: #fff;
      color: var(--vm-text-soft);
      cursor: pointer;
      transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
    }

    .filter-chip:hover {
      transform: translateY(-1px);
      border-color: rgba(148, 163, 184, 0.9);
    }

    .filter-chip.active {
      background: var(--vm-orange-soft);
      border-color: rgba(255, 89, 0, 0.25);
      color: var(--vm-orange);
      font-weight: 600;
    }

    /* Liste d’articles */
    .articles-section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.75rem;
    }

    .articles-section-header h2 {
      font-size: 1.2rem;
      font-weight: 650;
    }

    .articles-count {
      font-size: 0.85rem;
      color: var(--vm-text-soft);
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.25rem;
    }

    .article-card {
      background: #fff;
      border-radius: var(--vm-radius-lg);
      padding: 1.1rem 1.1rem 1.2rem;
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
      position: relative;
      overflow: hidden;
    }

    .article-card::after {
      content: "";
      position: absolute;
      inset: auto -20%;
      top: 0;
      height: 3px;
      background: linear-gradient(90deg, rgba(255, 89, 0, 0.9), rgba(255, 159, 64, 0.9));
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
      border-color: rgba(148, 163, 184, 0.8);
      background: #fdfdfd;
    }

    .article-card:hover::after {
      opacity: 1;
      transform: translateY(0);
    }

    .article-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      font-size: 0.75rem;
    }

    .article-tag {
      padding: 0.18rem 0.55rem;
      border-radius: 999px;
      background: rgba(255, 89, 0, 0.09);
      color: var(--vm-orange);
      font-weight: 600;
    }

    .article-extra {
      color: var(--vm-text-soft);
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
    }

    .article-extra span {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .article-title {
      font-size: 1.02rem;
      font-weight: 650;
      letter-spacing: -0.01em;
    }

    .article-excerpt {
      font-size: 0.9rem;
      color: var(--vm-text-soft);
    }

    .article-footer {
      margin-top: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      font-size: 0.82rem;
    }

    .article-link {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-weight: 600;
      color: var(--vm-orange);
    }

    .article-link span:last-child {
      font-size: 0.9rem;
      margin-top: 1px;
    }

    .article-badge {
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      border: 1px dashed rgba(148, 163, 184, 0.7);
      color: var(--vm-text-soft);
    }

    @media (max-width: 860px) {
      .articles-hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 1.5rem 1.25rem;
      }

      .hero-side {
        padding: 1rem;
      }

      .header-inner {
        padding-inline: 1rem;
      }
    }

    @media (max-width: 640px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .header-right {
        width: 100%;
        justify-content: space-between;
      }

      .nav-links {
        order: 2;
      }

      .store-badges {
        order: 1;
      }

      .articles-hero {
        margin-bottom: 1.7rem;
      }

      .articles-filters {
        flex-direction: column;
        align-items: flex-start;
      }
    }