/* =========================
   AIMILES.NET — SAFE CSS
   ========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0b0f14;
  color: #ffffff;
  line-height: 1.6;
}

/* Links */
a {
  color: #7dd3fc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Layout */
.container {
  width: 92%;
  max-width: 1100px;
  margin: auto;
}

/* Top bar */
.topbar {
  background: #0f1722;
  border-bottom: 1px solid #1f2937;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.pill {
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  border: 1px solid #1f2937;
  border-radius: 20px;
}
.topbar-text {
  font-size: 13px;
  color: #cbd5e1;
}
.topbar-link {
  font-size: 13px;
  font-weight: bold;
}

/* Header */
.header {
  border-bottom: 1px solid #1f2937;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid #1f2937;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.brand-name {
  font-weight: bold;
}
.brand-tag {
  font-size: 12px;
  color: #9ca3af;
}

/* Navigation */
.nav {
  display: flex;
  gap: 16px;
}
.nav a {
  font-size: 14px;
  color: #cbd5e1;
}
.nav-cta {
  padding: 8px 12px;
  border: 1px solid #1f2937;
  border-radius: 6px;
}

/* Hero */
.hero {
  padding: 60px 0;
}
.hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}
.hero p {
  color: #cbd5e1;
  max-width: 650px;
}
.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid #1f2937;
  font-weight: bold;
  cursor: pointer;
}
.btn.primary {
  background: #2563eb;
  color: #ffffff;
}
.btn.primary:hover {
  background: #1d4ed8;
}
.btn.ghost {
  background: transparent;
}
.btn.subtle {
  background: #111827;
}
.btn.full {
  width: 100%;
  text-align: center;
}

/* Sections */
.section {
  padding: 50px 0;
  border-top: 1px solid #1f2937;
}
.section.alt {
  background: #0f1722;
}
.section-head h2 {
  margin-bottom: 8px;
}
.muted {
  color: #9ca3af;
}

/* Cards */
.card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 8px;
  padding: 20px;
}

/* Grids */
.grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Forms */
form label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  background: #0b0f14;
  border: 1px solid #1f2937;
  color: #ffffff;
  border-radius: 6px;
}

/* Footer */
.footer {
  border-top: 1px solid #1f2937;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .hero h1 {
    font-size: 28px;
  }
}