﻿/* ============================================================
   Reconnexion Divine — V0.7 Urgence spirituelle
============================================================ */

:root {
  --v05-bg: #f7f9ff;
  --v05-card: rgba(255,255,255,.92);
  --v05-text: #172033;
  --v05-muted: #63708a;
  --v05-blue: #3157d5;
  --v05-soft: #eef4ff;
  --v05-border: rgba(49,87,213,.16);
  --v05-shadow: 0 18px 45px rgba(20, 34, 70, .10);
  --v05-radius: 24px;
}

.v05-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(49, 87, 213, .14), transparent 32rem),
    linear-gradient(180deg, #f8fbff, #ffffff);
  color: var(--v05-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.v05-wrap {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.v05-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.v05-nav a {
  color: var(--v05-blue);
  text-decoration: none;
  font-weight: 700;
}

.v05-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: var(--v05-soft);
  border: 1px solid var(--v05-border);
  color: var(--v05-blue);
  font-weight: 700;
}

.v05-hero {
  padding: 34px;
  border-radius: 32px;
  background: var(--v05-card);
  box-shadow: var(--v05-shadow);
  border: 1px solid var(--v05-border);
}

.v05-hero h1 {
  margin: 12px 0;
  font-size: clamp(2.15rem, 6vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.v05-hero p {
  color: var(--v05-muted);
  font-size: 1.12rem;
  max-width: 760px;
}

.v05-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.v05-card {
  padding: 24px;
  border-radius: var(--v05-radius);
  background: var(--v05-card);
  border: 1px solid var(--v05-border);
  box-shadow: var(--v05-shadow);
}

.v05-card h2,
.v05-card h3 {
  margin-top: 0;
  letter-spacing: -.03em;
}

.v05-card p,
.v05-card li {
  color: var(--v05-muted);
}

.v05-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 999px;
  padding: .82rem 1.1rem;
  background: var(--v05-blue);
  color: white;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.v05-button.secondary {
  background: white;
  color: var(--v05-blue);
  border: 1px solid var(--v05-border);
}

.v05-state-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.v05-state-button {
  border: 1px solid var(--v05-border);
  background: #fff;
  color: var(--v05-blue);
  font-weight: 800;
  border-radius: 999px;
  padding: .75rem 1rem;
  cursor: pointer;
}

.v05-state-button:hover,
.v05-state-button.active {
  background: var(--v05-blue);
  color: #fff;
}

.v05-response {
  min-height: 170px;
  padding: 20px;
  border-radius: var(--v05-radius);
  background: linear-gradient(135deg, #ffffff, #eef4ff);
  border: 1px solid var(--v05-border);
}

.v05-breath-circle {
  width: 142px;
  height: 142px;
  margin: 18px auto;
  border-radius: 999px;
  background: radial-gradient(circle, #ffffff, #dfe8ff);
  border: 1px solid var(--v05-border);
  box-shadow: var(--v05-shadow);
  display: grid;
  place-items: center;
  color: var(--v05-blue);
  font-weight: 900;
  text-align: center;
  transition: transform 4s ease;
}

.v05-breath-circle.expand {
  transform: scale(1.18);
}

.v05-footer {
  margin-top: 36px;
  color: var(--v05-muted);
  font-size: .92rem;
  text-align: center;
}

@media (max-width: 780px) {
  .v05-grid {
    grid-template-columns: 1fr;
  }

  .v05-hero {
    padding: 24px;
  }
}