:root {
  --bg: #0b0c0e;
  --bg-2: #12141a;
  --panel: #1a1d24;
  --ink: #f4efe6;
  --muted: #9a9388;
  --amber: #e8a317;
  --amber-2: #ffc14d;
  --line: rgba(255, 244, 220, 0.1);
  --ok: #3dba7a;
  --bad: #e25b4c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --display: "Oswald", "Impact", sans-serif;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.site-footer { color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--line); margin-top: 48px; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.15rem;
}
.brand img { width: 36px; height: 36px; }
.nav { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 650;
  font-family: inherit;
  font-size: 1rem;
}
.btn-amber { background: var(--amber); color: #1a1204; }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-danger { background: transparent; border: 1px solid var(--bad); color: var(--bad); }
.kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--amber);
  font-weight: 700;
  margin: 0 0 8px;
}
h1, h2, h3 { font-family: var(--display); letter-spacing: 0.02em; line-height: 1.1; margin: 0 0 12px; }
h1 { font-size: clamp(2.2rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.lede { font-size: 1.15rem; color: #ddd6c8; max-width: 40rem; }
.muted { color: var(--muted); }
.tiny { font-size: 0.82rem; }
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,12,14,0.15) 0%, rgba(11,12,14,0.55) 45%, rgba(11,12,14,0.96) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 48px 0 56px; }
.hero-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 12px;
}
.hero-form input {
  min-height: 48px;
  min-width: min(280px, 100%);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(11,12,14,0.7);
  color: var(--ink);
  font: inherit;
}
.section { padding: 56px 0; }
.grid-3, .grid-2 { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card.featured { outline: 2px solid var(--amber); }
.price { font-family: var(--display); font-size: 2.4rem; }
.price span { font-size: 1rem; color: var(--muted); }
.pill {
  display: inline-block;
  background: rgba(232,163,23,0.16);
  color: var(--amber-2);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 420px;
}
.split img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { padding: 48px 36px; display: flex; flex-direction: column; justify-content: center; }
.checks { padding-left: 1.1rem; color: #ddd6c8; }
.lot-band { position: relative; min-height: 360px; display: grid; align-items: end; }
.lot-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lot-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,12,14,0.2), rgba(11,12,14,0.92));
}
.lot-copy { position: relative; z-index: 1; padding: 48px 0; }
.auth-box { width: min(460px, calc(100% - 32px)); margin: 48px auto 80px; }
.stack { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-size: 0.92rem; color: var(--muted); }
input, select, textarea {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
}
.check { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.check input { width: 22px; height: 22px; min-height: 22px; }
.flash {
  background: rgba(61,186,122,0.12);
  border: 1px solid rgba(61,186,122,0.35);
  color: #d7ffe8;
  padding: 12px 14px;
  border-radius: 12px;
  margin: 12px 0;
}
.flash.bad { background: rgba(226,91,76,0.12); border-color: rgba(226,91,76,0.4); color: #ffd4ce; }
.app-shell { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.side {
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.side a {
  text-decoration: none;
  color: var(--muted);
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
}
.side a.active, .side a:hover { background: rgba(232,163,23,0.12); color: var(--ink); }
.main { padding: 28px 24px 64px; }
.dash-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-end; flex-wrap: wrap; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.stat strong { display: block; font-family: var(--display); font-size: 1.8rem; }
.route-card { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.alert-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.alert-card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; }
.alert-card a { display: block; padding: 16px 18px; text-decoration: none; min-height: 96px; }
.alert-card.claimed { opacity: 0.7; }
.alert-top { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.rpm { font-weight: 700; color: var(--amber-2); }
.pay { color: var(--amber); margin: 6px 0 0; }
.empty { text-align: left; }
.data { width: 100%; border-collapse: collapse; }
.data th, .data td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  vertical-align: top;
}
.data th { color: var(--muted); font-weight: 600; }
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  margin-right: 6px;
}
.dot.ok { background: var(--ok); }
.dot.bad { background: var(--bad); }
textarea { min-height: 180px; resize: vertical; }
code { color: var(--amber-2); }
@media (max-width: 860px) {
  .grid-3, .grid-2, .split, .app-shell, .stats { grid-template-columns: 1fr; }
  .split img { min-height: 240px; }
  .side { flex-direction: row; flex-wrap: wrap; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero { min-height: 88vh; }
}
