* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0b0b0e;
  color: #ffffff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  font-weight: 400;
  opacity: 0.8;
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

/* BUTTONS */
.btn {
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease;
}

.btn.primary {
  background: #6c6cff;
  color: white;
}

.btn.secondary {
  background: #1c1c24;
  color: white;
  border: 1px solid #2a2a35;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #2a2a35;
  color: white;
}

.btn.large {
  padding: 14px 28px;
  font-size: 16px;
}

.btn:hover {
  opacity: 0.85;
}

/* HERO */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
  background:
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
    repeating-linear-gradient(
      0deg,
      #14141c,
      #14141c 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      #14141c,
      #14141c 1px,
      transparent 1px,
      transparent 40px
    );
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #6c6cff;
}

.hero p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 60px;
  max-width: 1200px;
  margin: auto;
}

.feature {
  background: #14141c;
  border-radius: 14px;
  padding: 30px;
}

.feature h3 {
  margin-bottom: 10px;
}

/* PRICING */
.pricing {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 80px 60px;
}

.pricing-box {
  background: #14141c;
  border-radius: 16px;
  padding: 30px;
  width: 300px;
}

.pricing-box.highlight {
  border: 1px solid #6c6cff;
}

.pricing-box h4 {
  margin-bottom: 15px;
}

.pricing-box ul {
  list-style: none;
}

.pricing-box li {
  margin-bottom: 10px;
  opacity: 0.85;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  opacity: 0.5;
}
