/* Page d'attente KGD Agency — header uniquement */

:root {
  --bg: #08080c;
  --fg: #fafafa;
  --fg-muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
  --kgd-blue: #1e5fe8;
  --kgd-purple: #7b3fe4;
  --kgd-pink: #d633a8;
  --kgd-coral: #ff5a36;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Segoe UI", system-ui, sans-serif;
}

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

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gradient-kgd {
  background: linear-gradient(
    135deg,
    var(--kgd-blue),
    var(--kgd-purple),
    var(--kgd-pink),
    var(--kgd-coral)
  );
}

.attente-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  overflow: hidden;
  text-align: center;
}

.attente-hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.attente-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.85;
}

.attente-hero__blob--1 {
  width: 600px;
  height: 600px;
  top: -10%;
  left: 5%;
  background: var(--kgd-blue);
}

.attente-hero__blob--2 {
  width: 700px;
  height: 700px;
  top: 20%;
  left: 60%;
  background: var(--kgd-purple);
}

.attente-hero__blob--3 {
  width: 550px;
  height: 550px;
  top: 60%;
  left: 15%;
  background: var(--kgd-pink);
}

.attente-hero__blob--4 {
  width: 650px;
  height: 650px;
  top: 50%;
  left: 70%;
  background: var(--kgd-coral);
}

@keyframes animStar {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-2000px);
  }
}

.kgd-stars-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.stars-layer {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border-radius: 50%;
}

.stars-1 {
  width: 1px;
  height: 1px;
  box-shadow:
    234px 124px rgba(255, 255, 255, 0.85),
    654px 345px rgba(255, 255, 255, 0.7),
    876px 12px rgba(167, 139, 250, 0.75),
    1200px 800px rgba(255, 255, 255, 0.8),
    400px 1500px rgba(255, 255, 255, 0.65),
    1800px 200px rgba(123, 63, 228, 0.6);
  animation: animStar 50s linear infinite;
}

.stars-2 {
  width: 2px;
  height: 2px;
  opacity: 0.75;
  box-shadow:
    123px 456px rgba(255, 255, 255, 0.9),
    789px 234px rgba(123, 63, 228, 0.7),
    456px 890px rgba(255, 255, 255, 0.75),
    1100px 300px rgba(255, 255, 255, 0.8);
  animation: animStar 80s linear infinite;
}

.attente-hero__content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
}

.attente-logo {
  display: inline-block;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.attente-logo:hover {
  transform: scale(1.03);
}

.attente-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(8, 8, 12, 0.6);
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.attente-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
}

.attente-hero__title span {
  display: block;
  margin-top: 0.25rem;
  background: linear-gradient(
    135deg,
    var(--kgd-blue),
    var(--kgd-purple),
    var(--kgd-coral)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.attente-hero__intro {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--fg-muted);
}

.attente-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.attente-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.attente-btn--primary {
  color: #fff;
  box-shadow: 0 8px 32px rgba(123, 63, 228, 0.25);
}

.attente-btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(123, 63, 228, 0.35);
}

.attente-btn--ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
}

.attente-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .stars-1,
  .stars-2 {
    animation: none;
  }

  .attente-btn,
  .attente-logo {
    transition: none;
  }
}
