/* Base */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0f172a;
  color: #f8fafc;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}


/* Buttons */

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 500;
}


/* Header */

.header {
  background: #020617;
  border-bottom: 1px solid #1e293b;
}

.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: auto;
  width: auto;
  cursor: pointer;
  margin-left: -50px;
  margin-bottom: -20px;
}
.nav-links {
  display: flex;
  gap: 25px;
}

.logo img {
  width: 290px;
  height: 220px;
}


/* Hero */

.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #020617,
    #0f172a
  );
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #cbd5f5;
}


/* Features */

.features {
  padding: 80px 0;
  background: #020617;
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #0f172a;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #1e293b;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #2dd4bf;
}


/* Steps */

.steps {
  padding: 80px 0;
}

.steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

.step-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
}

.step span {
  background: #2563eb;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}


/* Download */

.download {
  padding: 80px 0;
  background: #020617;
}

.download-box {
  text-align: center;
  background: #0f172a;
  padding: 50px;
  border-radius: 16px;
  border: 1px solid #1e293b;
}

.download-box h2 {
  margin-bottom: 15px;
}

.download-box p {
  margin-bottom: 25px;
  color: #cbd5f5;
}

.download-box small {
  display: block;
  margin-top: 15px;
  color: #94a3b8;
}


/* Footer */

.footer {
  padding: 40px 0;
  background: #020617;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}
