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

:root {
  --bg-color: #070810;
  --bg-card: rgba(17, 19, 34, 0.7);
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --accent-magenta: #D946EF;
  --accent-orange: #FF6B6B;
  --accent-peach: #FF8E53;
  --glow-magenta: rgba(217, 70, 239, 0.4);
  --glow-orange: rgba(255, 107, 107, 0.3);
  --border-color: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Gradients (WARM & VIBRANT) */
.bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  filter: blur(100px);
  z-index: -1;
  border-radius: 50%;
  opacity: 0.6;
}
.glow-top-left { 
  top: -200px; 
  left: -200px; 
  background: radial-gradient(circle, var(--glow-magenta) 0%, rgba(0,0,0,0) 70%);
}
.glow-bottom-right { 
  bottom: -200px; 
  right: -200px; 
  background: radial-gradient(circle, var(--glow-orange) 0%, rgba(0,0,0,0) 70%); 
}
.glow-center {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 142, 83, 0.15) 0%, rgba(0,0,0,0) 60%);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5%;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 16, 0.6);
}
.logo {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}
.logo span {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-nav {
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}
.btn-nav:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(255,107,107,0.1), rgba(217,70,239,0.1));
  color: var(--accent-peach);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 142, 83, 0.3);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
}
.hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  color: #fff;
  max-width: 900px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 48px;
  font-weight: 400;
}

/* MAGIC Primary Button */
.btn-magic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 48px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-magenta));
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  animation: pulse-magic 2s infinite;
}
.btn-magic:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.6), inset 0 2px 0 rgba(255,255,255,0.3);
}
@keyframes pulse-magic {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(255, 107, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

/* Illustration Hero */
.hero-illustration {
  margin-top: 64px;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(217, 70, 239, 0.2);
  border: 1px solid rgba(255,255,255,0.1);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* How It Works Section */
.section-steps {
  padding: 100px 0;
}
.steps-header {
  text-align: center;
  margin-bottom: 64px;
}
.steps-header h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 142, 83, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 142, 83, 0.1);
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-magenta));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}
.step-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* Big Image Section */
.section-image-split {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.image-split-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.image-split-text p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.split-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

@media (max-width: 900px) {
  .section-image-split { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; }
  .btn-magic { padding: 16px 32px; font-size: 18px; }
  .feature-row, .feature-row.reverse { flex-direction: column; text-align: center; }
  .feature-visual { border-left: none; border-top: 4px solid var(--accent-color); }
}

/* Feature Rows for Funnel */
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}
.feature-row.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
}
.feature-visual {
  flex: 1;
  border-left: 4px solid var(--accent-color);
}
