@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Outfit:wght@400;700&display=swap');

:root {
  --primary: #6C63FF;
  --secondary: #8ECAE6;
  --accent: #FFB703;
  --bg: #F8F9FA;
  --text: #212529;
  --glass: rgba(255, 255, 255, 0.7);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --radius: 20px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  background: radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.05) 0%, transparent 50%);
}

.hero-content {
  max-width: 500px;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #1a1a1a;
}

.hero-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  perspective: 1000px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: rotateY(0deg) rotateX(0deg);
}

.features {
  padding: 100px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.card p {
  color: #555;
}

footer {
  text-align: center;
  padding: 50px 0;
  color: #999;
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  header {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-image {
    margin-top: 50px;
    justify-content: center;
  }
}
