body.page-visibilite {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 100% 70% at 50% -20%, rgba(76, 130, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(16, 185, 129, 0.1), transparent 50%),
    var(--apple-bg, #0f0f14);
}

.vis-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 4rem;
}

.vis-hero {
  text-align: center;
  padding: 2rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.vis-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(124, 58, 237, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(16, 185, 129, 0.2), transparent 50%);
  pointer-events: none;
}

.vis-hero__inner {
  position: relative;
  z-index: 1;
}

.vis-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6ee7b7;
}

.vis-hero h1 {
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.vis-lead {
  color: var(--apple-text-secondary, #86868b);
  max-width: 640px;
  margin: 0 auto 1.25rem;
  line-height: 1.65;
  font-size: 1.05rem;
}

.vis-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.vis-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.vis-btn--primary {
  background: linear-gradient(135deg, #4c82ff, #7f53ff);
  color: #fff;
}

.vis-btn--ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
}

.vis-section {
  margin-bottom: 1.75rem;
  padding: 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

body.light-theme .vis-section {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

.vis-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.vis-section > p {
  margin: 0 0 1rem;
  color: var(--apple-text-secondary, #86868b);
  line-height: 1.6;
}

.vis-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .vis-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.vis-card {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
}

body.light-theme .vis-card {
  background: #f9f9fb;
}

.vis-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.vis-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--apple-text-secondary, #86868b);
  line-height: 1.55;
}

.vis-card code {
  font-size: 0.85em;
}

.vis-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  counter-reset: vis-step;
}

.vis-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  counter-increment: vis-step;
}

.vis-steps li::before {
  content: counter(vis-step);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #4c82ff, #7f53ff);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.vis-steps strong {
  display: block;
  margin-bottom: 0.2rem;
}

.vis-steps span {
  font-size: 0.9rem;
  color: var(--apple-text-secondary, #86868b);
  line-height: 1.5;
}

.vis-faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
}

.vis-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.vis-faq p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--apple-text-secondary, #86868b);
  line-height: 1.55;
}

.vis-back {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--okdak-accent, #4c82ff);
  text-decoration: none;
  font-size: 0.9rem;
}

.vis-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--apple-text-secondary, #86868b);
}

.vis-footer a {
  color: var(--okdak-accent, #4c82ff);
}
