:root {
  --bg: #0b0b0b;
  --surface: #141414;
  --surface-soft: #1c1c1c;
  --text: #f6f6f6;
  --muted: #c8c8c8;
  --highlight: #f1d600;
  --highlight-text: #111;
  --border: #2b2b2b;
  --danger: #ff8686;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.bg-noise,
.bg-grid,
.bg-vignette {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 11, 11, 0.95);
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  gap: 0.9rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--highlight);
}

main {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1.2rem 3rem;
}

.hero {
  background: linear-gradient(160deg, #181818, #101010);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
}

.eyebrow {
  margin: 0;
  color: var(--highlight);
  font-size: 0.85rem;
  font-weight: 600;
}

h1 {
  margin: 0.5rem 0 0.7rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.lead {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.7;
}

.lead.compact {
  margin-bottom: 1rem;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: var(--highlight);
  color: var(--highlight-text);
  text-decoration: none;
  border: 1px solid var(--highlight);
  border-radius: 10px;
  padding: 0.62rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.panel-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.status-board {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.status-board h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.status-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.status-card {
  background: #101010;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem;
}

.status-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}

.status-card strong {
  color: var(--highlight);
  font-size: 0.98rem;
}

.status-meta {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-wrap {
  max-width: 560px;
  margin: 1.2rem auto 0;
}

.card-form,
.account-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

input {
  width: 100%;
  margin-top: 0.35rem;
  background: #0e0e0e;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

input:focus {
  outline: none;
  border-color: var(--highlight);
}

.error {
  color: var(--danger);
  font-size: 0.9rem;
}

.account-card span {
  color: var(--muted);
  display: inline-block;
  min-width: 84px;
}

.site-footer {
  max-width: 980px;
  margin: 0 auto 2rem;
  padding: 0 1.2rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--highlight);
  text-decoration: none;
}

@media (max-width: 640px) {
  .hero {
    padding: 1.4rem 1.2rem;
  }
}
