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

:root {
  --background: hsl(220, 30%, 6%);
  --foreground: hsl(210, 40%, 98%);
  --card: hsl(220, 28%, 10%);
  --primary: hsl(263, 70%, 50%);
  --accent: hsl(16, 90%, 58%);
  --muted-foreground: hsl(215, 20%, 65%);
  --border: hsl(220, 25%, 20%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(15, 18, 28, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Page Section */
.page-section {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-in;
}

.text-primary {
  color: var(--primary);
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
}

/* Company Grid */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.company-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  animation: fadeIn 1s ease-in;
}

.company-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.company-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.company-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Story Section */
.story-section {
  margin-top: 3rem;
}

.story-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.story-text {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  color: var(--muted-foreground);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-logo {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-heading {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links,
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-list li {
  color: var(--muted-foreground);
}

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

.social-icon {
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--primary);
}

.social-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }
}