* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

.hero {
  min-height: 100vh;
  background: url("hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.content {
  max-width: 560px;
  padding: 48px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0)
  );
}

.brand {
  letter-spacing: 4px;
  font-size: 20px;
  margin-bottom: 16px;
}

h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 32px;
}

ul li {
  margin-bottom: 8px;
  font-size: 18px;
}

.cta {
  display: inline-block;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.cta:hover {
  background: #222;
}

/* Mobile */
@media (max-width: 768px) {
  h2 {
    font-size: 32px;
  }

  .content {
    padding: 32px;
  }
}
