* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #111111;
  color: #ffffff;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid #2a2a2a;
}

.hero-image {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-bottom: 28px;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 2px;
}

.tagline {
  margin: 10px 0 28px;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: #3b82f6;
  font-weight: 700;
}

.button {
  display: inline-block;
  padding: 12px 22px;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid #3b82f6;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: #3b82f6;
  transform: translateY(-2px);
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px;
  text-align: center;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(2rem, 5vw, 3rem);
}

.section p {
  max-width: 700px;
  margin: 0 auto 18px;
  color: #d6d6d6;
  font-size: 1.1rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: #1b1b1b;
  border: 1px solid #333333;
  border-radius: 14px;
  padding: 28px;
}

.card h3 {
  margin-top: 0;
  color: #3b82f6;
  font-size: 1.6rem;
}

.card p {
  margin-bottom: 0;
}

.coming-soon {
  padding-top: 30px;
}

footer {
  padding: 32px 20px;
  text-align: center;
  color: #888888;
  border-top: 1px solid #2a2a2a;
}

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

  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.benefits {
    display: inline-block;
    text-align: left;
    padding-left: 1.5rem;
    margin-top: 4px;
}

.benefits li {
    margin-bottom: 8px;
}

.section p {
    margin-bottom: 6px;
}

.section H3 {
    margin-bottom: 0;
}