:root {
  --bg: #0a0d12;
  --surface: #11161e;
  --surface-2: #171e28;
  --line: #273140;
  --text: #eef3f8;
  --muted: #8f9dad;
  --accent: #79e7b5;
  --accent-2: #43b8ff;
  --danger: #ff8c8c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 85% -10%, #123144 0, transparent 32rem), var(--bg); }
a { color: inherit; }
.topbar { height: 68px; padding: 0 clamp(20px, 4vw, 64px); display: flex; align-items: center; gap: 36px; border-bottom: 1px solid var(--line); background: rgba(10, 13, 18, .82); backdrop-filter: blur(18px); position: sticky; top: 0; z-index: 10; }
.brand { font-weight: 800; letter-spacing: -.04em; text-decoration: none; font-size: 19px; }.brand span { color: var(--muted); font-weight: 550; }
nav { display: flex; gap: 24px; margin-right: auto; } nav a { color: var(--muted); text-decoration: none; font-size: 14px; } nav a:hover { color: var(--text); }
button, select, textarea { font: inherit; }.quiet { border: 0; background: none; color: var(--muted); cursor: pointer; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0 90px; }
.hero { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 48px; }.hero.small { margin-bottom: 34px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; margin: 0 0 12px; }
h1 { font-size: clamp(38px, 6vw, 68px); max-width: 780px; letter-spacing: -.055em; line-height: .98; margin: 0; }h2,h3,p { margin-top: 0; }.small h1 { font-size: clamp(36px, 5vw, 56px); }
.lede { color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 680px; margin: 20px 0 0; }
.status { display: inline-flex; gap: 9px; align-items: center; border: 1px solid var(--line); border-radius: 99px; padding: 9px 13px; font-size: 12px; white-space: nowrap; }.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px var(--accent); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 58px; }.metric,.panel,.server-card,.table-wrap,.browser { background: linear-gradient(145deg, rgba(23,30,40,.92), rgba(17,22,30,.92)); border: 1px solid var(--line); border-radius: 16px; }
.metric { padding: 22px; display: grid; gap: 8px; }.metric span,.metric small { color: var(--muted); }.metric strong { font-size: 26px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 18px; }.section-heading h2 { margin: 0; font-size: 26px; letter-spacing: -.03em; }.section-heading.compact { margin-top: 54px; }
.server-card { padding: 24px; display: flex; align-items: center; gap: 20px; }.server-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #06120d; background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-weight: 900; }.server-main { flex: 1; }.server-main p { color: var(--muted); margin-bottom: 12px; }.server-main code { color: var(--accent-2); }.server-title { display: flex; gap: 10px; align-items: center; }.server-title h3 { margin: 0 0 7px; }
.pill { display: inline-block; color: var(--accent); background: rgba(121,231,181,.08); border: 1px solid rgba(121,231,181,.25); border-radius: 99px; padding: 5px 9px; font-size: 11px; }
.button { border: 0; border-radius: 10px; padding: 11px 16px; color: #05110d; background: var(--accent); font-weight: 800; text-decoration: none; cursor: pointer; }
.table-wrap { overflow: auto; }table { width: 100%; border-collapse: collapse; font-size: 13px; }th,td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }th { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }tr:last-child td { border-bottom: 0; }.empty { color: var(--muted); text-align: center; padding: 28px; }
.workspace { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 20px; }.browser { padding: 20px; align-self: start; max-height: calc(100vh - 110px); overflow: auto; position: sticky; top: 88px; }.browser ul { list-style: none; padding: 0; margin: 0; }.browser a { display: flex; justify-content: space-between; gap: 10px; padding: 9px 10px; border-radius: 8px; color: var(--muted); text-decoration: none; font-size: 13px; }.browser a:hover,.browser a.active { color: var(--text); background: var(--surface-2); }.browser small { color: #617083; font-size: 9px; }.offset { margin-top: 28px; }
.console { min-width: 0; display: grid; gap: 20px; }.panel { padding: 22px; }.panel h2 { margin-bottom: 18px; }.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }.panel-head h2 { margin: 0; }
.query { display: grid; gap: 10px; }.query label { color: var(--muted); font-size: 12px; margin-top: 8px; }.query select,.query textarea { color: var(--text); background: #090d12; border: 1px solid var(--line); border-radius: 10px; padding: 12px; }.query textarea { resize: vertical; font-family: "SFMono-Regular", Consolas, monospace; line-height: 1.55; }.query-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }.query-actions small { color: var(--muted); }
.alert { color: var(--danger); background: rgba(255,140,140,.08); border: 1px solid rgba(255,140,140,.25); padding: 13px 16px; border-radius: 10px; margin-bottom: 18px; }
.auth-page { display: grid; place-items: center; padding: 28px; }.auth-card { width: min(460px, 100%); padding: 38px; border: 1px solid var(--line); border-radius: 22px; background: rgba(17,22,30,.94); box-shadow: 0 30px 90px rgba(0,0,0,.38); }.auth-card h1 { font-size: 42px; }.auth-card .lede { font-size: 15px; margin-bottom: 26px; }.auth-card form { display: grid; gap: 16px; }.auth-card label { display: grid; gap: 7px; color: var(--muted); font-size: 12px; }.auth-card input { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px; color: var(--text); background: #090d12; }.auth-card .button { width: 100%; margin-top: 4px; }.auth-mark { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 14px; color: #06120d; background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-weight: 900; }.permission { display: grid; grid-template-columns: 1fr auto; gap: 6px; padding: 16px; margin: 0 0 22px; border: 1px solid var(--line); border-radius: 12px; background: #0c1118; }.permission span,.permission small { color: var(--muted); }.permission small { grid-column: 1 / -1; line-height: 1.5; }.permission code { color: var(--accent); }.consent-actions { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }.consent-actions .button { width: auto; }.consent-actions .quiet { padding: 11px 6px; }
@media (max-width: 760px) { .topbar nav { display: none; }.topbar { gap: 12px; }.topbar .quiet { font-size: 0; }.topbar .quiet::after { content: "Sign out"; font-size: 13px; }.hero,.server-card { align-items: flex-start; flex-direction: column; }.metric-grid { grid-template-columns: 1fr; }.workspace { grid-template-columns: 1fr; }.browser { width: 100%; }.shell { padding-top: 38px; } }
