:root {
  color-scheme: dark;
  --bg: #0d1117;
  --panel: #151b23;
  --line: #283241;
  --text: #edf2f7;
  --muted: #8d99a8;
  --accent: #64d6a0;
  --accent-dark: #172f29;
  --danger: #ff8f8f;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 85% 0%, #172d35 0, var(--bg) 35%); color: var(--text); font: 15px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.topbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; max-width: 1180px; margin: 0 auto; padding: 32px 28px 22px; }.access { display: flex; gap: 7px; align-items: center; }.access input { width: 170px; margin: 0; padding: 8px 10px; font-size: 12px; }
.eyebrow { margin: 0 0 7px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
h1, h2, h3, h4, p { margin-top: 0; } h1 { margin-bottom: 0; font-size: 23px; letter-spacing: -.03em; } h2 { max-width: 650px; margin-bottom: 12px; font-size: clamp(28px, 5vw, 48px); line-height: 1.08; letter-spacing: -.05em; } h3 { margin: 0; font-size: 17px; } h4 { margin: 0 0 3px; font-size: 15px; }
.badge, .status { display: inline-flex; align-items: center; border: 1px solid #345044; border-radius: 999px; padding: 5px 10px; color: var(--accent); background: var(--accent-dark); font-size: 12px; font-weight: 700; }
.shell { max-width: 1180px; margin: 0 auto; padding: 0 28px 60px; }.hero { display: flex; justify-content: space-between; gap: 32px; align-items: end; padding: 64px 0 48px; }.muted, .project-card p, .empty { color: var(--muted); }.hero-stat { min-width: 125px; padding: 17px 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(21, 27, 35, .75); }.hero-stat strong { display: block; font-size: 34px; line-height: 1; }.hero-stat span { color: var(--muted); font-size: 12px; }
.access-panel { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 18px; border: 1px solid #345044; border-radius: 16px; padding: 18px 22px; background: linear-gradient(110deg, rgba(25, 55, 47, .82), rgba(21, 27, 35, .94)); }.access-panel h3 { margin-bottom: 4px; }.access-panel .muted { margin: 0; font-size: 12px; }.token-message { min-height: 18px; margin: 8px 0 0; color: var(--muted); font-size: 12px; }.token-message.success { color: var(--accent); }.token-message.error { color: var(--danger); }.access-form { display: flex; flex: 0 0 min(390px, 100%); gap: 8px; align-items: center; }.access-form input { margin: 0; }.access-form button { white-space: nowrap; }.grid { display: grid; grid-template-columns: minmax(280px, 360px) 1fr; gap: 18px; }.panel { border: 1px solid var(--line); border-radius: 16px; padding: 22px; background: rgba(21, 27, 35, .88); box-shadow: 0 20px 70px rgba(0,0,0,.12); }.panel-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
label { display: block; margin-bottom: 14px; color: var(--muted); font-size: 12px; font-weight: 700; } input, select { display: block; width: 100%; margin-top: 6px; border: 1px solid var(--line); border-radius: 9px; padding: 11px 12px; outline: none; background: #10151c; color: var(--text); font: inherit; } input:focus, select:focus { border-color: var(--accent); } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } button { cursor: pointer; border: 0; border-radius: 9px; padding: 11px 15px; background: var(--accent); color: #07130e; font: inherit; font-weight: 800; } button:hover { filter: brightness(1.08); } button:disabled { cursor: wait; opacity: .55; }.secondary { border: 1px solid var(--line); padding: 7px 10px; background: transparent; color: var(--muted); font-size: 12px; }.form-message { min-height: 20px; margin: 13px 0 0; color: var(--accent); font-size: 12px; }
.projects { display: grid; gap: 10px; }.empty { margin: 8px 0; padding: 30px 12px; border: 1px dashed var(--line); border-radius: 10px; text-align: center; }.project-card { display: flex; justify-content: space-between; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: #11171f; }.project-main { display: flex; align-items: center; gap: 11px; min-width: 0; }.project-main p { overflow: hidden; max-width: 330px; margin: 0; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }.service-icon { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid #3b6655; border-radius: 8px; color: var(--accent); background: var(--accent-dark); font-size: 12px; font-weight: 900; }.project-meta { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; white-space: nowrap; }.status { padding: 3px 7px; border-color: var(--line); color: var(--muted); background: transparent; font-size: 11px; }.status.queued { color: #ffd68a; border-color: #69582f; background: #302915; }.deploy { padding: 7px 10px; font-size: 12px; }.delete { padding: 7px 4px; background: transparent; color: var(--danger); font-size: 12px; }
@media (max-width: 800px) { .hero { align-items: start; flex-direction: column; padding-top: 35px; }.access-panel { align-items: stretch; flex-direction: column; gap: 14px; }.access-form { flex-basis: auto; }.grid { grid-template-columns: 1fr; }.project-card { align-items: start; flex-direction: column; }.project-meta { flex-wrap: wrap; }.topbar { align-items: start; flex-direction: column; }.topbar, .shell { padding-left: 18px; padding-right: 18px; } }
