:root {
  --bg: #0f1115;
  --bg-elevated: #1a1d24;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #c2273c;
  --border: #262a33;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 48px 20px;
}

.container {
  width: 100%;
  max-width: 840px;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.tagline {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 40px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 28px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.logos img {
  height: 28px;
  width: auto;
  display: block;
}

.linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.linkedin:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

footer {
  margin-top: 48px;
  color: var(--muted);
  font-size: 0.85rem;
}
