:root {
  --bg: #05060a;
  --card-bg: #0b0f17;
  --text-main: #ffffff;
  --text-muted: #9aa3b5;
  --accent: #33cc66;
  --border-soft: #262c3b;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(51, 204, 102, 0.16), transparent 55%),
    var(--bg);
  color: var(--text-main);
}

/* Layout principal */

.coming-soon {
  min-height: 100vh;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.topbar,
.card,
.foot {
  width: 100%;
  max-width: 720px;
}

/* Topbar */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(8, 11, 18, 0.9);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Carte centrale */

.card {
  margin-top: 0.4rem;
  padding: 1.7rem 1.6rem;
  border-radius: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
}

.card h1 {
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0;
}

.subcopy {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Formulaire minimal */

.waitlist {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.waitlist input[type="email"] {
  flex: 1 1 210px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(5, 7, 12, 0.95);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
}

.waitlist input::placeholder {
  color: #6b7280;
}

.waitlist input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(51, 204, 102, 0.35);
}

.waitlist button {
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 24px rgba(51, 204, 102, 0.3);
}

.waitlist button:hover {
  background: #2ab859;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(51, 204, 102, 0.4);
}

.waitlist button:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(51, 204, 102, 0.3);
}

/* Note */

.note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Footer */

.foot {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(38, 44, 59, 0.7);
}

.foot a {
  color: var(--accent);
  text-decoration: none;
}

.foot a:hover {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}