
:root {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: #050509;
  color: #f5f5f5;
}
a {
  color: #a5b4fc;
}
header {
  padding: 14px 22px;
  background: #0b0d15;
  border-bottom: 1px solid #202332;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}
header nav a {
  color: #d3d7ff;
  margin-left: 18px;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
header nav a:hover {
  text-decoration: underline;
}
main {
  max-width: 1040px;
  margin: 24px auto 40px;
  padding: 0 16px;
}
h1 {
  font-size: 28px;
  margin-bottom: 8px;
}
h2 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 6px;
}
.sub {
  font-size: 14px;
  color: #a3a7bb;
  margin-bottom: 20px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}
.hero-text h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.hero-highlight {
  color: #f97373;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-primary {
  background: #e11d48;
  color: white;
}
.btn-primary:hover {
  background: #be123c;
}
.btn-outline {
  background: transparent;
  color: #e5e7ff;
  border: 1px solid #363b4d;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}
.card {
  background: #101320;
  border-radius: 10px;
  padding: 14px 14px 16px;
  border: 1px solid #222637;
}
.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.card p {
  margin: 0;
  font-size: 13px;
  color: #a3a7bb;
}
.badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid #64748b;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 16px;
  background: #101320;
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 9px 10px;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid #222637;
}
th {
  background: #151827;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #c3c7dd;
}
tr:last-child td {
  border-bottom: none;
}
.right {
  text-align: right;
}
.muted {
  font-size: 12px;
  color: #7d8295;
}
.panel {
  background: #101320;
  border-radius: 10px;
  padding: 16px 14px;
  margin-bottom: 16px;
  border: 1px solid #222637;
}
.panel p {
  font-size: 13px;
  color: #a3a7bb;
}
label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
}
input[type="text"],
input[type="email"],
textarea,
select,
input[type="number"] {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #34384a;
  background: #050712;
  color: #f5f5f5;
  font-size: 13px;
  margin-top: 4px;
}
textarea {
  min-height: 70px;
  resize: vertical;
}
footer {
  font-size: 11px;
  text-align: center;
  color: #62667a;
  border-top: 1px solid #202332;
  padding: 14px;
  background: #050509;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  header nav {
    margin-top: 4px;
  }
  .btn {
    width: auto;
  }
}
