/* Point at Infinity - Styles */

:root {
  --color-text: #1a1a1a;
  --color-text-muted: #666;
  --color-bg: #fafafa;
  --color-accent: #1a1a1a;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  font-size: 18px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  max-width: 600px;
  text-align: center;
}

.logo {
  width: 80px;
  height: auto;
  margin-bottom: 2rem;
  color: var(--color-accent);
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.services {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.service {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact a {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-muted);
  transition: border-color 0.2s;
}

.contact a:hover {
  border-color: var(--color-text);
}

@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  .services {
    flex-direction: column;
    gap: 0.5rem;
  }
}
