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

body {
  font-family: "Consolas", "Monaco", monospace;
  background: #0c0c14;
  color: #e8e8e8;
  line-height: 1.6;
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

.nav {
  padding: 1rem 2rem;
  position: relative;
  z-index: 2;
}

.brand {
  font-size: 1rem;
  font-weight: 400;
  color: #00d4aa;
  letter-spacing: 2px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 8rem 2rem;
}

.hero-label {
  font-size: 0.75rem;
  color: #00d4aa;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.hero p {
  font-size: 1rem;
  color: #888;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: transparent;
  color: #00d4aa;
  text-decoration: none;
  border: 1px solid #00d4aa;
  font-size: 0.8125rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #00d4aa;
  color: #0c0c14;
}

.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  opacity: 0.1;
}

.grid-pattern {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#00d4aa 1px, transparent 1px), linear-gradient(90deg, #00d4aa 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Approach */
.approach {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.approach-header {
  margin-bottom: 4rem;
}

.label {
  display: block;
  font-size: 0.6875rem;
  color: #00d4aa;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.approach h2 {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.approach-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 212, 170, 0.1);
  transition: border-color 0.3s ease;
}

.approach-card:hover {
  border-color: rgba(0, 212, 170, 0.4);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon {
  color: #00d4aa;
  font-size: 1.25rem;
}

.approach-card h3 {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Segoe UI", system-ui, sans-serif;
}

.approach-card p {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer p {
  font-size: 0.75rem;
  color: #666;
}

@media (max-width: 768px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
