:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --secondary-text: #666666;
  --border-color: #eeeeee;
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

.logo {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
  text-transform: lowercase;
}

.tagline {
  font-size: 1.25rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
  font-weight: 300;
}

.services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.dot {
  width: 4px;
  height: 4px;
  background-color: var(--text-color);
  border-radius: 50%;
  opacity: 0.5;
}

footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--secondary-text);
}

.email-link {
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
  border-bottom: 1px solid transparent;
}

.email-link:hover {
  opacity: 0.7;
  border-bottom: 1px solid var(--text-color);
}

@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .services {
    gap: 1rem;
  }

  .dot {
    display: none;
  }
}
