@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Syne:wght@600;700;800&display=swap");

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body.coming-soon {
  font-family: var(--font-sans, "DM Sans", system-ui, sans-serif);
  color: var(--text, #1e293b);
  background: var(--bg, #fafaf8);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.coming-soon::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(26, 138, 128, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(184, 148, 63, 0.07), transparent 50%);
}

.cs-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.25rem 1.25rem 0.5rem;
  text-align: center;
}

.cs-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem 3rem;
}

.cs-card {
  width: min(560px, 100%);
  text-align: center;
  background: var(--bg-elevated, #fff);
  border: 1px solid var(--line, rgba(15, 23, 42, 0.1));
  border-radius: var(--radius, 18px);
  box-shadow: var(--shadow, 0 12px 40px rgba(15, 23, 42, 0.08));
  padding: 2rem 2rem 2rem;
}

.cs-logo {
  display: inline-block;
  text-decoration: none;
}
.cs-logo img {
  height: auto;
  width: min(380px, 92vw);
  max-height: 140px;
  display: block;
  object-fit: contain;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #1a8a80);
  background: var(--teal-light, #e6f5f3);
  border: 1px solid rgba(26, 138, 128, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  margin: 0 0 1.25rem;
}
.cs-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent, #1a8a80);
  animation: cs-pulse 1.8s ease-in-out infinite;
}

@keyframes cs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.cs-card h1 {
  font-family: var(--font-display, "Syne", system-ui, sans-serif);
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--ink, #0f172a);
}
.cs-card h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-soft, #8a6d2b), var(--gold, #b8943f));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-lead {
  margin: 0 auto 1.5rem;
  max-width: 38ch;
  color: var(--muted, #64748b);
  font-size: 1rem;
  line-height: 1.65;
}

.cs-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.cs-features li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-soft, #f3f2ef);
  border: 1px solid var(--line, rgba(15, 23, 42, 0.1));
  color: var(--muted, #64748b);
}

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

.cs-contact {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line, rgba(15, 23, 42, 0.1));
}
.cs-contact p {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: var(--muted, #64748b);
}
.cs-contact a {
  color: var(--accent, #1a8a80);
  font-weight: 600;
  text-decoration: none;
}
.cs-contact a:hover { text-decoration: underline; }

.cs-preview {
  margin-top: 1rem !important;
  font-size: 0.78rem !important;
}
.cs-preview a {
  color: var(--muted);
  font-weight: 500;
}
.cs-preview a:hover { color: var(--accent); }

.cs-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem 1.25rem 1.5rem;
  font-size: 0.72rem;
  color: var(--muted, #64748b);
  border-top: 1px solid var(--line, rgba(15, 23, 42, 0.1));
  background: rgba(255, 255, 255, 0.7);
}
.cs-footer .ruo {
  max-width: 52ch;
  margin: 0 auto 0.5rem;
  line-height: 1.5;
  color: var(--warn, #9a3412);
  font-size: 0.68rem;
}
.cs-footer a { color: var(--muted); }