/* Konelinkki – Coming Soon (logo as SVG, blue button) */
:root {
  --bg: #0f1115;
  --fg: #f7f7f7;
  --muted: #c7c7c7;
  --card: #171a21;
  --border: #272a33;
  --radius: 18px;
  --accent: #0069b4; /* logo blue */
  --accent-hover: #005a9b;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 50% -200px, #1b2230 0%, var(--bg) 60%);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 720px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.logo {
  display: block;
  width: min(360px, 70vw);
  height: auto;
  margin: 8px auto 18px;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,.35));
}

h1 {
  margin: 0 0 6px;
  font-size: clamp(26px, 3.8vw, 36px);
  letter-spacing: .2px;
}

.tagline {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(14px, 2.6vw, 16px);
}

.intro-text {
  margin: 16px 0 22px;
  font-size: clamp(14px, 2.8vw, 16px);
  color: var(--fg);
}

.btn {
  display: inline-block;
  margin: 8px 0 24px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn:hover,
.btn:focus {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.divider {
  margin: 20px auto 16px;
  width: 70%;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, #343a46 35%, #343a46 65%, transparent);
}

.contact {
  font-style: normal;
  font-size: clamp(15px, 2.8vw, 17px);
}

.contact a {
  color: #a3d3ff;
  text-decoration: none;
}

.contact a:hover,
.contact a:focus {
  text-decoration: underline;
  outline: none;
}

.footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  opacity: .85;
}
