:root {
  --ink: #14213D;
  --paper: #F7F8FC;
  --paper-raised: #FFFFFF;
  --brand: #3558E0;
  --brand-dark: #233AA2;
  --accent: #F28C38;
  --accent-bg: #FFF1E5;
  --line: #DDE3F0;
  --text-soft: #5E6A83;
  --ok: #1F7A4D;
  --ok-bg: #E8F6EE;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: -0.02em; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

#age-gate {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(28, 43, 58, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
#age-gate.hidden { display: none; }
.gate-card {
  background: var(--paper-raised);
  max-width: 440px; width: 100%;
  padding: 40px 36px; border-radius: 4px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.gate-card .eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.gate-card h2 { font-size: 26px; margin-bottom: 12px; }
.gate-card p { color: var(--text-soft); font-size: 15px; margin-bottom: 28px; }
.gate-buttons { display: flex; gap: 12px; }
.gate-buttons button {
  flex: 1; padding: 13px 0; font-size: 15px; font-weight: 500;
  border-radius: 3px; border: 1px solid var(--ink); cursor: pointer;
  font-family: 'Manrope', sans-serif;
}
#gate-yes { background: var(--ink); color: var(--paper); }
#gate-no { background: transparent; color: var(--ink); }
.gate-refusal { display: none; margin-top: 18px; font-size: 13px; color: var(--text-soft); }
.gate-refusal.show { display: block; }

header.site {
  border-bottom: 1px solid rgba(221, 227, 240, 0.7);
  background: rgba(232, 238, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 50;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { width: 30px; height: 30px; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 700; }
.logo-text span { color: var(--brand); }
nav.main-links { display: flex; gap: 28px; font-size: 14px; }
nav.main-links a { text-decoration: none; color: var(--text-soft); }
nav.main-links a:hover { color: var(--ink); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-block; text-align: center; font-size: 14px; font-weight: 600;
  padding: 12px 20px; border-radius: 4px; text-decoration: none; cursor: pointer;
  font-family: 'Manrope', sans-serif; border: 1px solid var(--ink);
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.8; }
.btn-primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.fiche-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(53, 88, 224, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 45% at 90% 10%, rgba(242, 140, 56, 0.14), transparent 50%),
    linear-gradient(165deg, #E8EEFF 0%, #F4F6FB 45%, #FFF6EC 100%);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: 13px; color: var(--text-soft); margin-bottom: 22px;
}
.breadcrumb a { text-decoration: none; color: var(--brand); }
.breadcrumb a:hover { text-decoration: underline; }
.fiche-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(20, 33, 61, 0.06);
}
.brand-mark img {
  height: 40px; width: auto; max-width: 200px;
  object-fit: contain; display: block;
}
.fiche-hero .eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand); display: block; margin-bottom: 10px;
}
.fiche-hero h1 { font-size: 38px; line-height: 1.15; margin-bottom: 14px; }
.fiche-hero .lead { font-size: 17px; color: var(--text-soft); max-width: 560px; margin-bottom: 22px; }
.stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; margin-bottom: 18px; }
.stars .muted { color: var(--line); }
.stars .score {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; color: var(--text-soft); letter-spacing: 0; margin-left: 8px;
}

.summary-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08);
}
.summary-card h2 {
  font-size: 15px; margin-bottom: 16px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); font-weight: 500;
}
.summary-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14px;
}
.summary-row:last-of-type { border-bottom: none; margin-bottom: 18px; }
.summary-row .label { color: var(--text-soft); }
.summary-row .val { font-weight: 600; text-align: right; }
.summary-row .val.ok { color: var(--ok); }

.seal {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.04em;
  color: var(--brand-dark); border: 1px solid var(--brand); border-radius: 3px;
  padding: 4px 8px; text-transform: uppercase; margin-bottom: 14px;
}

.fiche-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  padding: 56px 0 72px;
  align-items: start;
}
.fiche-main > section { margin-bottom: 48px; }
.fiche-main > section:last-child { margin-bottom: 0; }

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand); display: block; margin-bottom: 8px;
}
.fiche-main h2 { font-size: 26px; margin-bottom: 14px; }
.fiche-main h3 { font-size: 18px; margin: 22px 0 10px; }
.fiche-main p { color: var(--text-soft); font-size: 15px; margin-bottom: 14px; }
.fiche-main ul, .fiche-main ol {
  color: var(--text-soft); font-size: 15px;
  padding-left: 20px; margin-bottom: 14px;
}
.fiche-main li { margin-bottom: 8px; }
.fiche-main li strong { color: var(--ink); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.info-tile {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}
.info-tile h3 { font-size: 15px; margin: 0 0 8px; }
.info-tile p { font-size: 14px; margin: 0; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.pc-box {
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--line);
}
.pc-box.pros { background: var(--ok-bg); border-color: #C5E6D2; }
.pc-box.cons { background: var(--accent-bg); border-color: #F2D3BA; }
.pc-box h3 { font-size: 16px; margin: 0 0 12px; }
.pc-box ul { margin: 0; padding-left: 18px; }
.pc-box li { font-size: 14px; margin-bottom: 8px; color: var(--ink); }

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.checklist li {
  position: relative;
  padding: 12px 14px 12px 40px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--ink);
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 14px; top: 12px;
  color: var(--ok); font-weight: 700;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  margin-bottom: 16px;
  align-items: start;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; color: var(--brand);
  background: #EDF2FF;
  border-radius: 6px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
.steps strong { display: block; color: var(--ink); margin-bottom: 4px; }
.steps span { color: var(--text-soft); font-size: 14px; }

.fiche-side {
  position: sticky;
  top: 88px;
}
.side-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: 0 8px 22px rgba(20, 33, 61, 0.04);
}
.side-card h3 {
  font-size: 14px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-soft); font-weight: 500;
  margin-bottom: 14px;
}
.side-card .btn { width: 100%; margin-bottom: 10px; }
.side-card .btn:last-child { margin-bottom: 0; }
.side-note { font-size: 12px; color: var(--text-soft); margin-top: 12px; line-height: 1.5; }
.other-ops { display: flex; flex-direction: column; gap: 10px; }
.other-ops a {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.15s ease;
}
.other-ops a:hover { border-color: var(--brand); }
.other-ops img { height: 22px; width: auto; max-width: 110px; object-fit: contain; }
.other-ops span { font-size: 12px; color: var(--text-soft); margin-left: auto; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 16px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 16px; color: var(--ink);
}
.faq-q .plus { font-family: 'IBM Plex Mono', monospace; font-size: 18px; color: var(--brand); }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding-bottom: 16px; font-size: 14px; color: var(--text-soft); }

