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

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background: var(--surface-0);
  color: var(--texte);
  padding: 32px 16px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--texte-doux);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--color-light);
}

.article-card {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 44px 40px;
}

.article-meta {
  font-size: 0.78rem;
  color: var(--texte-faible);
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #f2f5f8;
}

h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #f2f5f8;
  margin: 38px 0 12px;
  line-height: 1.3;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: #f2f5f8;
  margin: 24px 0 8px;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: #c6ccd4;
  margin-bottom: 18px;
}

.article-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.article-card li {
  font-size: 0.96rem;
  color: #c6ccd4;
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.65;
}

.article-card li::before {
  content: '\2013';
  color: var(--texte-faible);
  position: absolute;
  left: 2px;
}

strong {
  color: #eef1f5;
  font-weight: 600;
}

.article-card a {
  color: var(--color-mid);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--color-mid) 40%, transparent);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.article-card a:hover {
  color: var(--color-light);
  text-decoration-color: var(--color-light);
}

.article-card a:visited {
  color: color-mix(in srgb, var(--color-mid) 70%, #c084fc);
}

a.link {
  color: var(--color-mid);
  text-decoration: none;
  transition: color 0.2s;
}

a.link:hover {
  color: var(--color-light);
}

.article-cta {
  text-align: center;
  margin: 28px 0;
}

.article-cta .btn {
  font-size: 0.95rem;
  padding: 12px 28px;
}

.article-nav {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 20px;
  border: 1px solid var(--color-btn1);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  background: var(--color-btn1);
  transition: background-color 0.15s, border-color 0.15s;
}

.btn:hover {
  background: color-mix(in srgb, #fff 12%, var(--color-btn1));
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--line-forte);
  color: var(--texte);
}

.btn-outline:hover {
  background: var(--surface-2);
  border-color: var(--color-light);
}


.article-card a.btn, .article-card a.btn:hover, .article-card a.btn:visited {
  color: #fff;
  text-decoration: none;
}

footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--texte-faible);
  margin-top: 24px;
}

footer a {
  color: var(--texte-doux);
  text-decoration: none;
}

footer a:hover {
  color: var(--color-light);
  text-decoration: underline;
}

@media (max-width: 480px) {

  .article-card {
    padding: 28px 18px;
    border-radius: 8px;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.25rem;
  }
}


.container {
  position: relative;
  z-index: 1;
}

.article-card img.screenshot {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 28px auto;
  border: 1px solid var(--line-forte);
}


.hero-pitch {
  background: none;
  border: none;
  border-left: 3px solid var(--color-mid);
  border-radius: 0;
  padding: 4px 0 4px 20px;
  margin: 24px 0;
  text-align: left;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #d6dbe2;
}

.hero-pitch strong {
  color: #f2f5f8;
}


.value-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 20px 0 8px;
}

.value-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.86rem;
  color: var(--texte-doux);
  white-space: nowrap;
}

.value-badges span::before {
  content: '\2713';
  color: #64ab7c;
  font-weight: 700;
}


.breadcrumb {
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--texte-faible);
}

.breadcrumb a {
  color: var(--texte-doux);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-light);
  text-decoration: underline;
}


.faq-section {
  margin-top: 40px;
}

.faq-section h2 {
  margin-bottom: 20px;
}

.faq-item {
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #e6eaef;
  font-size: 0.95rem;
  font-family: inherit;
  text-align: left;
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--color-light);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-light);
  outline-offset: -2px;
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--texte-faible);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-question[aria-expanded="true"]::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2px;
  color: var(--texte-doux);
  line-height: 1.7;
  font-size: 0.93rem;
}

.faq-answer[aria-hidden="false"] {
  max-height: 600px;
  padding: 0 2px 18px;
}
