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

body {
  font-family: 'Inter', sans-serif;
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #020617, #0f172a);
  padding-bottom: 60px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 80px;
}

.logo-title {
  font-weight: 800;
  font-size: 28px;
}

.logo-subtitle {
  font-size: 16px;
  color: #94a3b8;
}

/* Hero */
.hero {
  margin-top: 40px;
  max-width: 700px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-alt {
  background: #020617;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.section-copy {
  max-width: 700px;
  color: #94a3b8;
}

/* GRID SYSTEM */
.grid {
  display: grid;
  gap: 24px;
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

/* Cards */
.card {
  background: #020617;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #1e293b;
  transition: 0.2s;
}

.card:hover {
  border-color: #334155;
  transform: translateY(-4px);
}

/* Guard role text */
.guard-role {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn:hover {
  background: #1d4ed8;
}

.btn-outline {
  background: transparent;
  border: 1px solid #2563eb;
}

/* Form */
.form {
  margin-top: 20px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input, select, textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #334155;
  background: #020617;
  color: white;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #2563eb;
}

/* Footer */
.site-footer {
  background: #020617;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  color: #64748b;
}

/* Responsive tweaks */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 28px;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
  }
}