:root {
  --brand:#ffffff;
  --accent:#10b981;
  --fg:#ffffff;
  --muted:#D1D1D1;
  --line:#2a2a2a;
}

* { box-sizing:border-box; margin:0; padding:0; }

body {
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:#000;
  color:var(--fg);
  line-height:1.5;
}

.wrap { max-width:1040px; margin:28px auto; padding:0 16px; }

.header { display:flex; align-items:center; gap:14px; margin-bottom:24px; }
.logo { width:42px; height:42px; object-fit:contain; }
.brand h1 { font-size:22px; margin:0; }
.tag { font-size:14px; color:var(--muted); }
nav { margin-left:auto; display:flex; gap:20px; }
nav a { color:var(--fg); text-decoration:none; font-size:15px; }
nav a:hover { color:var(--accent); }

.card {
  background:#1A1A1A;
  padding:24px;
  border-radius:14px;
  margin-bottom:20px;
}

h2 { margin-bottom:12px; font-size:20px; }

.btn {
  padding:11px 16px;
  border:0;
  border-radius:10px;
  cursor:pointer;
  font-size:15px;
}
.btn.acc {
  background:linear-gradient(135deg,#22d3ee,#3b82f6);
  color:#fff;
  font-weight:600;
}
.btn.ghost { background:#444; color:#fff; }

.hero { text-align:center; margin:40px 0; }
.hero h2 { font-size:26px; margin-bottom:10px; }
.hero p { color:var(--muted); margin-bottom:20px; }
.hero .btn { font-size:16px; }

.features { display:grid; grid-template-columns:1fr 1fr 1fr; gap:20px; }
@media(max-width:900px){ .features { grid-template-columns:1fr; } }
.features .card h3 { margin-bottom:8px; }

.tools-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  margin-top:20px;
}
.tool-card {
  background:#2a2a2a;
  border-radius:12px;
  padding:18px;
  text-align:center;
  transition:0.2s;
}
.tool-card:hover { background:#333; transform:translateY(-2px); }
.tool-card h3 { margin:0 0 10px; font-size:18px; }
.tool-card p { font-size:14px; color:var(--muted); margin:0 0 14px; }
.tool-card button { @apply .btn .acc; } /* if Tailwind — otherwise below */
.tool-card button {
  padding:10px 16px;
  border:0;
  border-radius:10px;
  cursor:pointer;
  background:linear-gradient(135deg,#22d3ee,#3b82f6);
  color:#fff;
  font-weight:600;
}

footer {
  text-align:center;
  margin-top:40px;
  color:var(--muted);
  font-size:13px;
}
/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Mobile nav */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #1A1A1A;
    position: absolute;
    top: 60px;
    right: 16px;
    padding: 10px;
    border-radius: 10px;
    z-index: 999;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
footer .social {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

footer .social a {
  color: var(--muted);
  font-size: 20px;
  transition: color 0.2s ease;
}

footer .social a:hover {
  color: var(--accent2); /* nice blue gradient accent color */
}