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

body {
 min-height: 100vh;
 background: #ffffff;
 color: #111111;
 display: flex;
 align-items: center;
 justify-content: center;
 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wrapper {
 text-align: center;
 padding: 2rem;
}

.logo {
 max-width: 420px;
 width: 100%;
 margin-bottom: 2.5rem;
}

.status {
 font-size: 0.95rem;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: #7c3aed; /* violet doux, rappel du "naturopathie" */
 margin-bottom: 0.75rem;
}

.subtitle {
 font-size: 0.9rem;
 color: #666666;
}
@media (max-width: 480px) {
 .logo {
  max-width: 300px;
 }

 .status {
  font-size: 0.8rem;
 }

 .subtitle {
  font-size: 0.85rem;
 }
}
