/* Upper Left Web Designs — Coming Soon page */

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #f1f5f9;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  padding: 2rem;
  max-width: 600px;
}

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 1px;
  margin-bottom: 0.25em;
}

h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 0.75em;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5e1;
}

.divider {
  width: 60px;
  height: 2px;
  background: #38bdf8;
  margin: 1.5rem auto;
  border-radius: 2px;
}

.sub {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.2s ease;
}

.button:hover {
  background: #7dd3fc;
  transform: translateY(-2px);
}
