:root {
  --navy: #2D4059;
  --blue-accent: #89C4D9;
  --bg: #F0F0F2;
  --text-secondary: #5a6a7a;
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--navy);
  padding: 2rem;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.logo {
  width: clamp(260px, 60vmin, 600px);
  height: auto;
  mix-blend-mode: multiply;
}

.tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.coming-soon {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.linkedin-link:hover {
  color: var(--blue-accent);
}

.linkedin-link svg {
  flex-shrink: 0;
  transition: color 0.2s ease;
}
