* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #0f172a;
  color: #ffffff;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
}

.logo {
  font-size: 20px;
  font-weight: 600;
}

.logo span {
  color: #38bdf8;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
}

nav a:hover {
  color: white;
}

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 30px;
}

.cta-button {
  background: #38bdf8;
  color: black;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.cta-button:hover {
  opacity: 0.9;
}

.tools-section {
  padding: 80px 40px;
  text-align: center;
}

.tools-section h2 {
  margin-bottom: 40px;
  font-size: 28px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tool-card {
  background: #1e293b;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card h3 {
  margin-bottom: 15px;
}

.tool-card p {
  color: #94a3b8;
  margin-bottom: 20px;
}

.tool-button {
  background: #38bdf8;
  color: black;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.coming-soon {
  opacity: 0.7;
}

.soon-label {
  background: #334155;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 12px;
}

footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
  font-size: 14px;
}