@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@400;700;900&display=swap');

:root {
  --bg-color: #0b0f19;
  --surface-color: rgba(255, 255, 255, 0.03);
  --surface-border: rgba(255, 255, 255, 0.1);
  --primary-accent: #6b21a8;
  --secondary-accent: #38bdf8;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --gradient-neon: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
  --glow-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107,33,168,0.2) 0%, rgba(11,15,25,0) 70%);
  top: -200px;
  left: -200px;
  z-index: -1;
  pointer-events: none;
}
.bg-glow-2 {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, rgba(11,15,25,0) 70%);
  bottom: -200px;
  right: -200px;
  z-index: -1;
  pointer-events: none;
}

header {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--surface-border);
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.hero {
  text-align: center;
  padding: 8rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background: var(--gradient-neon);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--glow-shadow);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-border);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto 6rem auto;
}

.tool-card {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.tool-icon {
  width: 60px;
  height: 60px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--secondary-accent);
}

.tool-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.tool-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.steps-section {
  background: rgba(0,0,0,0.3);
  padding: 6rem 5%;
  border-top: 1px solid var(--surface-border);
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--glow-shadow);
}

.step h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

footer {
  text-align: center;
  padding: 3rem;
  border-top: 1px solid var(--surface-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .steps-container {
    flex-direction: column;
    gap: 3rem;
  }
}
