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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background: #0a0f1a;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  background: radial-gradient(ellipse at top, #1a2744 0%, #0a0f1a 70%);
  margin: 0 -2rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(59, 130, 246, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.logo {
  height: 200px;
  width: auto;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.logo-bluebonnet {
  font-size: 4rem;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 0.15em;
  line-height: 1.1;
}

.logo-code {
  font-size: 2.5rem;
  font-weight: 400;
  color: #94a3b8;
  letter-spacing: 0.4em;
  margin-top: 0.25rem;
}

.hero .tagline {
  font-size: 1.25rem;
  font-weight: 400;
  color: #94a3b8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.services {
  padding: 4rem 0;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(71, 85, 105, 0.4);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #94a3b8;
}

.contact {
  text-align: center;
  padding: 5rem 0;
}

.contact h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.contact p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.contact-link {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.875rem 2rem;
  background: #2563eb;
  border: none;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.contact-link:hover {
  background: #1d4ed8;
}

footer {
  text-align: center;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(71, 85, 105, 0.3);
  color: #64748b;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
  }

  .logo {
    height: 140px;
  }

  .logo-bluebonnet {
    font-size: 2.5rem;
  }

  .logo-code {
    font-size: 1.5rem;
  }

  .hero .tagline {
    font-size: 1rem;
  }

  .services {
    padding: 2.5rem 0;
  }

  .contact {
    padding: 2.5rem 0;
  }
}
