* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1b0f2f, #05010a);
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
}

.header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 60px;
}

.logo {
  width: 160px;
}

.content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.text h1 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 12px;
}

.text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tagline {
  font-size: 20px;
  font-weight: 500;
  color: #c4b5fd;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 24px;
}

.status {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5f2eea, #8b5cf6);
  font-size: 14px;
  margin-bottom: 24px;
}

.contact p {
  font-size: 14px;
  color: #e5e7eb;
}

.visual img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(139,92,246,0.4));
}

.footer {
  margin-top: 80px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .visual img {
    margin: 40px auto 0;
  }

  .header {
    justify-content: center;
  }
}