.responsible {
  background: var(--accent-bg); border: 1px solid #F2D3BA; border-radius: 10px;
  padding: 28px; margin: 0 0 56px;
}
.responsible h2 { font-size: 22px; margin-bottom: 10px; }
.responsible p { font-size: 14px; color: #6A4E34; margin-bottom: 14px; }
.helpline {
  display: inline-flex; align-items: baseline; gap: 10px;
  background: #fff; border-radius: 4px; padding: 10px 16px;
  font-family: 'IBM Plex Mono', monospace; margin-bottom: 14px;
}
.helpline .num { font-size: 18px; font-weight: 700; color: var(--accent); }
.helpline .sub { font-size: 12px; color: var(--text-soft); }
.reg-badges {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 8px;
}
.reg-badges a {
  display: inline-flex; align-items: center; justify-content: center;
  background: #1A2333;
  border: 1px solid #2C3A52;
  border-radius: 8px;
  padding: 10px 14px; text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.reg-badges a:hover {
  border-color: #4A5F82;
  background: #121925;
}
.reg-badges img { height: 28px; width: auto; max-width: 120px; object-fit: contain; }

footer.site {
  background: var(--ink); color: #C6CDD6; padding: 52px 0 28px;
}
.footer-risk {
  font-size: 14px; line-height: 1.7; color: #E8ECF2;
  border-bottom: 1px solid #33465A;
  padding-bottom: 24px; margin-bottom: 28px; max-width: 820px;
}
.footer-risk strong { color: #fff; }
.footer-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: #fff;
  margin-bottom: 22px;
}
.footer-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-bottom: 1px solid #33465A;
  padding-bottom: 28px; margin-bottom: 24px;
}
.footer-block h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 600; color: #fff;
  margin-bottom: 10px;
}
.footer-block p {
  font-size: 12px; line-height: 1.7; color: #9AA5B1;
}
.footer-block a {
  color: #C9D4FF; text-decoration: underline; text-underline-offset: 2px;
}
.footer-block a:hover { color: #fff; }
.footer-block ul {
  list-style: none; padding: 0; margin: 10px 0 0;
}
.footer-block ul li { margin-bottom: 6px; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; }
.footer-links a { text-decoration: none; color: #9AA5B1; }
.footer-links a:hover { color: #fff; }
.footer-base { margin-top: 24px; font-size: 12px; color: #6E7B8A; }

.update-stamp {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; color: var(--text-soft);
  margin-top: 8px;
}

.legal-page {
  padding: 48px 0 72px;
}
.legal-page .crumb {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.legal-page .crumb a {
  color: var(--brand);
  text-decoration: none;
}
.legal-page .crumb a:hover { text-decoration: underline; }
.legal-page .crumb span { margin: 0 8px; color: var(--line); }
.legal-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.prose {
  max-width: 760px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 10px 28px rgba(20, 33, 61, 0.05);
}
.prose h1 {
  font-size: 34px;
  margin-bottom: 18px;
  line-height: 1.15;
}
.prose h2 {
  font-size: 20px;
  margin: 28px 0 12px;
}
.prose p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.prose ul {
  padding-left: 20px;
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 15px;
}
.prose li { margin-bottom: 8px; }
.prose a { color: var(--brand); }
.prose code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  background: #EDF2FF;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}

@media (max-width: 900px) {
  .fiche-hero-grid, .fiche-layout, .pros-cons, .info-grid { grid-template-columns: 1fr; }
  .fiche-side { position: static; }
  .footer-blocks { grid-template-columns: 1fr; gap: 22px; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { position: relative; flex-wrap: wrap; }
  nav.main-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 3;
    margin-top: 12px;
    padding: 8px 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(20, 33, 61, 0.08);
  }
  nav.main-links.is-open { display: flex; }
  nav.main-links a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
  }
  nav.main-links a:last-child { border-bottom: none; }
  .fiche-hero h1 { font-size: 30px; }
  .prose { padding: 24px 20px; }
  .prose h1 { font-size: 28px; }
}
