/* Wilczy Sprzęt — strona tymczasowa */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --text: #ffffff;
  --muted: #a0aab5;
  --accent: #00ffe1;
  --border: rgba(0, 255, 225, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: 'Raleway', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.coming-soon {
  width: 100%;
  max-width: 28rem;
}

.coming-soon__logo {
  display: block;
  width: min(220px, 70vw);
  height: auto;
  margin: 0 auto 1.5rem;
}

.coming-soon__brand {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.coming-soon__title {
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.coming-soon__lead {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.coming-soon__contact {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(26, 26, 26, 0.6);
}

.coming-soon__contact p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.coming-soon__contact p + p {
  margin-top: 0.5rem;
}

.coming-soon__contact a {
  color: var(--text);
  text-decoration: none;
}

.coming-soon__contact a:hover {
  color: var(--accent);
}

.coming-soon__footer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}
