@charset "UTF-8";
/* CSS Document */

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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 80px 24px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f172a, #020617);
  text-align: center;
}

.tag {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 14px;
}

.hero p {
  font-size: 18px;
  color: #cbd5f5;
}

/* Services */
.services {
  background: #020617;
}

.services .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  font-size: 16px;
  transition: all .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #2563eb;
}

/* Footer */
footer {
  background: #020617;
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
  font-size: 14px;
}
