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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fafafa;
  padding: 2rem;
}

.nav {
  padding: 1rem 2rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #222;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 200;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -2px;
}

.hero p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 400px;
}

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

.btn:hover {
  background: #222;
  color: #fff;
}

/* Values */
.values {
  padding: 6rem 4rem;
  border-top: 1px solid #e5e5e5;
}

.value-item {
  display: flex;
  gap: 4rem;
  padding: 3rem 0;
  border-bottom: 1px solid #e5e5e5;
  max-width: 800px;
}

.value-num {
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 1px;
  min-width: 30px;
}

.value-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.value-content p {
  color: #666;
}

/* CTA */
.cta-section {
  padding: 8rem 4rem;
  text-align: center;
  background: #222;
  color: #fff;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #999;
}

/* Footer */
.footer {
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

@media (max-width: 768px) {
  .value-item {
    flex-direction: column;
    gap: 1rem;
  }

  .values {
    padding: 4rem 2rem;
  }

  .cta-section {
    padding: 4rem 2rem;
  }

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