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

body {
  background: #f9f9f9;
  color: #111;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 20px;
}

.logo-icon {
  height: 1.2em;
  width: auto;
}

nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

nav a:hover {
  color: #000;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px;
  min-height: 85vh;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.cta:hover {
  background: #333;
}

.demo-link {
  margin-top: 24px;
  font-size: 14px;
  color: #777;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 40px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero h1 {
    font-size: 40px;
  }
}

.img-bottom-right {
  position: fixed;
  bottom: -5vh;
  right: -5vw;
  height: 105vh;
  width: auto;
  max-width: none;
  max-height: none;
  transform: none;
  z-index: 0;
  pointer-events: none;
}